diff --git a/dev_wms_client/src/api/task.js b/dev_wms_client/src/api/task.js index e519c09..40d6ddc 100644 --- a/dev_wms_client/src/api/task.js +++ b/dev_wms_client/src/api/task.js @@ -62,4 +62,15 @@ export const confirmInventory = (params) => { method: 'post', data: params }) +} +// 获取缺料数量 +export const getGoodsLackQty = (params) => { + return request({ + url: '/task/getGoodsLackQty', + method: 'get', + params: { + goodsId: params.goodsId, + workOrder: params.workOrder + } + }) } \ No newline at end of file diff --git a/dev_wms_client/src/api/taskOperation.js b/dev_wms_client/src/api/taskOperation.js index 68a3610..e93ac84 100644 --- a/dev_wms_client/src/api/taskOperation.js +++ b/dev_wms_client/src/api/taskOperation.js @@ -16,4 +16,13 @@ export const updateWmsTask = (params) => { method: 'post', data: params }) +} + +// 更新出库单任务 +export const updateOutsTask = (params) => { + return request({ + url: '/taskOperation/updateOutsTask', + method: 'post', + data: params + }) } \ No newline at end of file diff --git a/dev_wms_client/src/api/wmsLog.js b/dev_wms_client/src/api/wmsLog.js index 35c9239..3cade8b 100644 --- a/dev_wms_client/src/api/wmsLog.js +++ b/dev_wms_client/src/api/wmsLog.js @@ -1,13 +1,19 @@ import request from "@/http/request"; -const queryLogs = (params) => { +// 分页查询接收日志 +export const queryLogsByPage = (params) => { return request({ - url: '/log/queryWmsLog', + url: '/log/queryLogsByPage', method: 'post', data: params }) } -export { - queryLogs +// 分页查询发送日志 +export const queryApisByPage = (params) => { + return request({ + url: '/log/queryApisByPage', + method: 'post', + data: params + }) } \ No newline at end of file diff --git a/dev_wms_client/src/http/request.js b/dev_wms_client/src/http/request.js index 2f11de9..483b2c0 100644 --- a/dev_wms_client/src/http/request.js +++ b/dev_wms_client/src/http/request.js @@ -1,11 +1,10 @@ import axios from 'axios' const request = axios.create({ - baseURL: 'http://localhost:12315/wms', + baseURL: 'https://s4wwjasrsp01.ap.cat.com/wmsServer/wms', timeout: 5000 }) -// axios.defaults.baseURL = 'http://10.90.83.39:443/wmsServer/wms' // axios.defaults.baseURL = 'http://localhost:12315/wms' // axios.defaults.baseURL = 'https://s4wwjasrsp01.ap.cat.com/wmsServer/wms' diff --git a/dev_wms_client/src/layout/OutsMonitor.vue b/dev_wms_client/src/layout/OutsMonitor.vue index 1479b99..e710cb0 100644 --- a/dev_wms_client/src/layout/OutsMonitor.vue +++ b/dev_wms_client/src/layout/OutsMonitor.vue @@ -7,6 +7,11 @@ label-width="158px" style="max-width: 100%" status-icon>
+ + + - + @@ -95,6 +102,7 @@ import {labelPosition} from '@/constant/form.js' import {outTypeOptions} from '@/constant/options.js' import {addAllOptionOfOptions} from '@/utils/generator.js' import {loading} from '@/utils/loading' +import {updateOutsTask} from "@/api/taskOperation"; /** * 常量定义 @@ -118,10 +126,21 @@ let baseTableQuery = reactive({ let searchQueryFormEntity = reactive({ vehicleId: '', goodsId: '', - outType: -99 + outType: -99, + queryType: 1 }) let searchQueryFormRef = ref() let taskId = '' +const queryTypeOptions = [ + { + label: '未关闭', + value: 1 + }, + { + label: '已关闭', + value: 2 + } +] /** * 系统方法 */ @@ -149,7 +168,8 @@ const search = () => { // 设定查询参数 request.vehicleId = searchQueryFormEntity.vehicleId.trim() request.goodsId = searchQueryFormEntity.goodsId.trim() - request.out = searchQueryFormEntity.outType === -99 ? null : searchQueryFormEntity.outType + request.outType = searchQueryFormEntity.outType === -99 ? null : searchQueryFormEntity.outType + request.queryType = searchQueryFormEntity.queryType// 查询类型 queryOutsByPage(request).then((res) => { const response = res.data if (response.code === 0) { @@ -191,6 +211,54 @@ const timeFormat = (row, column, cellValue, index) => { const outsTypeFormat = (row, column, cellValue, index) => { return outTaskTypeFormatter(cellValue) } +// 取消出库单 +const cancelOuts = (row) => { + const request = { + taskId: row.taskId, + updateType: 1, + userName: USER_NAME, + standId: STAND_ID + } + loading.open('取消中...') + updateOutsTask(request).then(res => { + const response = res.data + if (response.code === 0) { + ElMessage.success(response.message) + } else { + ElMessage.error(response.message) + } + }).catch(err => { + console.log(err) + ElMessage.error('取消发生异常。') + }).finally(() => { + loading.close() + search() + }) +} +// 完成出库单 +const finishOuts = (row) => { + const request = { + taskId: row.taskId, + updateType: 2, + userName: USER_NAME, + standId: STAND_ID + } + loading.open('完成中...') + updateOutsTask(request).then(res => { + const response = res.data + if (response.code === 0) { + ElMessage.success(response.message) + } else { + ElMessage.error(response.message) + } + }).catch(err => { + console.log(err) + ElMessage.error('完成发生异常。') + }).finally(() => { + loading.close() + search() + }) +} \ No newline at end of file diff --git a/dev_wms_serve/src/main/java/com/wms_main/constant/enums/others/EmergencyOutReasonEnums.java b/dev_wms_serve/src/main/java/com/wms_main/constant/enums/others/EmergencyOutReasonEnums.java new file mode 100644 index 0000000..f31a03f --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/constant/enums/others/EmergencyOutReasonEnums.java @@ -0,0 +1,14 @@ +package com.wms_main.constant.enums.others; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@Getter +@AllArgsConstructor +public enum EmergencyOutReasonEnums { + FEEDING("补料"), + K_LACK("少K"), + GOODS_LACK("缺料"), + RETURN_ORDER("返工工单"); + private final String reason; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/constant/enums/wms/AppConfigKeyEnums.java b/dev_wms_serve/src/main/java/com/wms_main/constant/enums/wms/AppConfigKeyEnums.java index 2d3be9c..dc60065 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/constant/enums/wms/AppConfigKeyEnums.java +++ b/dev_wms_serve/src/main/java/com/wms_main/constant/enums/wms/AppConfigKeyEnums.java @@ -16,7 +16,10 @@ public enum AppConfigKeyEnums { STAND_CAPACITY("StandCapacity", "站台容量"), IMAGE_IP("ImageIp", "图片存放ip"), EMPTY_BACK("EmptyBack", "空载具是否回库"), - STOCK_WARNING_QTY("StockWarningQty", "库存预警数量"); + STOCK_WARNING_QTY("StockWarningQty", "库存预警数量"), + LOG_CLEAR_INTERVAL("LogClearInterval", "日志清理间隔"), + NORMAL_DATA_CLEAR_INTERVAL("NormalDataClearInterval", "正常数据清理间隔"), + IMPORTANT_DATA_CLEAR_INTERVAL("ImportantDataClearInterval", "重要数据清理间隔"); private final String key; private final String desc; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/controller/wms/LogController.java b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/LogController.java new file mode 100644 index 0000000..2fe5b0d --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/LogController.java @@ -0,0 +1,43 @@ +package com.wms_main.controller.wms; + +import com.wms_main.model.dto.query.SysApiQuery; +import com.wms_main.model.dto.query.SysLogQuery; +import com.wms_main.model.dto.response.wms.WmsApiResponse; +import com.wms_main.model.vo.wms.PageVo; +import com.wms_main.model.vo.wms.SysApiVo; +import com.wms_main.model.vo.wms.SysLogVo; +import com.wms_main.service.controller.ILogControllerService; +import lombok.RequiredArgsConstructor; +import org.springframework.web.bind.annotation.*; + +/** + * 日志控制类 + */ +@RestController +@ResponseBody +@CrossOrigin +@RequiredArgsConstructor +@RequestMapping("/wms/log") +public class LogController { + private final ILogControllerService logControllerService; + + /** + * 查询接口接收日志 + * @param logQuery 查询参数 + * @return 查询结果 + */ + @PostMapping("/queryLogsByPage") + public WmsApiResponse> queryLogsByPage(@RequestBody SysLogQuery logQuery) { + return logControllerService.queryLogsByPage(logQuery); + } + + /** + * 查询接口发送日志 + * @param apiQuery 查询参数 + * @return 查询结果 + */ + @PostMapping("/queryApisByPage") + public WmsApiResponse> queryApisByPage(@RequestBody SysApiQuery apiQuery) { + return logControllerService.queryApisByPage(apiQuery); + } +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskController.java b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskController.java index 49c2369..92105da 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskController.java +++ b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskController.java @@ -132,7 +132,7 @@ public class TaskController { * @return 请求结果 */ @PostMapping("/getInventoryConfirm") - WmsApiResponse getInventoryConfirm(@RequestBody InventoryConfirmRequest inventoryConfirmRequest) { + public WmsApiResponse getInventoryConfirm(@RequestBody InventoryConfirmRequest inventoryConfirmRequest) { return taskControllerService.getInventoryConfirm(inventoryConfirmRequest); } @@ -142,7 +142,18 @@ public class TaskController { * @return 处理结果 */ @PostMapping("/confirmInventory") - BaseWmsApiResponse confirmInventory(@RequestBody InventoryConfirmRequest inventoryConfirmRequest) { + public BaseWmsApiResponse confirmInventory(@RequestBody InventoryConfirmRequest inventoryConfirmRequest) { return taskControllerService.confirmInventory(inventoryConfirmRequest); } + + /** + * 获取缺料数量,当存在库存时,返回库存与需求的较小值 + * @param goodsId 料号 + * @param workOrder 工单号 + * @return 缺料数量 + */ + @GetMapping("/getGoodsLackQty") + public int getLackQty(@RequestParam("goodsId") String goodsId, @RequestParam("workOrder") String workOrder) { + return taskControllerService.getLackQty(goodsId, workOrder); + } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskOperationController.java b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskOperationController.java index c9e675d..24b4306 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskOperationController.java +++ b/dev_wms_serve/src/main/java/com/wms_main/controller/wms/TaskOperationController.java @@ -1,5 +1,6 @@ package com.wms_main.controller.wms; +import com.wms_main.model.dto.request.wms.OutsUpdateRequest; import com.wms_main.model.dto.request.wms.WmsTaskRequest; import com.wms_main.model.dto.response.wms.BaseWmsApiResponse; import com.wms_main.service.controller.ITaskOperationControllerService; @@ -37,4 +38,14 @@ public class TaskOperationController { public BaseWmsApiResponse updateWmsTask(@RequestBody WmsTaskRequest wmsTaskRequest) { return taskOperationControllerService.updateWmsTask(wmsTaskRequest); } + + /** + * 更新出库单信息 + * @param outsUpdateRequest 请求 + * @return 结果 + */ + @PostMapping("/updateOutsTask") + public BaseWmsApiResponse updateOutsTask(@RequestBody OutsUpdateRequest outsUpdateRequest) { + return taskOperationControllerService.updateOutsTask(outsUpdateRequest); + } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysApiService.java b/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysApiService.java new file mode 100644 index 0000000..feef71f --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysApiService.java @@ -0,0 +1,18 @@ +package com.wms_main.dao; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.wms_main.model.po.TSysApi; +import com.wms_main.repository.http.entity.HttpRequest; +import com.wms_main.repository.http.entity.HttpResponse; + +/** + * api表服务 + */ +public interface ITSysApiService extends IService { + /** + * 存储api接口请求日志 + * @param request 请求参数 + * @param response 响应参数 + */ + void insertApiLog(HttpRequest request, HttpResponse response); +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysLogService.java b/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysLogService.java new file mode 100644 index 0000000..a0993ae --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/dao/ITSysLogService.java @@ -0,0 +1,10 @@ +package com.wms_main.dao; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.wms_main.model.po.TSysLog; + +/** + * 日志服务接口 + */ +public interface ITSysLogService extends IService { +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysApiServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysApiServiceImpl.java new file mode 100644 index 0000000..16f2e63 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysApiServiceImpl.java @@ -0,0 +1,79 @@ +package com.wms_main.dao.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.wms_main.dao.ITSysApiService; +import com.wms_main.mapper.SysApiMapper; +import com.wms_main.model.po.TSysApi; +import com.wms_main.repository.http.entity.HttpRequest; +import com.wms_main.repository.http.entity.HttpResponse; +import com.wms_main.repository.utils.StringUtils; +import com.wms_main.repository.utils.UUIDUtils; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import java.time.LocalDateTime; + +/** + * api表服务实现 + */ +@Service +@Slf4j +@RequiredArgsConstructor +public class TSysApiServiceImpl extends ServiceImpl implements ITSysApiService { + /** + * + * @param request 请求参数 + * @param response 响应参数 + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void insertApiLog(HttpRequest request, HttpResponse response) { + TSysApi apiLog = new TSysApi(); + apiLog.setLogId(UUIDUtils.getNewUUID()); + apiLog.setLogTime(LocalDateTime.now()); + // 设置请求相关信息 + if (request != null) { + apiLog.setUrl(request.getUrl()); + apiLog.setTimeout(request.getTimeout()); + if (request.getMethod() != null) { + apiLog.setMethod(request.getMethod().name()); + } + apiLog.setContentType(request.getContentType()); + apiLog.setData(StringUtils.formatStringWithMaxLength(request.getData(), 2048)); + apiLog.setToken(StringUtils.formatStringWithMaxLength(request.getToken(), 2048)); + } + // 设置响应相关信息 + if (response != null) { + apiLog.setSuccess(response.isSuccess() ? "成功" : "失败"); + apiLog.setResponseCode(response.getResponseCode()); + apiLog.setRequestMessage(StringUtils.formatStringWithMaxLength(response.getRequestMessage(), 2048)); + apiLog.setResponseMessage(StringUtils.formatStringWithMaxLength(response.getResponseMessage(), 2048)); + apiLog.setRequestTime(response.getRequestTime()); + apiLog.setResponseTime(response.getResponseTime()); + apiLog.setRequestUrl(response.getRequestUrl()); + apiLog.setUseTime(response.getUseTime()); + if (response.getException() != null) { + apiLog.setExceptionMessage(StringUtils.formatStringWithMaxLength(response.getException().getMessage(), 2048)); + } + } + // 保存api日志 + save(apiLog); + // 记录文本日志 + log.info(logText(apiLog)); + } + + /** + * 生成日志文本 + * @param apiLog 日志对象 + * @return 字符串 + */ + private String logText(TSysApi apiLog) { + return "\n请求方式:" + apiLog.getMethod() + + "\n请求地址:" + apiLog.getUrl() + + "\n请求数据:" + apiLog.getData() + + "\n响应状态:" + apiLog.getSuccess() + + "\n响应数据:" + apiLog.getRequestMessage(); + } +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysLogServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysLogServiceImpl.java new file mode 100644 index 0000000..1c92199 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/dao/impl/TSysLogServiceImpl.java @@ -0,0 +1,14 @@ +package com.wms_main.dao.impl; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.wms_main.dao.ITSysLogService; +import com.wms_main.mapper.SysLogMapper; +import com.wms_main.model.po.TSysLog; +import org.springframework.stereotype.Service; + +/** + * 日志服务实现类 + */ +@Service +public class TSysLogServiceImpl extends ServiceImpl implements ITSysLogService { +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiReceiveLogExcelTemplate.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiReceiveLogExcelTemplate.java new file mode 100644 index 0000000..4094474 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiReceiveLogExcelTemplate.java @@ -0,0 +1,62 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 接收日志模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ApiReceiveLogExcelTemplate { + /** + * 日志Id + */ + @Excel(name = "log_id") + private String logId; + /** + * 请求方式 + */ + @Excel(name = "method") + private String method; + /** + * 请求地址 + */ + @Excel(name = "uri") + private String uri; + /** + * 客户端主机 + */ + @Excel(name = "remote_host") + private String remoteHost; + /** + * 客户端地址 + */ + @Excel(name = "remote_addr") + private String remoteAddr; + /** + * 请求数据 + */ + @Excel(name = "request_content") + private String requestContent; + /** + * 响应状态 + */ + @Excel(name = "status") + private String status; + /** + * 响应数据 + */ + @Excel(name = "response_content") + private String responseContent; + /** + * 日志记录时间 + */ + @Excel(name = "log_time") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiSendLogExcelTemplate.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiSendLogExcelTemplate.java new file mode 100644 index 0000000..dc635e8 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/ApiSendLogExcelTemplate.java @@ -0,0 +1,102 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 发送日志模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class ApiSendLogExcelTemplate { + /** + * id + */ + @Excel(name = "log_id") + private String logId; + /** + * url + */ + @Excel(name = "url") + private String url; + /** + * 超时时长 + */ + @Excel(name = "timeout") + private Integer timeout; + /** + * 请求方式 + */ + @Excel(name = "method") + private String method; + /** + * 请求头 + */ + @Excel(name = "content_type") + private String contentType; + /** + * 数据 + */ + @Excel(name = "data") + private String data; + /** + * token + */ + @Excel(name = "token") + private String token; + /** + * 请求是否成功 + */ + @Excel(name = "success") + private String success; + /** + * 响应码 + */ + @Excel(name = "response_code") + private int responseCode; + /** + * 请求信息 + */ + @Excel(name = "request_message") + private String requestMessage; + /** + * 响应信息 + */ + @Excel(name = "response_message") + private String responseMessage; + /** + * 请求时间 + */ + @Excel(name = "request_time") + private LocalDateTime requestTime; + /** + * 响应时间 + */ + @Excel(name = "response_time") + private LocalDateTime responseTime; + /** + * 请求地址 + */ + @Excel(name = "request_url") + private String requestUrl; + /** + * 请求耗时 + */ + @Excel(name = "use_time") + private long useTime; + /** + * 异常 + */ + @Excel(name = "exception_message") + private String exceptionMessage; + /** + * 记录时间 + */ + @Excel(name = "log_time") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/DbsRecordExcelTemplateForSave.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/DbsRecordExcelTemplateForSave.java new file mode 100644 index 0000000..0c9e572 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/DbsRecordExcelTemplateForSave.java @@ -0,0 +1,113 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDate; +import java.time.LocalDateTime; + +/** + * DBS完成记录模板 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class DbsRecordExcelTemplateForSave { + /** + * 主键id + */ + @Excel(name = "dbs_id") + private String dbsId; + /** + * 工单 + */ + @Excel(name = "work_order") + private String workOrder; + /** + * dbs原始未处理的零件号,成品号 + */ + @Excel(name = "product_id_origin") + private String productIdOrigin; + /** + * 零件号,成品号 + */ + @Excel(name = "product_id") + private String productId; + /** + * Test计划开始时间 + */ + @Excel(name = "test_plan_start_date") + private LocalDate testPlanStartDate; + /** + * Test计划完成时间 + */ + @Excel(name = "test_plan_finish_date") + private LocalDate testPlanFinishDate; + /** + * PNT计划开始时间 + */ + @Excel(name = "pnt_plan_start_date") + private LocalDate pntPlanStartDate; + /** + * PNT计划完成时间 + */ + @Excel(name = "pnt_plan_finish_date") + private LocalDate pntPlanFinishDate; + /** + * 计划产量/套 + */ + @Excel(name = "plan_production") + private Integer planProduction; + /** + * 设备名称 + */ + @Excel(name = "equipment_name") + private String equipmentName; + /** + * 班次 + */ + @Excel(name = "work_shift") + private String workShift; + /** + * Family + */ + @Excel(name = "family") + private String family; + /** + * Test No# + */ + @Excel(name = "test_no") + private String testNo; + /** + * 状态 + */ + @Excel(name = "dbs_status") + private Integer dbsStatus; + /** + * 工作站台 + */ + @Excel(name = "work_stand") + private String workStand; + /** + * 实际工作日期 + */ + @Excel(name = "real_work_date") + private LocalDate realWorkDate; + /** + * 完成时间 + */ + @Excel(name = "finish_time") + private LocalDateTime finishTime; + /** + * K料备注 + */ + @Excel(name = "kitting_remark") + private String kittingRemark; + /** + * 备注 + */ + @Excel(name = "remark") + private String remark; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/InventoryRecordExcelTemplateForSave.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/InventoryRecordExcelTemplateForSave.java new file mode 100644 index 0000000..9d44d40 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/InventoryRecordExcelTemplateForSave.java @@ -0,0 +1,90 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 盘点记录缓存模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class InventoryRecordExcelTemplateForSave { + /** + * 盘点id + */ + @Excel(name = "inventory_id") + private String inventoryId; + /** + * 料号 + */ + @Excel(name = "goods_id") + private String goodsId; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 库存数量 + * 只记录盘点确认时间点 + */ + @Excel(name = "stock_num") + private Integer stockNum; + /** + * 确认数量 + */ + @Excel(name = "confirm_num") + private Integer confirmNum; + /** + * 盘点站台 + */ + @Excel(name = "inv_stand") + private String invStand; + /** + * 盘点人 + */ + @Excel(name = "inv_user") + private String invUser; + /** + * 盘点类型:1:明盘;2:盲盘 + */ + @Excel(name = "inv_type") + private Integer invType; + /** + * 盘点状态 + * 1. 初始化 + * 2. 已解析 + * 3. 数量确认 + * 4. 盘点关闭 + */ + @Excel(name = "inv_status") + private Integer invStatus; + /** + * 盘点结果 + * -1: 盘亏 + * 0: 正常 + * 1: 盘盈 + */ + @Excel(name = "inv_result") + private Integer invResult; + /** + * 盘点任务创建时间 + */ + @Excel(name = "inv_create_time") + private LocalDateTime invCreateTime; + /** + * 盘点确认时间 + */ + @Excel(name = "inv_confirm_time") + private LocalDateTime invConfirmTime; + /** + * 这个字段用于合并哪些任务是同一时间下发的 + */ + @Excel(name = "inv_order_id") + private String invOrderId; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/OutsRecordExcelTemplateForSave.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/OutsRecordExcelTemplateForSave.java new file mode 100644 index 0000000..ac69809 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/OutsRecordExcelTemplateForSave.java @@ -0,0 +1,73 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 出库单缓存模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class OutsRecordExcelTemplateForSave { + /** + * 任务号 + */ + @Excel(name = "task_id") + private String taskId; + /** + * 料号 + */ + @Excel(name = "goods_id") + private String goodsId; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 需求数量 + */ + @Excel(name = "need_num") + private Integer needNum; + /** + * 已分发数量 + */ + @Excel(name = "distribute_num") + private Integer distributeNum; + /** + * 已拣选数量 + */ + @Excel(name = "pick_num") + private Integer pickNum; + /** + * 出库类型 + */ + @Excel(name = "out_type") + private Integer outType; + /** + * 目的地 + */ + @Excel(name = "destination") + private String destination; + /** + * 用户名 + */ + @Excel(name = "user_name") + private String userName; + /** + * 出库理由 + * 紧急出库必填 + */ + @Excel(name = "reason") + private String reason; + /** + * 请求时间 + */ + @Excel(name = "request_time") + private LocalDateTime requestTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/PickTaskBakExcelTemplate.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/PickTaskBakExcelTemplate.java new file mode 100644 index 0000000..e1640d9 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/PickTaskBakExcelTemplate.java @@ -0,0 +1,57 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 拣选任务记录模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class PickTaskBakExcelTemplate { + /** + * 任务id + */ + @Excel(name = "pick_id") + private String pickId; + /** + * 拣选站台 + */ + @Excel(name = "pick_stand") + private String pickStand; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 任务状态 + */ + @Excel(name = "pick_status") + private Integer pickStatus; + /** + * 创建时间 + */ + @Excel(name = "create_time") + private LocalDateTime createTime; + /** + * 发送时间 + */ + @Excel(name = "send_time") + private LocalDateTime sendTime; + /** + * 到达时间 + */ + @Excel(name = "arrive_time") + private LocalDateTime arriveTime; + /** + * 离开时间 + */ + @Excel(name = "leave_time") + private LocalDateTime leaveTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/StockUpdateRecordExcelTemplateForSave.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/StockUpdateRecordExcelTemplateForSave.java new file mode 100644 index 0000000..52063ad --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/StockUpdateRecordExcelTemplateForSave.java @@ -0,0 +1,62 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 库存流水缓存模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class StockUpdateRecordExcelTemplateForSave { + /** + * 库存更新记录id + */ + @Excel(name = "update_id") + private String updateId; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 料号 + */ + @Excel(name = "goods_id") + private String goodsId; + /** + * 首次入库时间 + */ + @Excel(name = "first_in_time") + private LocalDateTime firstInTime; + /** + * 原数量 + */ + @Excel(name = "before_num") + private Integer beforeNum; + /** + * 新数量 + */ + @Excel(name = "after_num") + private Integer afterNum; + /** + * 更新理由 + */ + @Excel(name = "reason") + private String reason; + /** + * 更新时间 + */ + @Excel(name = "update_time") + private LocalDateTime updateTime; + /** + * 更新用户 + */ + @Excel(name = "update_user") + private String updateUser; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WcsTaskBakExcelTemplate.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WcsTaskBakExcelTemplate.java new file mode 100644 index 0000000..5ece774 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WcsTaskBakExcelTemplate.java @@ -0,0 +1,72 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * Wcs任务记录模板 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class WcsTaskBakExcelTemplate { + /** + * wcs任务id + */ + @Excel(name = "wcs_task_id") + private String wcsTaskId; + /** + * wcs任务状态 + */ + @Excel(name = "wcs_task_status") + private Integer wcsTaskStatus; + /** + * wcs任务类型 + */ + @Excel(name = "wcs_task_type") + private Integer wcsTaskType; + /** + * wcs任务优先级 + */ + @Excel(name = "task_priority") + private Integer taskPriority; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 起点 + */ + @Excel(name = "origin") + private String origin; + /** + * 终点 + */ + @Excel(name = "destination") + private String destination; + /** + * 创建时间 + */ + @Excel(name = "create_time") + private LocalDateTime createTime; + /** + * 发送时间 + */ + @Excel(name = "send_time") + private LocalDateTime sendTime; + /** + * 完成时间 + */ + @Excel(name = "finish_time") + private LocalDateTime finishTime; + /** + * 备注 + */ + @Excel(name = "remark") + private String remark; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WmsTaskBakExcelTemplate.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WmsTaskBakExcelTemplate.java new file mode 100644 index 0000000..11b1636 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WmsTaskBakExcelTemplate.java @@ -0,0 +1,102 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * Wms任务记录模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class WmsTaskBakExcelTemplate { + /** + * 任务ID + */ + @Excel(name = "task_id") + private String taskId; + /** + * 任务类型 + */ + @Excel(name = "task_type") + private Integer taskType; + /** + * 任务状态 + */ + @Excel(name = "task_status") + private Integer taskStatus; + /** + * 任务优先级 + */ + @Excel(name = "task_priority") + private Integer taskPriority; + /** + * 载具号 + */ + @Excel(name = "vehicle_id") + private String vehicleId; + /** + * 起点 + */ + @Excel(name = "origin") + private String origin; + /** + * 终点 + */ + @Excel(name = "destination") + private String destination; + /** + * wcs任务id + */ + @Excel(name = "wcs_task_id") + private String wcsTaskId; + /** + * 创建时间 + */ + @Excel(name = "create_time") + private LocalDateTime createTime; + /** + * 完成时间 + */ + @Excel(name = "finish_time") + private LocalDateTime finishTime; + /** + * 料号 + */ + @Excel(name = "goods_id") + private String goodsId; + /** + * 操作数量 + */ + @Excel(name = "op_num") + private Integer opNum; + /** + * 库存数量 + */ + @Excel(name = "stock_num") + private Integer stockNum; + /** + * 操纵用户 + */ + @Excel(name = "op_user") + private String opUser; + /** + * 备注 + */ + @Excel(name = "remark") + private String remark; + /** + * 申请出库的站台 + */ + @Excel(name = "call_stand") + private String callStand; + /** + * 物料描述 + */ + @Excel(name = "goods_desc") + private String goodsDesc; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WorkRecordExcelTemplateForSave.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WorkRecordExcelTemplateForSave.java new file mode 100644 index 0000000..86b41fc --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/excelTemplate/WorkRecordExcelTemplateForSave.java @@ -0,0 +1,111 @@ +package com.wms_main.excel.easypoi.excelTemplate; + +import cn.afterturn.easypoi.excel.annotation.Excel; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDate; +import java.time.LocalDateTime; + +/** + * 工作记录缓存模版 + */ +@Data +@NoArgsConstructor +@AllArgsConstructor +public class WorkRecordExcelTemplateForSave { + /** + * 主键 + */ + @Excel(name = "work_index") + private String workIndex; + /** + * plant + */ + @Excel(name = "work_order") + private String workOrder; + /** + * 计划开工日期 + */ + @Excel(name = "plan_start_date") + private LocalDate planStartDate; + /** + * 成品号 + */ + @Excel(name = "product_id") + private String productId; + /** + * 单片号 + */ + @Excel(name = "single_product_id") + private String singleProductId; + /** + * 料盒号 + */ + @Excel(name = "box_no") + private String boxNo; + /** + * 原材料号 + */ + @Excel(name = "goods_id") + private String goodsId; + /** + * 需求数量 + */ + @Excel(name = "need_num") + private Integer needNum; + /** + * 已完成数量 + */ + @Excel(name = "finish_num") + private Integer finishNum; + /** + * 工作站台 + */ + @Excel(name = "work_stand") + private String workStand; + /** + * 工作状态 + */ + @Excel(name = "work_status") + private Integer workStatus; + /** + * 工作用户 + */ + @Excel(name = "work_user") + private String workUser; + /** + * 创建时间 + */ + @Excel(name = "create_time") + private LocalDateTime createTime; + /** + * 完成时间 + */ + @Excel(name = "finish_time") + private LocalDateTime finishTime; + /** + * 缺料状态 + */ + @Excel(name = "lack_status") + private Integer lackStatus; + /** + * 是否是库外料 + */ + @Excel(name = "is_out") + private Integer isOut; + /** + * 产品类型 + * 1:非服务件 + * 2:服务件 + */ + @Excel(name = "product_type") + private Integer productType; + /** + * 备注 + * 用于ECN相关 + */ + @Excel(name = "kitting_remark") + private String kittingRemark; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/ISaveExcelEasyPoi.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/ISaveExcelEasyPoi.java new file mode 100644 index 0000000..48e6c6b --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/ISaveExcelEasyPoi.java @@ -0,0 +1,80 @@ +package com.wms_main.excel.easypoi.service; + +import com.wms_main.model.po.*; + +import java.util.List; + +/** + * 保存数据服务接口 + */ +public interface ISaveExcelEasyPoi { + /** + * 保存接口接收日志 + * @param fileSuffix 文件后缀 + * @param logList 数据列表 + */ + void saveApiReceiveLogs(String fileSuffix, List logList); + + /** + * 保存接口发送日志 + * @param fileSuffix 文件后缀 + * @param apiLogList 数据列表 + */ + void saveApiSendLogs(String fileSuffix, List apiLogList); + + /** + * 保存Wms任务记录 + * @param fileSuffix 文件后缀 + * @param wmsTaskBakList 数据列表 + */ + void saveWmsTaskBak(String fileSuffix, List wmsTaskBakList); + + /** + * 保存Wcs任务记录 + * @param fileSuffix 文件后缀 + * @param wcsTaskBakList 数据列表 + */ + void saveWcsTaskBak(String fileSuffix, List wcsTaskBakList); + + /** + * 保存拣选任务记录 + * @param fileSuffix 文件后缀 + * @param pickTaskBakList 数据列表 + */ + void savePickTaskBak(String fileSuffix, List pickTaskBakList); + + /** + * 保存Dbs记录 + * @param fileSuffix 文件后缀 + * @param dbsRecordList 数据列表 + */ + void saveDbsRecord(String fileSuffix, List dbsRecordList); + + /** + * 保存出库单记录 + * @param fileSuffix 文件后缀 + * @param outsRecordList 数据列表 + */ + void saveOutsRecord(String fileSuffix, List outsRecordList); + + /** + * 保存库存流水记录 + * @param fileSuffix 文件后缀 + * @param stockUpdateList 数据列表 + */ + void saveStockUpdateRecord(String fileSuffix, List stockUpdateList); + + /** + * 保存盘点记录 + * @param fileSuffix 文件后缀 + * @param inventoryList 数据列表 + */ + void saveInventoryRecord(String fileSuffix, List inventoryList); + + /** + * 保存工作记录 + * @param fileSuffix 文件后缀 + * @param workRecordList 数据列表 + */ + void saveWorkRecord(String fileSuffix, List workRecordList); +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/serviceImpl/SaveExcelEasyPoi.java b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/serviceImpl/SaveExcelEasyPoi.java new file mode 100644 index 0000000..81f1edc --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/excel/easypoi/service/serviceImpl/SaveExcelEasyPoi.java @@ -0,0 +1,441 @@ +package com.wms_main.excel.easypoi.service.serviceImpl; + +import cn.afterturn.easypoi.excel.ExcelExportUtil; +import cn.afterturn.easypoi.excel.entity.ExportParams; +import cn.afterturn.easypoi.excel.entity.enmus.ExcelType; +import com.wms_main.excel.easypoi.excelTemplate.*; +import com.wms_main.excel.easypoi.service.ISaveExcelEasyPoi; +import com.wms_main.model.po.*; +import com.wms_main.repository.utils.StringUtils; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.apache.poi.ss.usermodel.Workbook; +import org.springframework.stereotype.Service; + +import java.io.File; +import java.io.FileOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +/** + * 保存数据服务实现 + */ +@Slf4j +@Service +@RequiredArgsConstructor +public class SaveExcelEasyPoi implements ISaveExcelEasyPoi { + private final String ROOT_PATH = "./file"; + + /** + * 写入excel + * + * @param fileDesc 文件描述,不需要文件类型的后缀 + * @param filePath 文件路径,最后一位不需要添加文件分割符 + * @param sheetName 页名 + * @param list 数据列表 + * @param clazz 泛型类 + * @param 泛型 + * @throws IOException 异常 + */ + public void doWriteExcel(String fileDesc, String filePath, String sheetName, List list, Class clazz) throws IOException { + ExportParams exportParams = new ExportParams(); + exportParams.setSheetName(sheetName); + exportParams.setType(ExcelType.XSSF); + Workbook workbook = ExcelExportUtil.exportExcel(exportParams, clazz, list); + File file = new File(filePath + File.separator + fileDesc + ".xlsx"); + createFile(file);// 新建文件 + FileOutputStream fos = new FileOutputStream(file); + workbook.write(fos); + fos.close(); + workbook.close(); + log.info("保存文件成功:{}。", fileDesc); + } + + /** + * 创建文件 + * + * @param file 目标文件 + */ + public void createFile(File file) { + if (!file.exists()) { + // 文件不存在 + if (!file.getParentFile().exists()) { + // 目录不存在,创建上级目录 + boolean createDirectSuccessFlag = file.getParentFile().mkdirs(); + if (!createDirectSuccessFlag) { + log.error("创建目录失败。"); + return; + } + } + try { + // 在上级目录里创建文件 + boolean createFileSuccessFlag = file.createNewFile(); + if (!createFileSuccessFlag) { + log.error("创建文件失败。"); + } + } catch (IOException e) { + log.error("创建文件异常。{}", StringUtils.objectToString(e)); + } + } + } + + /** + * 保存api接收日志 + * + * @param fileSuffix 文件后缀 + * @param logList 数据列表 + */ + @Override + public void saveApiReceiveLogs(String fileSuffix, List logList) { + if (logList == null || logList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List logExcelTemplateList = new ArrayList<>(logList.stream().map(log -> new ApiReceiveLogExcelTemplate( + log.getLogId(), + log.getMethod(), + log.getUri(), + log.getRemoteHost(), + log.getRemoteAddr(), + log.getRequestContent(), + log.getStatus(), + log.getResponseContent(), + log.getLogTime() + )).toList()); + try { + // 写入excel + doWriteExcel("t_sys_log_" + fileSuffix, ROOT_PATH + "/t_sys_log", "t_sys_log", logExcelTemplateList, ApiReceiveLogExcelTemplate.class); + } catch (IOException e) { + log.error("缓存过期接口接收日志异常。"); + } + } + + /** + * 保存api发送日志 + * + * @param fileSuffix 文件后缀 + * @param apiLogList 数据列表 + */ + @Override + public void saveApiSendLogs(String fileSuffix, List apiLogList) { + if (apiLogList == null || apiLogList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List logExcelTemplateList = new ArrayList<>(apiLogList.stream().map(log -> new ApiSendLogExcelTemplate( + log.getLogId(), + log.getUrl(), + log.getTimeout(), + log.getMethod(), + log.getContentType(), + log.getData(), + log.getToken(), + log.getSuccess(), + log.getResponseCode(), + log.getRequestMessage(), + log.getResponseMessage(), + log.getRequestTime(), + log.getResponseTime(), + log.getRequestUrl(), + log.getUseTime(), + log.getExceptionMessage(), + log.getLogTime() + )).toList()); + try { + // 写入excel + doWriteExcel("t_sys_api_" + fileSuffix, ROOT_PATH + "/t_sys_api", "t_sys_api", logExcelTemplateList, ApiSendLogExcelTemplate.class); + } catch (IOException e) { + log.error("缓存过期接口发送日志异常。"); + } + } + + /** + * 保存Wms任务记录 + * + * @param fileSuffix 文件后缀 + * @param wmsTaskBakList 数据列表 + */ + @Override + public void saveWmsTaskBak(String fileSuffix, List wmsTaskBakList) { + if (wmsTaskBakList == null || wmsTaskBakList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List wmsTaskBakExcelTemplateList = new ArrayList<>(wmsTaskBakList.stream().map(wmsTaskBak -> new WmsTaskBakExcelTemplate( + wmsTaskBak.getTaskId(), + wmsTaskBak.getTaskType(), + wmsTaskBak.getTaskStatus(), + wmsTaskBak.getTaskPriority(), + wmsTaskBak.getVehicleId(), + wmsTaskBak.getOrigin(), + wmsTaskBak.getDestination(), + wmsTaskBak.getWcsTaskId(), + wmsTaskBak.getCreateTime(), + wmsTaskBak.getFinishTime(), + wmsTaskBak.getGoodsId(), + wmsTaskBak.getOpNum(), + wmsTaskBak.getStockNum(), + wmsTaskBak.getOpUser(), + wmsTaskBak.getRemark(), + wmsTaskBak.getCallStand(), + wmsTaskBak.getGoodsDesc() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_task_bak_" + fileSuffix, ROOT_PATH + "/t_app_task_bak", "t_app_task_bak", wmsTaskBakExcelTemplateList, WmsTaskBakExcelTemplate.class); + } catch (IOException e) { + log.error("缓存过期Wms任务记录异常。"); + } + } + + /** + * 保存wcs任务记录 + * + * @param fileSuffix 文件后缀 + * @param wcsTaskBakList 数据记录 + */ + @Override + public void saveWcsTaskBak(String fileSuffix, List wcsTaskBakList) { + if (wcsTaskBakList == null || wcsTaskBakList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List wcsTaskBakExcelTemplateList = new ArrayList<>(wcsTaskBakList.stream().map(wcsTaskBak -> new WcsTaskBakExcelTemplate( + wcsTaskBak.getWcsTaskId(), + wcsTaskBak.getWcsTaskStatus(), + wcsTaskBak.getWcsTaskType(), + wcsTaskBak.getTaskPriority(), + wcsTaskBak.getVehicleId(), + wcsTaskBak.getOrigin(), + wcsTaskBak.getDestination(), + wcsTaskBak.getCreateTime(), + wcsTaskBak.getSendTime(), + wcsTaskBak.getFinishTime(), + wcsTaskBak.getRemark() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_wcs_task_bak_" + fileSuffix, ROOT_PATH + "/t_app_wcs_task_bak", "t_app_wcs_task_bak", wcsTaskBakExcelTemplateList, WcsTaskBakExcelTemplate.class); + } catch (IOException e) { + log.error("缓存过期Wcs任务记录异常。"); + } + } + + /** + * 保存拣选任务记录 + * + * @param fileSuffix 文件后缀 + * @param pickTaskBakList 数据记录 + */ + @Override + public void savePickTaskBak(String fileSuffix, List pickTaskBakList) { + if (pickTaskBakList == null || pickTaskBakList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List pickTaskExcelTemplateList = new ArrayList<>(pickTaskBakList.stream().map(log -> new PickTaskBakExcelTemplate( + log.getPickId(), + log.getPickStand(), + log.getVehicleId(), + log.getPickStatus(), + log.getCreateTime(), + log.getSendTime(), + log.getArriveTime(), + log.getLeaveTime() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_pick_task_bak_" + fileSuffix, ROOT_PATH + "/t_app_pick_task_bak", "t_app_pick_task_bak", pickTaskExcelTemplateList, PickTaskBakExcelTemplate.class); + } catch (IOException e) { + log.error("缓存过期拣选任务记录异常。"); + } + } + + /** + * 保存DBS记录 + * + * @param fileSuffix 文件后缀 + * @param dbsRecordList 数据列表 + */ + @Override + public void saveDbsRecord(String fileSuffix, List dbsRecordList) { + if (dbsRecordList == null || dbsRecordList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List dbsRecordExcelTemplateList = new ArrayList<>(dbsRecordList.stream().map(dbsRecord -> new DbsRecordExcelTemplateForSave( + dbsRecord.getDbsId(), + dbsRecord.getWorkOrder(), + dbsRecord.getProductIdOrigin(), + dbsRecord.getProductId(), + dbsRecord.getTestPlanStartDate(), + dbsRecord.getTestPlanFinishDate(), + dbsRecord.getPntPlanStartDate(), + dbsRecord.getPntPlanFinishDate(), + dbsRecord.getPlanProduction(), + dbsRecord.getEquipmentName(), + dbsRecord.getWorkShift(), + dbsRecord.getFamily(), + dbsRecord.getTestNo(), + dbsRecord.getDbsStatus(), + dbsRecord.getWorkStand(), + dbsRecord.getRealWorkDate(), + dbsRecord.getFinishTime(), + dbsRecord.getKittingRemark(), + dbsRecord.getRemark() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_dbs_" + fileSuffix, ROOT_PATH + "/t_app_dbs", "t_app_dbs", dbsRecordExcelTemplateList, DbsRecordExcelTemplateForSave.class); + } catch (IOException e) { + log.error("缓存Dbs记录异常。"); + } + } + + /** + * 保存出库单记录 + * @param fileSuffix 文件后缀 + * @param outsRecordList 数据列表 + */ + @Override + public void saveOutsRecord(String fileSuffix, List outsRecordList) { + if (outsRecordList == null || outsRecordList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List outsRecordExcelTemplateList = new ArrayList<>(outsRecordList.stream().map(outsRecord -> new OutsRecordExcelTemplateForSave( + outsRecord.getTaskId(), + outsRecord.getGoodsId(), + outsRecord.getVehicleId(), + outsRecord.getNeedNum(), + outsRecord.getDistributeNum(), + outsRecord.getPickNum(), + outsRecord.getOutType(), + outsRecord.getDestination(), + outsRecord.getUserName(), + outsRecord.getReason(), + outsRecord.getRequestTime() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_outs_record_" + fileSuffix, ROOT_PATH + "/t_app_outs_record", "t_app_outs_record", outsRecordExcelTemplateList, OutsRecordExcelTemplateForSave.class); + } catch (IOException e) { + log.error("缓存出库单记录异常。"); + } + } + + /** + * 缓存库存流水记录 + * @param fileSuffix 文件后缀 + * @param stockUpdateList 数据列表 + */ + @Override + public void saveStockUpdateRecord(String fileSuffix, List stockUpdateList) { + if (stockUpdateList == null || stockUpdateList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List stockUpdateExcelTemplateList = new ArrayList<>(stockUpdateList.stream().map(stockUpdate -> new StockUpdateRecordExcelTemplateForSave( + stockUpdate.getUpdateId(), + stockUpdate.getVehicleId(), + stockUpdate.getGoodsId(), + stockUpdate.getFirstInTime(), + stockUpdate.getBeforeNum(), + stockUpdate.getAfterNum(), + stockUpdate.getReason(), + stockUpdate.getUpdateTime(), + stockUpdate.getUpdateUser() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_stock_update_" + fileSuffix, ROOT_PATH + "/t_app_stock_update", "t_app_stock_update", stockUpdateExcelTemplateList, StockUpdateRecordExcelTemplateForSave.class); + } catch (IOException e) { + log.error("缓存库存流水记录异常。"); + } + } + + /** + * 保存盘点记录 + * @param fileSuffix 文件后缀 + * @param inventoryList 数据列表 + */ + @Override + public void saveInventoryRecord(String fileSuffix, List inventoryList) { + if (inventoryList == null || inventoryList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List inventoryRecordExcelTemplateList = new ArrayList<>(inventoryList.stream().map(inventoryRecord -> new InventoryRecordExcelTemplateForSave( + inventoryRecord.getInventoryId(), + inventoryRecord.getGoodsId(), + inventoryRecord.getVehicleId(), + inventoryRecord.getStockNum(), + inventoryRecord.getConfirmNum(), + inventoryRecord.getInvStand(), + inventoryRecord.getInvUser(), + inventoryRecord.getInvType(), + inventoryRecord.getInvStatus(), + inventoryRecord.getInvResult(), + inventoryRecord.getInvCreateTime(), + inventoryRecord.getInvConfirmTime(), + inventoryRecord.getInvOrderId() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_inventory_" + fileSuffix, ROOT_PATH + "/t_app_inventory", "t_app_inventory", inventoryRecordExcelTemplateList, InventoryRecordExcelTemplateForSave.class); + } catch (IOException e) { + log.error("缓存盘点记录异常。"); + } + } + + /** + * 保存工作记录 + * + * @param fileSuffix 文件后缀 + * @param workRecordList 数据列表 + */ + @Override + public void saveWorkRecord(String fileSuffix, List workRecordList) { + if (workRecordList == null || workRecordList.isEmpty()) { + // 空数据体,不做处理 + return; + } + // 将数据转化为excel Template + List workRecordExcelTemplateList = new ArrayList<>(workRecordList.stream().map(workRecord -> new WorkRecordExcelTemplateForSave( + workRecord.getWorkIndex(), + workRecord.getWorkOrder(), + workRecord.getPlanStartDate(), + workRecord.getProductId(), + workRecord.getSingleProductId(), + workRecord.getBoxNo(), + workRecord.getGoodsId(), + workRecord.getNeedNum(), + workRecord.getFinishNum(), + workRecord.getWorkStand(), + workRecord.getWorkStatus(), + workRecord.getWorkUser(), + workRecord.getCreateTime(), + workRecord.getFinishTime(), + workRecord.getLackStatus(), + workRecord.getIsOut(), + workRecord.getProductType(), + workRecord.getKittingRemark() + )).toList()); + try { + // 写入excel + doWriteExcel("t_app_work_record_" + fileSuffix, ROOT_PATH + "/t_app_work_record", "t_app_work_record", workRecordExcelTemplateList, WorkRecordExcelTemplateForSave.class); + } catch (IOException e) { + log.error("缓存工作记录异常。"); + } + } +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/filter/RequestLogFilter.java b/dev_wms_serve/src/main/java/com/wms_main/filter/RequestLogFilter.java index ff129aa..68110e0 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/filter/RequestLogFilter.java +++ b/dev_wms_serve/src/main/java/com/wms_main/filter/RequestLogFilter.java @@ -1,23 +1,36 @@ package com.wms_main.filter; +import com.wms_main.dao.ITSysLogService; +import com.wms_main.model.po.TSysLog; import com.wms_main.model.pojo.log.RequestLog; +import com.wms_main.repository.utils.UUIDUtils; import jakarta.servlet.FilterChain; import jakarta.servlet.ServletException; import jakarta.servlet.annotation.WebFilter; import jakarta.servlet.http.HttpFilter; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; +import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Component; import org.springframework.web.util.ContentCachingRequestWrapper; import org.springframework.web.util.ContentCachingResponseWrapper; import java.io.IOException; +import java.time.LocalDateTime; + +import static com.wms_main.repository.utils.StringUtils.formatStringWithMaxLength; @Slf4j @Component @WebFilter(filterName = "requestLogFilter", urlPatterns = "/*") +@RequiredArgsConstructor public class RequestLogFilter extends HttpFilter { + /** + * 日志服务 + */ + private final ITSysLogService sysLogService; + @Override protected void doFilter(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws IOException, ServletException { // Wrapper封装request和response @@ -40,26 +53,31 @@ public class RequestLogFilter extends HttpFilter { // 响应体 byte[] responseContent = responseWrapper.getContentAsByteArray(); // 记录日志信息 - String requestContentString = formatContentString(new String(requestContent)); - String responseContentString = formatContentString(new String(responseContent)); + String requestContentString = formatStringWithMaxLength(new String(requestContent), 2048); + String responseContentString = formatStringWithMaxLength(new String(responseContent), 2048); RequestLog logInfo = new RequestLog(method, uri, remoteHost, remoteAddr, requestContentString, String.valueOf(status), responseContentString); log.info(logInfo.toString()); - // TODO 增加存储数据库的操作 + // 增加存储数据库的操作 + new Thread(() -> { + try { + TSysLog logForDb = new TSysLog( + UUIDUtils.getNewUUID(), + logInfo.getMethod(), + logInfo.getUri(), + logInfo.getRemoteHost(), + logInfo.getRemoteAddr(), + logInfo.getRequestContent(), + logInfo.getStatus(), + logInfo.getResponseContent(), + LocalDateTime.now() + ); + sysLogService.save(logForDb); + } catch (Exception e) { + log.error("记录日志失败。", e); + } + }).start(); // 把缓存的响应数据,响应给客户端 responseWrapper.copyBodyToResponse(); } - - /** - * 格式化内容string - * @param contentString 原始字符串 - * @return 格式化之后的字符串 - */ - private String formatContentString (String contentString) { - String newContentString = contentString.replaceAll("\\s*", ""); - if (newContentString.length() > 1024) { - newContentString = newContentString.substring(0, 1024) + "..."; - } - return newContentString; - } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/mapper/SysApiMapper.java b/dev_wms_serve/src/main/java/com/wms_main/mapper/SysApiMapper.java new file mode 100644 index 0000000..5521811 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/mapper/SysApiMapper.java @@ -0,0 +1,12 @@ +package com.wms_main.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.wms_main.model.po.TSysApi; +import org.apache.ibatis.annotations.Mapper; + +/** + * api表映射mapper + */ +@Mapper +public interface SysApiMapper extends BaseMapper { +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/mapper/SysLogMapper.java b/dev_wms_serve/src/main/java/com/wms_main/mapper/SysLogMapper.java new file mode 100644 index 0000000..c85f24b --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/mapper/SysLogMapper.java @@ -0,0 +1,12 @@ +package com.wms_main.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.wms_main.model.po.TSysLog; +import org.apache.ibatis.annotations.Mapper; + +/** + * 日志mapper接口 + */ +@Mapper +public interface SysLogMapper extends BaseMapper { +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/KateWorksQuery.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/KateWorksQuery.java index dad5d51..1809b4f 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/KateWorksQuery.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/KateWorksQuery.java @@ -46,4 +46,9 @@ public class KateWorksQuery extends PageQuery{ */ @JsonProperty("planStartDate") private LocalDate planStartDate; + /** + * 预留字段 + */ + @JsonProperty("bk1") + private String bk1; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/OutsQuery.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/OutsQuery.java index 02e0337..fa5b8b1 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/OutsQuery.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/OutsQuery.java @@ -18,6 +18,13 @@ import java.time.LocalDateTime; @AllArgsConstructor @NoArgsConstructor public class OutsQuery extends PageQuery { + /** + * 查询类型 + * 1. 未关闭 + * 2. 已关闭 + */ + @JsonProperty("queryType") + private Integer queryType; /** * 任务号 */ diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysApiQuery.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysApiQuery.java new file mode 100644 index 0000000..8842e03 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysApiQuery.java @@ -0,0 +1,22 @@ +package com.wms_main.model.dto.query; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.NoArgsConstructor; + +/** + * 接口发送日志查询参数 + */ +@EqualsAndHashCode(callSuper = true) +@Data +@AllArgsConstructor +@NoArgsConstructor +public class SysApiQuery extends PageQuery { + /** + * 查询字符串 + */ + @JsonProperty("queryStr") + private String queryStr; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysLogQuery.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysLogQuery.java new file mode 100644 index 0000000..b22b157 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/query/SysLogQuery.java @@ -0,0 +1,22 @@ +package com.wms_main.model.dto.query; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.NoArgsConstructor; + +/** + * 接口接收日志查询参数 + */ +@EqualsAndHashCode(callSuper = true) +@Data +@AllArgsConstructor +@NoArgsConstructor +public class SysLogQuery extends PageQuery { + /** + * 查询字符串 + */ + @JsonProperty("queryStr") + private String queryStr; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/StockOutRequest.java b/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/StockOutRequest.java index 6d12dc7..c70ec08 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/StockOutRequest.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/dto/request/wms/StockOutRequest.java @@ -44,4 +44,9 @@ public class StockOutRequest extends BaseWmsRequest { */ @JsonProperty("reason") private String reason; + /** + * 工单号 + */ + @JsonProperty("workOrder") + private String workOrder; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOuts.java b/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOuts.java index 389d4ca..9137a65 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOuts.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOuts.java @@ -73,4 +73,9 @@ public class TAppOuts { */ @TableField(value = "request_time") private LocalDateTime requestTime; + /** + * 工单号 + */ + @TableField(value = "work_order") + private String workOrder; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOutsRecord.java b/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOutsRecord.java index a206148..9ab75b1 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOutsRecord.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/po/TAppOutsRecord.java @@ -73,4 +73,9 @@ public class TAppOutsRecord { */ @TableField(value = "request_time") private LocalDateTime requestTime; + /** + * 工单号 + */ + @TableField(value = "work_order") + private String workOrder; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysApi.java b/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysApi.java new file mode 100644 index 0000000..ea26156 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysApi.java @@ -0,0 +1,105 @@ +package com.wms_main.model.po; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 数据库Api表映射 + */ +@Data +@AllArgsConstructor +@NoArgsConstructor +@TableName(value = "t_sys_api", autoResultMap = true) +public class TSysApi { + /** + * id + */ + @TableId(value = "log_id") + private String logId; + /** + * url + */ + @TableField(value = "url") + private String url; + /** + * 超时时长 + */ + @TableField(value = "timeout") + private Integer timeout; + /** + * 请求方式 + */ + @TableField(value = "method") + private String method; + /** + * 请求头 + */ + @TableField(value = "content_type") + private String contentType; + /** + * 数据 + */ + @TableField(value = "data") + private String data; + /** + * token + */ + @TableField(value = "token") + private String token; + /** + * 请求是否成功 + */ + @TableField(value = "success") + private String success; + /** + * 响应码 + */ + @TableField(value = "response_code") + private int responseCode; + /** + * 请求信息 + */ + @TableField(value = "request_message") + private String requestMessage; + /** + * 响应信息 + */ + @TableField(value = "response_message") + private String responseMessage; + /** + * 请求时间 + */ + @TableField(value = "request_time") + private LocalDateTime requestTime; + /** + * 响应时间 + */ + @TableField(value = "response_time") + private LocalDateTime responseTime; + /** + * 请求地址 + */ + @TableField(value = "request_url") + private String requestUrl; + /** + * 请求耗时 + */ + @TableField(value = "use_time") + private long useTime; + /** + * 异常 + */ + @TableField(value = "exception_message") + private String exceptionMessage; + /** + * 记录时间 + */ + @TableField(value = "log_time") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysLog.java b/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysLog.java new file mode 100644 index 0000000..5a6623a --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/po/TSysLog.java @@ -0,0 +1,65 @@ +package com.wms_main.model.po; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 数据库Log表映射 + */ +@Data +@AllArgsConstructor +@NoArgsConstructor +@TableName(value = "t_sys_log", autoResultMap = true) +public class TSysLog { + /** + * 日志Id + */ + @TableId(value = "log_id") + private String logId; + /** + * 请求方式 + */ + @TableField(value = "method") + private String method; + /** + * 请求地址 + */ + @TableField(value = "uri") + private String uri; + /** + * 客户端主机 + */ + @TableField(value = "remote_host") + private String remoteHost; + /** + * 客户端地址 + */ + @TableField(value = "remote_addr") + private String remoteAddr; + /** + * 请求数据 + */ + @TableField(value = "request_content") + private String requestContent; + /** + * 响应状态 + */ + @TableField(value = "status") + private String status; + /** + * 响应数据 + */ + @TableField(value = "response_content") + private String responseContent; + /** + * 日志记录时间 + */ + @TableField(value = "log_time") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/OutsVo.java b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/OutsVo.java index c023940..37b5d50 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/OutsVo.java +++ b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/OutsVo.java @@ -3,6 +3,7 @@ package com.wms_main.model.vo.wms; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonProperty; import com.wms_main.model.po.TAppOuts; +import com.wms_main.model.po.TAppOutsRecord; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @@ -99,4 +100,28 @@ public class OutsVo { po.getRequestTime() ); } + + /** + * 将记录po转换为vo + * @param po 数据库实体 + * @return 转化结果 + */ + public static OutsVo ofRecord(TAppOutsRecord po) { + if (po == null) { + return new OutsVo(); + } + return new OutsVo( + po.getTaskId(), + po.getGoodsId(), + po.getVehicleId(), + po.getNeedNum(), + po.getDistributeNum(), + po.getPickNum(), + po.getOutType(), + po.getDestination(), + po.getUserName(), + po.getReason(), + po.getRequestTime() + ); + } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysApiVo.java b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysApiVo.java new file mode 100644 index 0000000..c627360 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysApiVo.java @@ -0,0 +1,102 @@ +package com.wms_main.model.vo.wms; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 接口发送日志 + */ +@Data +@AllArgsConstructor +@NoArgsConstructor +public class SysApiVo { + /** + * id + */ + @JsonProperty("logId") + private String logId; + /** + * url + */ + @JsonProperty("url") + private String url; + /** + * 超时时长 + */ + @JsonProperty("timeout") + private Integer timeout; + /** + * 请求方式 + */ + @JsonProperty("method") + private String method; + /** + * 请求头 + */ + @JsonProperty("contentType") + private String contentType; + /** + * 数据 + */ + @JsonProperty("data") + private String data; + /** + * token + */ + @JsonProperty("token") + private String token; + /** + * 请求是否成功 + */ + @JsonProperty("success") + private String success; + /** + * 响应码 + */ + @JsonProperty("responseCode") + private int responseCode; + /** + * 请求信息 + */ + @JsonProperty("requestMessage") + private String requestMessage; + /** + * 响应信息 + */ + @JsonProperty("responseMessage") + private String responseMessage; + /** + * 请求时间 + */ + @JsonProperty("requestTime") + private LocalDateTime requestTime; + /** + * 响应时间 + */ + @JsonProperty("responseTime") + private LocalDateTime responseTime; + /** + * 请求地址 + */ + @JsonProperty("requestUrl") + private String requestUrl; + /** + * 请求耗时 + */ + @JsonProperty("useTime") + private long useTime; + /** + * 异常 + */ + @JsonProperty("exceptionMessage") + private String exceptionMessage; + /** + * 记录时间 + */ + @JsonProperty("logTime") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysLogVo.java b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysLogVo.java new file mode 100644 index 0000000..d37a8c3 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/model/vo/wms/SysLogVo.java @@ -0,0 +1,62 @@ +package com.wms_main.model.vo.wms; + +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; + +import java.time.LocalDateTime; + +/** + * 接口接收日志 + */ +@Data +@AllArgsConstructor +@NoArgsConstructor +public class SysLogVo { + /** + * 日志Id + */ + @JsonProperty("logId") + private String logId; + /** + * 请求方式 + */ + @JsonProperty("method") + private String method; + /** + * 请求地址 + */ + @JsonProperty("uri") + private String uri; + /** + * 客户端主机 + */ + @JsonProperty("remoteHost") + private String remoteHost; + /** + * 客户端地址 + */ + @JsonProperty("remoteAddr") + private String remoteAddr; + /** + * 请求数据 + */ + @JsonProperty("requestContent") + private String requestContent; + /** + * 响应状态 + */ + @JsonProperty("status") + private String status; + /** + * 响应数据 + */ + @JsonProperty("responseContent") + private String responseContent; + /** + * 日志记录时间 + */ + @JsonProperty("logTime") + private LocalDateTime logTime; +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/repository/http/HttpClient.java b/dev_wms_serve/src/main/java/com/wms_main/repository/http/HttpClient.java index 7bfe2e3..81045a7 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/repository/http/HttpClient.java +++ b/dev_wms_serve/src/main/java/com/wms_main/repository/http/HttpClient.java @@ -1,8 +1,10 @@ package com.wms_main.repository.http; +import com.wms_main.dao.ITSysApiService; import com.wms_main.repository.http.entity.HttpRequest; import com.wms_main.repository.http.entity.HttpResponse; import com.wms_main.repository.utils.StringUtils; +import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.apache.http.client.config.RequestConfig; import org.apache.http.client.methods.CloseableHttpResponse; @@ -24,7 +26,9 @@ import java.time.LocalDateTime; */ @Component @Slf4j +@RequiredArgsConstructor public class HttpClient { + private final ITSysApiService sysApiService; /** * 发送一个 Get 请求 @@ -39,6 +43,8 @@ public class HttpClient { response.setSuccess(false); response.setResponseCode(999); response.setException(new Exception("请求地址为空")); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } if(StringUtils.isNotEmpty(request.getData())) { @@ -74,16 +80,19 @@ public class HttpClient { httpClient.close(); response.setSuccess(true); response.setResponseMessage(result.toString()); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } catch (Exception e) { response.setSuccess(false); response.setResponseCode(999); response.setException(e); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } } - /** * 发送一个 Post 请求 * @param request 请求数据 @@ -98,6 +107,8 @@ public class HttpClient { response.setSuccess(false); response.setResponseCode(999); response.setException(new Exception("请求地址为空")); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } if(StringUtils.isEmpty(request.getData())) { @@ -134,11 +145,15 @@ public class HttpClient { httpClient.close(); response.setSuccess(true); response.setResponseMessage(result.toString()); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } catch (Exception e) { response.setSuccess(false); response.setResponseCode(999); response.setException(e); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } } @@ -156,6 +171,8 @@ public class HttpClient { response.setSuccess(false); response.setResponseCode(999); response.setException(new Exception("请求地址为空")); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } if(!StringUtils.isEmpty(request.getData())) { @@ -191,12 +208,30 @@ public class HttpClient { httpClient.close(); response.setSuccess(true); response.setResponseMessage(result.toString()); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } catch (Exception e) { response.setSuccess(false); response.setResponseCode(999); response.setException(e); + // 增加存储数据库的操作 TODO 后续想办法增加多线程执行存储数据库 + insertApiLogToDb(request, response); return response; } } + + /** + * 存储api日志信息 + * @param request 请求信息 + * @param response 响应信息 + */ + void insertApiLogToDb(HttpRequest request, HttpResponse response) { + try { + sysApiService.insertApiLog(request, response); + } catch (Exception e) { + log.error("插入日志失败{}", StringUtils.objectToString(e)); + } + } + } diff --git a/dev_wms_serve/src/main/java/com/wms_main/repository/http/enums/HttpMethodEnum.java b/dev_wms_serve/src/main/java/com/wms_main/repository/http/enums/HttpMethodEnum.java index 158c8e7..1c98105 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/repository/http/enums/HttpMethodEnum.java +++ b/dev_wms_serve/src/main/java/com/wms_main/repository/http/enums/HttpMethodEnum.java @@ -1,11 +1,13 @@ package com.wms_main.repository.http.enums; +import lombok.AllArgsConstructor; import lombok.Getter; /** * http请求方式 */ @Getter +@AllArgsConstructor public enum HttpMethodEnum { GET("GET"), @@ -13,9 +15,5 @@ public enum HttpMethodEnum { PUT("PUT"), DELETE("DELETE"); - private String method; - - HttpMethodEnum(String method) { - this.method = method; - } + private final String method; } diff --git a/dev_wms_serve/src/main/java/com/wms_main/repository/utils/StringUtils.java b/dev_wms_serve/src/main/java/com/wms_main/repository/utils/StringUtils.java index a8e9725..cd97c4d 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/repository/utils/StringUtils.java +++ b/dev_wms_serve/src/main/java/com/wms_main/repository/utils/StringUtils.java @@ -72,6 +72,11 @@ public class StringUtils { return str.matches("^\\d+$"); } + /** + * 判断一个字符串是否为小数 + * @param str 要判断的字符串 + * @return 结果 + */ public static boolean isDecimal(String str) { if (isEmpty(str)) return false; return str.matches("^\\d+\\.?\\d*$"); @@ -245,4 +250,22 @@ public class StringUtils { } return ip; } + + /** + * 截取字符串---依据最大程度,并去除空白与换行符 + * @param originStr 原始字符串 + * @param maxLength 最大长度 + * @return 格式化之后的字符串 + */ + public static String formatStringWithMaxLength(String originStr, int maxLength) { + if (StringUtils.isEmpty(originStr)) { + // 防止NULL异常 + return ""; + } + String newContentString = originStr.replaceAll("\\s*", ""); + if (newContentString.length() > maxLength) { + newContentString = newContentString.substring(0, maxLength) + "..."; + } + return newContentString; + } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/ILogControllerService.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/ILogControllerService.java new file mode 100644 index 0000000..1288ca8 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/ILogControllerService.java @@ -0,0 +1,27 @@ +package com.wms_main.service.controller; + +import com.wms_main.model.dto.query.SysApiQuery; +import com.wms_main.model.dto.query.SysLogQuery; +import com.wms_main.model.dto.response.wms.WmsApiResponse; +import com.wms_main.model.vo.wms.PageVo; +import com.wms_main.model.vo.wms.SysApiVo; +import com.wms_main.model.vo.wms.SysLogVo; + +/** + * 日志控制类服务 + */ +public interface ILogControllerService { + /** + * 查询接口接收日志数据---分页 + * @param logQuery 查询参数 + * @return 查询结果 + */ + WmsApiResponse> queryLogsByPage(SysLogQuery logQuery); + + /** + * 查询接口发送日志数据---分页 + * @param apiQuery 查询参数 + * @return 查询结果 + */ + WmsApiResponse> queryApisByPage(SysApiQuery apiQuery); +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/ITaskControllerService.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/ITaskControllerService.java index 4e54634..860017c 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/controller/ITaskControllerService.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/ITaskControllerService.java @@ -99,4 +99,13 @@ public interface ITaskControllerService { * @return 处理结果 */ BaseWmsApiResponse confirmInventory(InventoryConfirmRequest inventoryConfirmRequest); + + /** + * 获取对应工单的缺料数量 + * 最小值为0,最大值为库存数量 + * @param goodsId 料号 + * @param workOrder 工单号 + * @return 缺料数量 + */ + int getLackQty(String goodsId, String workOrder); } diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/KateWorkControllerServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/KateWorkControllerServiceImpl.java index bc8ce65..cb9a5d2 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/KateWorkControllerServiceImpl.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/KateWorkControllerServiceImpl.java @@ -163,7 +163,13 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService // 根据查询条件筛选出对应的暂存数据 List filterWorks = currentWorkOrderWorkList.stream() .filter(work -> { - boolean result = work.getWorkStatus() == -1; + boolean result; + if (work.getWorkStatus() == -1) { + result = true; + } else { + // 缺料,可以下发 + result = work.getWorkStatus() == 2 && work.getLackStatus() == 1; + } // 料盒号 if (StringUtils.isNotEmpty(initKateWorkRequest.getBoxNo())) { result = result && Objects.equals(work.getBoxNo(), initKateWorkRequest.getBoxNo()); @@ -182,10 +188,12 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService appWorkService.update( new LambdaUpdateWrapper() .set(TAppWork::getWorkStatus, 0) + .set(TAppWork::getLackStatus, 0) .set(TAppWork::getWorkStand, initKateWorkRequest.getStandId()) - .in(TAppWork::getWorkIndex, filterWorks.stream().map(TAppWork::getWorkIndex).toList()) + .setSql("distribute_num = finish_num") + .in(TAppWork::getWorkIndex, filterWorks.stream().map(TAppWork::getWorkIndex).distinct().toList()) ); - return BaseWmsApiResponse.success("创建工作成功。"); + return BaseWmsApiResponse.success("重新下发工作成功。"); } catch (Exception e) { // 回滚事务 TransactionAspectSupport.currentTransactionStatus().setRollbackOnly(); @@ -666,6 +674,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 生成需求看板 + * * @param genRequest 请求参数 * @return 生成结果 */ @@ -764,6 +773,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 获取物料需求 + * * @param goodsRequireRequest 请求参数 * @return 响应结果 */ @@ -929,6 +939,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 查询图纸列表(分页)---实现 + * * @param imageQuery 查询参数 * @return 查询结果 */ @@ -1050,18 +1061,55 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService if (kateWorksQuery == null) { return WmsApiResponse.error("查询参数为空。", null); } - LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() - .eq(TAppWork::getWorkOrder, kateWorksQuery.getWorkOrder()) - .eq(StringUtils.isNotEmpty(kateWorksQuery.getProductId()), TAppWork::getProductId, kateWorksQuery.getProductId()) - .eq(StringUtils.isNotEmpty(kateWorksQuery.getSingleProductId()), TAppWork::getSingleProductId, kateWorksQuery.getSingleProductId()) - .eq(TAppWork::getBoxNo, kateWorksQuery.getBoxNo()) - .eq(TAppWork::getLackStatus, 1); - List poList = appWorkService.list(lambdaQueryWrapper); - if (poList == null || poList.isEmpty()) { - return WmsApiResponse.error("没有找到缺料信息。", null); + if (StringUtils.isEmpty(kateWorksQuery.getWorkOrder())) { + return WmsApiResponse.error("请求参数缺少工单号。", null); + } + if (Objects.equals(kateWorksQuery.getBk1(), "2")) { + // 查询当前工单下,特定条件下整个料盒缺料的标签且包含当前料盒 + LambdaQueryWrapper lambdaQueryWrapper_sp = new LambdaQueryWrapper() + .eq(TAppWork::getWorkOrder, kateWorksQuery.getWorkOrder()) + .eq(StringUtils.isNotEmpty(kateWorksQuery.getProductId()), TAppWork::getProductId, kateWorksQuery.getProductId()) + .eq(StringUtils.isNotEmpty(kateWorksQuery.getSingleProductId()), TAppWork::getSingleProductId, kateWorksQuery.getSingleProductId()) + .ne(TAppWork::getLackStatus, -1);// 非暂存任务 + List poListForCompletelyLack = appWorkService.list(lambdaQueryWrapper_sp); + Map completelyLackBoxMap = new HashMap<>(); + // 添加当前料盒 + completelyLackBoxMap.put(kateWorksQuery.getBoxNo(), 1); + for (TAppWork po : poListForCompletelyLack) { + if (Objects.equals(po.getBoxNo(), kateWorksQuery.getBoxNo())) { + // 当前料盒不做处理 + continue; + } + // 处理缺料事宜 + if (po.getLackStatus() == 1) { + completelyLackBoxMap.put(po.getBoxNo(), 1); + } else { + completelyLackBoxMap.remove(po.getBoxNo()); + } + } + // 处理缺料返回 + List poListOfCompletelyLack = new ArrayList<>(); + for (String boxNo : completelyLackBoxMap.keySet()) { + List filterAppWorks = poListForCompletelyLack.stream().filter(appWork -> appWork.getBoxNo().equals(boxNo)).toList(); + poListOfCompletelyLack.addAll(filterAppWorks); + } + List resultList = poListOfCompletelyLack.stream().map(KateWorkVo::ofWork).toList(); + return WmsApiResponse.success("查询缺料信息成功。", resultList); + } else { + // 普通查询 + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .eq(TAppWork::getWorkOrder, kateWorksQuery.getWorkOrder()) + .eq(StringUtils.isNotEmpty(kateWorksQuery.getProductId()), TAppWork::getProductId, kateWorksQuery.getProductId()) + .eq(StringUtils.isNotEmpty(kateWorksQuery.getSingleProductId()), TAppWork::getSingleProductId, kateWorksQuery.getSingleProductId()) + .eq(TAppWork::getBoxNo, kateWorksQuery.getBoxNo()) + .eq(TAppWork::getLackStatus, 1); + List poList = appWorkService.list(lambdaQueryWrapper); + if (poList == null || poList.isEmpty()) { + return WmsApiResponse.error("没有找到缺料信息。", null); + } + List resultList = poList.stream().map(KateWorkVo::ofWork).toList(); + return WmsApiResponse.success("查询缺料信息成功。", resultList); } - List resultList = poList.stream().map(KateWorkVo::ofWork).toList(); - return WmsApiResponse.success("查询缺料信息成功。", resultList); } /** @@ -1141,6 +1189,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 获取料盒打印标签数量 + * * @param kateWorksQuery 查询参数 * @return 标签信息 */ @@ -1251,6 +1300,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 删除dbs计划---实现 + * * @param dbsRequest 删除请求 * @return 删除结果 */ @@ -1820,6 +1870,7 @@ public class KateWorkControllerServiceImpl implements IKateWorkControllerService /** * 获取所有物料需求 + * * @param dbsList dbs计划 * @return getGoodsRequireMap 结果 * @throws Exception 异常 diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/LogControllerServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/LogControllerServiceImpl.java new file mode 100644 index 0000000..d90f8a1 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/LogControllerServiceImpl.java @@ -0,0 +1,91 @@ +package com.wms_main.service.controller.serviceImpl; + +import cn.hutool.core.bean.BeanUtil; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.wms_main.dao.ITSysApiService; +import com.wms_main.dao.ITSysLogService; +import com.wms_main.model.dto.query.SysApiQuery; +import com.wms_main.model.dto.query.SysLogQuery; +import com.wms_main.model.dto.response.wms.WmsApiResponse; +import com.wms_main.model.po.TSysApi; +import com.wms_main.model.po.TSysLog; +import com.wms_main.model.vo.wms.PageVo; +import com.wms_main.model.vo.wms.SysApiVo; +import com.wms_main.model.vo.wms.SysLogVo; +import com.wms_main.repository.utils.StringUtils; +import com.wms_main.service.controller.ILogControllerService; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; + +/** + * 日志服务类接口实现 + */ +@RequiredArgsConstructor +@Slf4j +@Service +public class LogControllerServiceImpl implements ILogControllerService { + private final ITSysLogService sysLogService;// 接口接收日志服务 + private final ITSysApiService sysApiService;// 接口发送日志服务 + + + /** + * 查询接口接收日志---实现 + * @param logQuery 查询参数 + * @return 查询结果 + */ + @Override + public WmsApiResponse> queryLogsByPage(SysLogQuery logQuery) { + if (logQuery == null) { + return WmsApiResponse.error("查询参数不能为NULL", null); + } + Page page = logQuery.toMpPage(); + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getMethod, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getUri, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getRemoteHost, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getRemoteAddr, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getRequestContent, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getStatus, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getResponseContent, logQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(logQuery.getQueryStr()), TSysLog::getLogTime, logQuery.getQueryStr()); + Page logsPage = sysLogService.page(page, lambdaQueryWrapper); + + PageVo pageVo = PageVo.of(logsPage, logPo -> BeanUtil.toBean(logPo, SysLogVo.class)); + return WmsApiResponse.success("查询接口接收日志成功。", pageVo); + } + + /** + * 查询接口发送日志---实现 + * @param apiQuery 查询参数 + * @return 查询结果 + */ + @Override + public WmsApiResponse> queryApisByPage(SysApiQuery apiQuery) { + if (apiQuery == null) { + return WmsApiResponse.error("查询参数不能为NULL", null); + } + Page page = apiQuery.toMpPage(); + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getUrl, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getTimeout, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getMethod, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getContentType, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getData, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getToken, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getSuccess, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getResponseCode, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getRequestMessage, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getResponseMessage, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getRequestTime, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getResponseTime, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getRequestUrl, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getUseTime, apiQuery.getQueryStr()).or() + .like(StringUtils.isNotEmpty(apiQuery.getQueryStr()), TSysApi::getExceptionMessage, apiQuery.getQueryStr()); + Page logsPage = sysApiService.page(page, lambdaQueryWrapper); + + PageVo pageVo = PageVo.of(logsPage, logPo -> BeanUtil.toBean(logPo, SysApiVo.class)); + return WmsApiResponse.success("查询接口发送日志成功。", pageVo); + } +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskControllerServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskControllerServiceImpl.java index afbc3ae..4e1e240 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskControllerServiceImpl.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskControllerServiceImpl.java @@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; import com.wms_main.app.AppCommon; import com.wms_main.constant.AppConstant; +import com.wms_main.constant.enums.others.EmergencyOutReasonEnums; import com.wms_main.constant.enums.wcs.WcsStackerTaskStatusEnums; import com.wms_main.constant.enums.wcs.WcsStackerTaskTypeEnums; import com.wms_main.constant.enums.wms.*; @@ -64,6 +65,7 @@ public class TaskControllerServiceImpl implements ITaskControllerService { private final ITAppPickPlanService appPickPlanService;// 拣选计划服务 private final ITAppInventoryService appInventoryService;// 盘点任务服务 private final ITAppInventoryRecordService appInventoryRecordService;// 盘点记录服务 + private final ITAppWorkService appWorkService;// 工作详情服务 private final AppCommon appCommon; /** @@ -251,7 +253,7 @@ public class TaskControllerServiceImpl implements ITaskControllerService { // 查询这个载具号 boolean haveThisEmptyVehicleFlag = appVehicleService.exists(new LambdaQueryWrapper() .eq(TAppVehicle::getVehicleId, stockOutRequest.getVehicleId()) - .eq(TAppVehicle::getVehicleStatus, WmsVehicleStatusEnums.ON.getCode()) + .eq(TAppVehicle::getVehicleStatus, WmsVehicleStatusEnums.ON.getCode()) .eq(TAppVehicle::getIsEmpty, 1) ); if (!haveThisEmptyVehicleFlag) { @@ -286,6 +288,10 @@ public class TaskControllerServiceImpl implements ITaskControllerService { if (stockOutRequest.getNeedNum() == null || stockOutRequest.getNeedNum() <= 0) { return BaseWmsApiResponse.error("请求错误:紧急出库必须输入有效数量。"); } + // 判断原因是缺料的时候,需判断工单号是否输入 + if (stockOutRequest.getReason().contains("缺料") && StringUtils.isEmpty(stockOutRequest.getWorkOrder())) { + return BaseWmsApiResponse.error("请求错误:缺料时必须输入工单号。"); + } // 判断请求的料号是不是库外料 TAppGoods thisGoods = appCommon.getInstantGoodsByGoodsId(stockOutRequest.getGoodsId()); if (thisGoods == null || !thisGoods.getPutArea().contains("ASRS")) { @@ -325,7 +331,8 @@ public class TaskControllerServiceImpl implements ITaskControllerService { stockOutRequest.getDestination(), stockOutRequest.getUserName(), stockOutRequest.getReason(), - LocalDateTime.now() + LocalDateTime.now(), + stockOutRequest.getWorkOrder() ); appOutsService.save(task); return BaseWmsApiResponse.success("添加出库请求成功。"); @@ -333,6 +340,7 @@ public class TaskControllerServiceImpl implements ITaskControllerService { /** * 入库用出库---实现 + * * @param voiRequest 请求信息 * @return 处理结果 */ @@ -391,7 +399,8 @@ public class TaskControllerServiceImpl implements ITaskControllerService { "R1", voiRequest.getUserName(), "", - LocalDateTime.now() + LocalDateTime.now(), + "" )); } @@ -761,6 +770,7 @@ public class TaskControllerServiceImpl implements ITaskControllerService { /** * 请求盘点---实现 + * * @param inventoryRequest 盘点请求 * @return 请求结果 */ @@ -829,6 +839,7 @@ public class TaskControllerServiceImpl implements ITaskControllerService { /** * 查询盘点确认信息 + * * @param inventoryConfirmRequest 请求 * @return 查询结果 */ @@ -858,11 +869,12 @@ public class TaskControllerServiceImpl implements ITaskControllerService { // 返回结果 return WmsApiResponse.success("查询盘点确认信息成功。", inventoryConfirmVo); } - return WmsApiResponse.instanceOf(WmsApiResponseCodeEnums.WARNING.getCode(),"当前箱子没有要盘点的任务,请放行。", null); + return WmsApiResponse.instanceOf(WmsApiResponseCodeEnums.WARNING.getCode(), "当前箱子没有要盘点的任务,请放行。", null); } /** * 确认盘点信息 + * * @param inventoryConfirmRequest 确认请求 * @return 处理结果 */ @@ -980,8 +992,50 @@ public class TaskControllerServiceImpl implements ITaskControllerService { } } + /** + * 获取对应工单对应物料的缺料数量---实现 + * @param goodsId 料号 + * @param workOrder 工单号 + * @return 缺料数量 + */ + @Override + public int getLackQty(String goodsId, String workOrder) { + // 判断是否缺少料号和工单 + if (StringUtils.isEmpty(goodsId) || StringUtils.isEmpty(workOrder)) { + return 0; + } + // 查询这个工单里面关于这个工单的缺料 + List lackWorks = appWorkService.list(new LambdaQueryWrapper() + .eq(TAppWork::getWorkOrder, workOrder) + .eq(TAppWork::getGoodsId, goodsId) + .eq(TAppWork::getLackStatus, 1) + .eq(TAppWork::getWorkStatus, 2)); + if (lackWorks == null || lackWorks.isEmpty()) { + return 0; + } + // 计算数量的总数 + int sumLack = lackWorks.stream().mapToInt(work -> { + if (work.getFinishNum() < work.getNeedNum()) { + // 只有确实缺少数量时,才可以计算缺料数量 + return work.getNeedNum() - work.getFinishNum(); + } + return 0; + }).sum(); + // 查询这个物料的库存 + List thisGoodsStocks = appStockService.list(new LambdaQueryWrapper() + .eq(TAppStock::getGoodsId, goodsId)); + if (thisGoodsStocks != null && !thisGoodsStocks.isEmpty()) { + // 如果库存存在,则取库存数量与需求数量的最小值 + int goodsStockNum = thisGoodsStocks.stream().mapToInt(TAppStock::getRemainNum).sum(); + return Math.min(goodsStockNum, sumLack); + } + // 没有库存的情况下,直接返回需求数量 + return sumLack; + } + /** * 更新出库单信息 + * * @param confirmTaskRequest 确认信息 */ private String updateTaskInfo(ConfirmTaskRequest confirmTaskRequest) { @@ -1013,7 +1067,8 @@ public class TaskControllerServiceImpl implements ITaskControllerService { outs.getDestination(), outs.getUserName(), outs.getReason(), - outs.getRequestTime() + outs.getRequestTime(), + outs.getWorkOrder() ); // 删除出库单 appOutsService.removeById(outs.getTaskId()); @@ -1023,6 +1078,38 @@ public class TaskControllerServiceImpl implements ITaskControllerService { // 更新出库单 appOutsService.updateById(outs); } + // 判断是否是紧急出库且是缺料 + if (Objects.equals(outs.getOutType(), WmsOutTypeEnums.EMERGE.getCode()) + && outs.getReason().contains(EmergencyOutReasonEnums.GOODS_LACK.getReason()) && StringUtils.isNotEmpty(outs.getWorkOrder())) { + // 查询此工单下缺料的工作 + List lackGoodsWorks = appWorkService.list(new LambdaQueryWrapper() + .eq(TAppWork::getWorkOrder, outs.getWorkOrder()) + .eq(TAppWork::getWorkStatus, 2) + .eq(TAppWork::getLackStatus, 1)); + int canDistributeNum = taskConfirm.getRealPickQty(); + List needUpdateWorks = new ArrayList<>(); + for (TAppWork lackGoodsWork : lackGoodsWorks) { + if (canDistributeNum == 0) { + // 本次拣选数量不够分了 + break; + } + if (lackGoodsWork.getFinishNum() >= lackGoodsWork.getNeedNum()) { + continue; + } + int remainNeedNum = lackGoodsWork.getNeedNum() - lackGoodsWork.getFinishNum(); + // 这里需要重新设置完成数量。 + if (remainNeedNum >= canDistributeNum) { + canDistributeNum = 0; + lackGoodsWork.setFinishNum(lackGoodsWork.getFinishNum() + canDistributeNum); + } else { + canDistributeNum -= remainNeedNum; + lackGoodsWork.setFinishNum(lackGoodsWork.getNeedNum()); + lackGoodsWork.setLackStatus(0); + } + needUpdateWorks.add(lackGoodsWork); + } + appWorkService.updateBatchById(needUpdateWorks); + } // 清除拣选计划 LambdaQueryWrapper pickPlanQueryWrapper = new LambdaQueryWrapper() .eq(TAppPickPlan::getWorkIndex, confirmTaskRequest.getTaskConfirm().getTaskId()); diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskOperationControllerServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskOperationControllerServiceImpl.java index 59f51a7..c0fa82c 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskOperationControllerServiceImpl.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskOperationControllerServiceImpl.java @@ -234,7 +234,8 @@ public class TaskOperationControllerServiceImpl implements ITaskOperationControl targetOuts.getDestination(), targetOuts.getUserName(), targetOuts.getReason(), - targetOuts.getRequestTime() + targetOuts.getRequestTime(), + targetOuts.getWorkOrder() )); appPickPlanService.remove(new LambdaQueryWrapper() .eq(TAppPickPlan::getWorkIndex, targetOuts.getTaskId())); diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskQueryControllerServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskQueryControllerServiceImpl.java index 63ab0c5..431de25 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskQueryControllerServiceImpl.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/controller/serviceImpl/TaskQueryControllerServiceImpl.java @@ -26,6 +26,7 @@ public class TaskQueryControllerServiceImpl implements ITaskQueryControllerServi private final ITAppTaskBakService appTaskBakService;// 任务记录服务 private final ITAppPickTaskService appPickTaskService;// 拣选任务服务 private final ITAppOutsService appOutsService;// 出库单服务 + private final ITAppOutsRecordService appOutsRecordService;// 出库单记录服务 private final ITAppInventoryService appInventoryService;// 盘点请求服务 private final ITAppInventoryRecordService appInventoryRecordService;// 盘点记录服务 @@ -150,16 +151,32 @@ public class TaskQueryControllerServiceImpl implements ITaskQueryControllerServi if (outsQuery == null) { return WmsApiResponse.error("查询参数不能为NULL", null); } - Page page = outsQuery.toMpPage(); - LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() - .like(StringUtils.isNotEmpty(outsQuery.getTaskId()), TAppOuts::getTaskId, outsQuery.getTaskId()) - .like(StringUtils.isNotEmpty(outsQuery.getGoodsId()), TAppOuts::getGoodsId, outsQuery.getGoodsId()) - .like(StringUtils.isNotEmpty(outsQuery.getVehicleId()), TAppOuts::getVehicleId, outsQuery.getVehicleId()) - .eq(outsQuery.getOutType() != null, TAppOuts::getOutType, outsQuery.getOutType()); - Page outsPage = appOutsService.page(page, lambdaQueryWrapper); + if (outsQuery.getQueryType() == 1) { + // 查询未关闭 + Page page = outsQuery.toMpPage(); + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .like(StringUtils.isNotEmpty(outsQuery.getTaskId()), TAppOuts::getTaskId, outsQuery.getTaskId()) + .like(StringUtils.isNotEmpty(outsQuery.getGoodsId()), TAppOuts::getGoodsId, outsQuery.getGoodsId()) + .like(StringUtils.isNotEmpty(outsQuery.getVehicleId()), TAppOuts::getVehicleId, outsQuery.getVehicleId()) + .eq(outsQuery.getOutType() != null, TAppOuts::getOutType, outsQuery.getOutType()); + Page outsPage = appOutsService.page(page, lambdaQueryWrapper); + + PageVo pageVo = PageVo.of(outsPage, OutsVo::of); + return WmsApiResponse.success("查询出库单成功。", pageVo); + } else { + // 查询已关闭的记录 + Page page = outsQuery.toMpPage(); + LambdaQueryWrapper lambdaQueryWrapper = new LambdaQueryWrapper() + .like(StringUtils.isNotEmpty(outsQuery.getTaskId()), TAppOutsRecord::getTaskId, outsQuery.getTaskId()) + .like(StringUtils.isNotEmpty(outsQuery.getGoodsId()), TAppOutsRecord::getGoodsId, outsQuery.getGoodsId()) + .like(StringUtils.isNotEmpty(outsQuery.getVehicleId()), TAppOutsRecord::getVehicleId, outsQuery.getVehicleId()) + .eq(outsQuery.getOutType() != null, TAppOutsRecord::getOutType, outsQuery.getOutType()); + Page outsPage = appOutsRecordService.page(page, lambdaQueryWrapper); + + PageVo pageVo = PageVo.of(outsPage, OutsVo::ofRecord); + return WmsApiResponse.success("查询出库单记录成功。", pageVo); + } - PageVo pageVo = PageVo.of(outsPage, OutsVo::of); - return WmsApiResponse.success("查询出库单成功。", pageVo); } /** diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/IDataSolverService.java b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/IDataSolverService.java new file mode 100644 index 0000000..d1c1cd2 --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/IDataSolverService.java @@ -0,0 +1,21 @@ +package com.wms_main.service.quartz_job; + +/** + * 数据处理类 服务接口 + */ +public interface IDataSolverService { + /** + * 清理日志数据 + */ + void clearLogData(); + + /** + * 清理普通记录 + */ + void clearNormalRecord(); + + /** + * 清理重要记录 + */ + void clearImportantRecord(); +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/DataSolver.java b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/DataSolver.java index d13dc71..1cb2e26 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/DataSolver.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/DataSolver.java @@ -1,5 +1,7 @@ package com.wms_main.service.quartz_job.job_executor; +import com.wms_main.repository.utils.StringUtils; +import com.wms_main.service.quartz_job.IDataSolverService; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.quartz.*; @@ -12,6 +14,8 @@ import org.quartz.*; @DisallowConcurrentExecution @RequiredArgsConstructor public class DataSolver implements Job { + private final IDataSolverService dataSolverService;// 数据处理服务 + /** * 运行定时任务 * @@ -19,9 +23,20 @@ public class DataSolver implements Job { */ @Override public void execute(JobExecutionContext jobExecutionContext) { - // 获取定时配置信息 - - // 获取各种需要处理的数据 - + try { + dataSolverService.clearLogData(); + } catch (Exception e) { + log.error("清除日志数据失败{}", StringUtils.objectToString(e)); + } + try { + dataSolverService.clearNormalRecord(); + } catch (Exception e) { + log.error("清除普通记录失败{}", StringUtils.objectToString(e)); + } + try { + dataSolverService.clearImportantRecord(); + } catch (Exception e) { + log.error("清除重要记录失败{}", StringUtils.objectToString(e)); + } } } diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/OutsRepair.java b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/OutsRepair.java index 00faf8c..bd3e77a 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/OutsRepair.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/job_executor/OutsRepair.java @@ -17,7 +17,8 @@ import org.quartz.PersistJobDataAfterExecution; // 以下注解用于实现fixed_delay @DisallowConcurrentExecution @RequiredArgsConstructor -public class OutsRepair implements Job { +public class +OutsRepair implements Job { private final IOutsExecutorService outsExecutorService;// 出库单解析服务 /** diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/DataSolverServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/DataSolverServiceImpl.java new file mode 100644 index 0000000..8314dcd --- /dev/null +++ b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/DataSolverServiceImpl.java @@ -0,0 +1,197 @@ +package com.wms_main.service.quartz_job.serviceImpl; + +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.wms_main.app.AppCommon; +import com.wms_main.constant.enums.others.DbsStatusEnums; +import com.wms_main.constant.enums.wms.AppConfigKeyEnums; +import com.wms_main.dao.*; +import com.wms_main.excel.easypoi.service.ISaveExcelEasyPoi; +import com.wms_main.model.po.*; +import com.wms_main.service.quartz_job.IDataSolverService; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.List; + +/** + * 数据处理类 服务实现 + */ +@Service +@RequiredArgsConstructor +@Slf4j +public class DataSolverServiceImpl implements IDataSolverService { + private final AppCommon appCommon;// 应用共同数据 + private final ITSysApiService sysApiService;// 接口发送日志服务 + private final ITSysLogService sysLogService;// 接口接收日志服务 + private final ITAppTaskBakService appTaskBakService;// Wms任务记录服务 + private final ITAppWcsTaskBakService appWcsTaskBakService;// Wcs任务记录服务 + private final ITAppPickTaskBakService appPickTaskBakService;// 拣选任务记录服务 + private final ISaveExcelEasyPoi saveExcelEasyPoi;// 记录保存excel服务 + private final ITAppStockUpdateService appStockUpdateService;// 库存流水服务 + private final ITAppInventoryRecordService appInventoryRecordService;// 盘点记录服务 + private final ITAppOutsRecordService appOutsRecordService;// 出库单记录服务 + private final ITAppWorkRecordService appWorkRecordService;// 工作记录服务 + private final ITAppDbsService appDbsService;// Dbs服务 + + /** + * 清理日志文件 实现 + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void clearLogData() { + // 日志清理间隔,默认7天 + int logClearInterval = 7; + // 获取日志清理间隔 + String logClearIntervalStr = appCommon.getConfigByKey(AppConfigKeyEnums.LOG_CLEAR_INTERVAL.getKey()); + try { + logClearInterval = Integer.parseInt(logClearIntervalStr); + } catch (Exception e) { + log.warn("获取日志清理间隔失败,使用默认值7天。"); + } + // 获取删除时间 + LocalDateTime deleteTime = LocalDateTime.now().minusDays(logClearInterval); + + // 获取过期接口接收日志 + List logList = sysLogService.list(new LambdaQueryWrapper().lt(TSysLog::getLogTime, deleteTime)); + if (logList != null && !logList.isEmpty()) { + // 缓存接收记录 + saveExcelEasyPoi.saveApiReceiveLogs(getSuffixFromDate(deleteTime, logClearInterval), logList); + // 删除接收记录 + sysLogService.removeBatchByIds(logList); + log.info("清理日志文件成功,清理了{}条接口接收日志。", logList.size()); + } + + // 获取过期接口发送日志 + List apiList = sysApiService.list(new LambdaQueryWrapper().lt(TSysApi::getLogTime, deleteTime)); + if (apiList != null && !apiList.isEmpty()) { + // 缓存发送记录 + saveExcelEasyPoi.saveApiSendLogs(getSuffixFromDate(deleteTime, logClearInterval), apiList); + // 删除发送记录 + sysApiService.removeBatchByIds(apiList); + log.info("清理日志文件成功,清理了{}条接口发送日志。", apiList.size()); + } + } + + /** + * 清理普通记录文件 实现 + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void clearNormalRecord() { + // 普通记录清理间隔,默认180天 + int normalRecordClearInterval = 180; + // 获取普通记录清理间隔 + String normalRecordClearIntervalStr = appCommon.getConfigByKey(AppConfigKeyEnums.NORMAL_DATA_CLEAR_INTERVAL.getKey()); + try { + normalRecordClearInterval = Integer.parseInt(normalRecordClearIntervalStr); + } catch (Exception e) { + log.warn("获取普通记录清理间隔失败,使用默认值180天。"); + } + // 获取删除时间 + LocalDateTime deleteTime = LocalDateTime.now().minusDays(normalRecordClearInterval); + + // 查询Wms任务记录 + List wmsTaskBakList = appTaskBakService.list(new LambdaQueryWrapper().lt(TAppTaskBak::getCreateTime, deleteTime)); + if (wmsTaskBakList != null && !wmsTaskBakList.isEmpty()) { + // 备份数据 + saveExcelEasyPoi.saveWmsTaskBak(getSuffixFromDate(deleteTime, normalRecordClearInterval), wmsTaskBakList); + // 删除记录 + appTaskBakService.removeBatchByIds(wmsTaskBakList); + log.info("清理普通记录文件成功,清理了{}条Wms任务记录。", wmsTaskBakList.size()); + } + // 查询Wcs任务记录 + List wcsTaskBakList = appWcsTaskBakService.list(new LambdaQueryWrapper().lt(TAppWcsTaskBak::getCreateTime, deleteTime)); + if (wcsTaskBakList != null && !wcsTaskBakList.isEmpty()) { + // 备份数据 + saveExcelEasyPoi.saveWcsTaskBak(getSuffixFromDate(deleteTime, normalRecordClearInterval), wcsTaskBakList); + // 删除记录 + appWcsTaskBakService.removeBatchByIds(wcsTaskBakList); + log.info("清理普通记录文件成功,清理了{}条Wcs任务记录。", wcsTaskBakList.size()); + } + // 查询拣选任务记录 + List pickTaskBakList = appPickTaskBakService.list(new LambdaQueryWrapper().lt(TAppPickTaskBak::getCreateTime, deleteTime)); + if (pickTaskBakList != null && !pickTaskBakList.isEmpty()) { + // 备份数据 + saveExcelEasyPoi.savePickTaskBak(getSuffixFromDate(deleteTime, normalRecordClearInterval), pickTaskBakList); + // 删除记录 + appPickTaskBakService.removeBatchByIds(pickTaskBakList); + log.info("清理普通记录文件成功,清理了{}条拣选任务记录。", pickTaskBakList.size()); + } + } + + /** + * 清理重要记录文件 实现 + */ + @Override + @Transactional(rollbackFor = Exception.class) + public void clearImportantRecord() { + // 重要记录清理间隔,默认365天 + int importantRecordClearInterval = 365; + // 获取重要记录清理间隔 + String importantRecordClearIntervalStr = appCommon.getConfigByKey(AppConfigKeyEnums.IMPORTANT_DATA_CLEAR_INTERVAL.getKey()); + try { + importantRecordClearInterval = Integer.parseInt(importantRecordClearIntervalStr); + } catch (Exception e) { + log.warn("获取重要记录清理间隔失败,使用默认值365天。"); + } + // 获取删除时间 + LocalDateTime deleteTime = LocalDateTime.now().minusDays(importantRecordClearInterval); + + // 查询过期库存流水记录 + List stockUpdateList = appStockUpdateService.list(new LambdaQueryWrapper().lt(TAppStockUpdate::getUpdateTime, deleteTime)); + if (stockUpdateList != null && !stockUpdateList.isEmpty()) { + // 备份过期数据 + saveExcelEasyPoi.saveStockUpdateRecord(getSuffixFromDate(deleteTime, importantRecordClearInterval), stockUpdateList); + // 清理过期数据 + appStockUpdateService.removeBatchByIds(stockUpdateList); + } + // 查询过期盘点记录 + List inventoryRecordList = appInventoryRecordService.list(new LambdaQueryWrapper().lt(TAppInventoryRecord::getInvConfirmTime, deleteTime)); + if (inventoryRecordList != null && !inventoryRecordList.isEmpty()) { + // 缓存过期数据 + saveExcelEasyPoi.saveInventoryRecord(getSuffixFromDate(deleteTime, importantRecordClearInterval), inventoryRecordList); + // 删除过期数据 + appInventoryRecordService.removeBatchByIds(inventoryRecordList); + } + // 查询过期出库单请求记录 + List outsRecordList = appOutsRecordService.list(new LambdaQueryWrapper().lt(TAppOutsRecord::getRequestTime, deleteTime)); + if (outsRecordList != null && !outsRecordList.isEmpty()) { + // 缓存过期数据 + saveExcelEasyPoi.saveOutsRecord(getSuffixFromDate(deleteTime, importantRecordClearInterval), outsRecordList); + // 删除过期数据 + appOutsRecordService.removeBatchByIds(outsRecordList); + } + // 查询过期工作记录 + List workRecordList = appWorkRecordService.list(new LambdaQueryWrapper().lt(TAppWorkRecord::getFinishTime, deleteTime)); + if (workRecordList != null && !workRecordList.isEmpty()) { + // 缓存过期数据 + saveExcelEasyPoi.saveWorkRecord(getSuffixFromDate(deleteTime, importantRecordClearInterval), workRecordList); + // 删除过期数据 + appWorkRecordService.removeBatchByIds(workRecordList); + } + // 查询过期dbs数据 + List dbsRecordList = appDbsService.list(new LambdaQueryWrapper().lt(TAppDbs::getFinishTime, deleteTime).eq(TAppDbs::getDbsStatus, DbsStatusEnums.FINISH.getValue())); + if (dbsRecordList != null && !dbsRecordList.isEmpty()) { + // 缓存过期数据 + saveExcelEasyPoi.saveDbsRecord(getSuffixFromDate(deleteTime, importantRecordClearInterval), dbsRecordList); + // 删除过期数据 + appDbsService.removeBatchByIds(dbsRecordList); + } + } + + /** + * 获取到文件的时间后缀 + * @param deleteTime 删除临界时间 + * @return 后缀字符串 + */ + private String getSuffixFromDate(LocalDateTime deleteTime, int clearInterval) { + DateTimeFormatter dateFormat = DateTimeFormatter.ofPattern("yyyyMMdd"); + String fromDateStr = dateFormat.format(deleteTime.minusDays(clearInterval)); + String toDateStr = dateFormat.format(deleteTime); + return fromDateStr + "~" + toDateStr; + } +} diff --git a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/OutsExecutorServiceImpl.java b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/OutsExecutorServiceImpl.java index 05af03d..a713607 100644 --- a/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/OutsExecutorServiceImpl.java +++ b/dev_wms_serve/src/main/java/com/wms_main/service/quartz_job/serviceImpl/OutsExecutorServiceImpl.java @@ -922,18 +922,56 @@ public class OutsExecutorServiceImpl implements IOutsExecutorService { List emergeOuts = allOuts.stream().filter(appOuts -> appOuts.getOutType().equals(WmsOutTypeEnums.EMERGE.getCode())).toList(); List emergeGoodsIds = emergeOuts.stream().map(TAppOuts::getGoodsId).distinct().toList(); if (!emergeGoodsIds.isEmpty()) { + // 查询库存 List emergeStocks = appStockService.list(new LambdaQueryWrapper() .in(TAppStock::getGoodsId, emergeGoodsIds)); + // 查询拣选计划 + List emergePlans = appPickPlanService.list(new LambdaQueryWrapper() + .in(TAppPickPlan::getWorkIndex, emergeOuts.stream().map(TAppOuts::getTaskId).distinct().toList())); + // 查询到拣选任务 + List emergePickTasks = new ArrayList<>(); + if (emergePlans != null && !emergePlans.isEmpty()) { + emergePickTasks = appPickTaskService.list(new LambdaQueryWrapper() + .in(TAppPickTask::getVehicleId, emergePlans.stream().map(TAppPickPlan::getVehicleId).distinct().toList())); + } for (TAppOuts emergeOut : emergeOuts) { List emergeStocksOfThisGoodsId = emergeStocks.stream().filter(stock -> stock.getGoodsId().equals(emergeOut.getGoodsId())).toList(); + // 库存不足之后移除该任务 if (emergeStocksOfThisGoodsId.isEmpty()) { addRemovingOutsAndRecord(needRemoveOutIds, emergeOut, needAddOutRecords); + continue; + } + // 当拣选完之后也要判断是否要移除 + if (emergeOut.getDistributeNum() >= emergeOut.getNeedNum()) { + if (emergePlans == null || emergePlans.isEmpty()) { + // 没有拣选计划,直接移除 + addRemovingOutsAndRecord(needRemoveOutIds, emergeOut, needAddOutRecords); + continue; + } + // 根据拣选计划+拣选任务来判断 + List thisOutsPickPlans = emergePlans.stream().filter(pickPlan -> pickPlan.getWorkIndex().equals(emergeOut.getTaskId())).toList(); + if (thisOutsPickPlans.isEmpty()) { + // 没有拣选计划,直接移除 + addRemovingOutsAndRecord(needRemoveOutIds, emergeOut, needAddOutRecords); + continue; + } + // 待拣选的载具列表 + List vehicleIdsOfPlans = thisOutsPickPlans.stream().map(TAppPickPlan::getVehicleId).distinct().toList(); + // 判断是否还有去这个站台的拣选任务 + List thisOutsPickTasks = emergePickTasks.stream().filter(pickTask -> vehicleIdsOfPlans.contains(pickTask.getVehicleId()) && Objects.equals(pickTask.getPickStand(), emergeOut.getDestination())).toList(); + if (thisOutsPickTasks.isEmpty()) { + // 没有拣选任务,直接移除 + addRemovingOutsAndRecord(needRemoveOutIds, emergeOut, needAddOutRecords); + } } } } // 移除任务 if (!needRemoveOutIds.isEmpty()) { appOutsService.removeBatchByIds(needRemoveOutIds); + // 需要移除pickPlan + appPickPlanService.remove(new LambdaQueryWrapper() + .in(TAppPickPlan::getWorkIndex, needRemoveOutIds)); } // 添加任务记录 if (!needAddOutRecords.isEmpty()) { @@ -1345,7 +1383,8 @@ public class OutsExecutorServiceImpl implements IOutsExecutorService { thisOuts.getDestination(), thisOuts.getUserName(), thisOuts.getReason(), - thisOuts.getRequestTime() + thisOuts.getRequestTime(), + thisOuts.getWorkOrder() )); } } diff --git a/dev_wms_serve/src/main/resources/application.yml b/dev_wms_serve/src/main/resources/application.yml index 3523c4a..9485fb9 100644 --- a/dev_wms_serve/src/main/resources/application.yml +++ b/dev_wms_serve/src/main/resources/application.yml @@ -9,13 +9,13 @@ spring: # username: developer # password: developer # 本地 - url: jdbc:mysql://localhost:3306/wms_kate_wuxi?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true - username: root - password: liangzhou +# url: jdbc:mysql://localhost:3306/wms_kate_wuxi?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true +# username: root +# password: liangzhou # 卡特服务器 -# url: jdbc:mysql://10.90.83.37:3306/wms_kate_wuxi?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true -# username: developer -# password: baokai + url: jdbc:mysql://10.90.83.37:3306/wms_kate_wuxi?characterEncoding=utf8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&rewriteBatchedStatements=true + username: developer + password: baokai profiles: active: online diff --git a/dev_wms_serve/src/main/resources/mapper/SysApiMapper.xml b/dev_wms_serve/src/main/resources/mapper/SysApiMapper.xml new file mode 100644 index 0000000..15035ba --- /dev/null +++ b/dev_wms_serve/src/main/resources/mapper/SysApiMapper.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/dev_wms_serve/src/main/resources/mapper/SysLogMapper.xml b/dev_wms_serve/src/main/resources/mapper/SysLogMapper.xml new file mode 100644 index 0000000..e5d8ca5 --- /dev/null +++ b/dev_wms_serve/src/main/resources/mapper/SysLogMapper.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/dev_wms_serve/src/main/resources/sql/wms_kate_wuxi.sql b/dev_wms_serve/src/main/resources/sql/wms_kate_wuxi.sql deleted file mode 100644 index dfa3eb8..0000000 --- a/dev_wms_serve/src/main/resources/sql/wms_kate_wuxi.sql +++ /dev/null @@ -1,25929 +0,0 @@ -/* - Navicat Premium Dump SQL - - Source Server : 本地数据库 - Source Server Type : MySQL - Source Server Version : 80404 (8.4.4) - Source Host : localhost:3306 - Source Schema : wms_kate_wuxi - - Target Server Type : MySQL - Target Server Version : 80404 (8.4.4) - File Encoding : 65001 - - Date: 23/04/2025 16:29:31 -*/ - -SET NAMES utf8mb4; -SET FOREIGN_KEY_CHECKS = 0; - --- ---------------------------- --- Table structure for t_app_config --- ---------------------------- -DROP TABLE IF EXISTS `t_app_config`; -CREATE TABLE `t_app_config` ( - `config_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置id', - `config_key` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置键', - `config_value` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置值', - `config_type` int NOT NULL COMMENT '配置类型:1.输入框2.下拉多选3.开关', - `config_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置显示名称', - PRIMARY KEY (`config_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_config --- ---------------------------- -BEGIN; -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('1', 'WcsPickTaskUrl', 'http://10.90.83.39:9980/api/wms/convey/conveyTask', 1, '发送拣选任务地址'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('2', 'WcsStackerTaskUrl', 'http://10.90.83.39:9980/api/wms/wmsTask/setStackerTask', 1, '发送堆垛机任务地址'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('3', 'WcsReleaseBoxUrl', 'http://10.90.83.39:9980/api/wms/convey/disposeVehicle', 1, '发送释放站台箱子地址'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('4', 'WcsCancelPickTaskUrl', 'http://10.90.83.39:9980/api/wms/convey/cancel', 1, '发送取消拣选任务地址'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('5', 'StandCapacity', '8', 1, '站台容量'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('6', 'ImageIp', 'https://s4wwjasrsp01.ap.cat.com/wmsServer', 1, '存放图纸ip'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('7', 'EmptyBack', '0', 3, 'empty_back'); -INSERT INTO `t_app_config` (`config_id`, `config_key`, `config_value`, `config_type`, `config_name`) VALUES ('8', 'StockWarningQty', '5', 1, '库存预警数量'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_dbs --- ---------------------------- -DROP TABLE IF EXISTS `t_app_dbs`; -CREATE TABLE `t_app_dbs` ( - `dbs_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键id', - `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工单', - `product_id_origin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'dbs原始未处理的零件号,成品号', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '零件号,成品号', - `test_plan_start_date` date NOT NULL COMMENT 'TEST计划开始时间', - `test_plan_finish_date` date DEFAULT NULL COMMENT 'TEST计划完成时间', - `pnt_plan_start_date` date DEFAULT NULL COMMENT 'PNT计划开始时间', - `pnt_plan_finish_date` date DEFAULT NULL COMMENT 'PNT计划完成时间', - `plan_production` int NOT NULL COMMENT '计划产量/套', - `equipment_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '设备名称', - `work_shift` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '班次', - `family` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'Family', - `test_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'TestNo#', - `kitting_remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'K料备注', - `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', - `dbs_status` int NOT NULL COMMENT '状态---初始0', - `work_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '工作站台', - `real_work_date` date DEFAULT NULL COMMENT '实际工作日期', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `first_import_time` datetime DEFAULT NULL COMMENT '初次导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '初次导入用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - PRIMARY KEY (`dbs_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_dbs --- ---------------------------- -BEGIN; -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010000', '110002189133', '4512444-A', '4512444', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 1, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010001', '110002189132', '4512444-A', '4512444', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 11, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, '各验证11件4K1388和1J9671', 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010002', '110002189153', '5936452-A', '5936452', '2025-03-27', '2025-03-28', '2025-03-28', '2025-03-29', 1, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010003', '110002189157', '3701290-A', '3701290', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 6, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010004', '110002189122', '9T5957-A', '9T5957', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010005', '110002203998', '4512444-A', '4512444', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010006', '110002189147', '4560777-A', '4560777', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 1, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010007', '110002189152', '3749878-MA', '3749878', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 3, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010008', '110002203993', '4413485-A', '4413485', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 4, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010009', '110002203997', '4413485-A', '4413485', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 4, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010011', '110002189127', '6457847-A', '6457847', '2025-03-29', '2025-03-31', '2025-03-31', '2025-04-01', 13, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010012', '110002189154', '5429999-A', '5429999', '2025-03-29', '2025-03-31', '2025-03-31', '2025-04-01', 9, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653431010013', '110002189080', '2965662-A', '2965662', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 10, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010000', '110002189085', '2965662-MA', '2965662', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 16, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010001', '110002189075', '2119696-MA', '2119696', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010002', '110002189086', '2965662-MA', '2965662', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010003', '110002189081', '2965662-A', '2965662', '2025-03-26', '2025-03-27', '2025-03-27', '2025-03-28', 6, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010004', '110002189076', '2119696-MA', '2119696', '2025-03-27', '2025-03-28', '2025-03-28', '2025-03-29', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010005', '110002189087', '2965662-MA', '2965662', '2025-03-27', '2025-03-28', '2025-03-28', '2025-03-29', 8, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010006', '110002196241', '2965662-A', '2965662', '2025-03-27', '2025-03-28', '2025-03-28', '2025-03-29', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010007', '110002196242', '2965662-A', '2965662', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 20, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010008', '110002196237', '2965662-MA', '2965662', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 12, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742539653432010009', '110002196235', '3215283-MA', '3215283', '2025-03-28', '2025-03-29', '2025-03-29', '2025-03-31', 8, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-21 14:47:33', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010000', '110002204003', '5429999-A', '5429999', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 3, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010001', '110002189130', '4560776-A', '4560776', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 5, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010002', '110002189131', '4560776-A', '4560776', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 7, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010003', '110002203994', '4413485-A', '4413485', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 4, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010004', '110002189142', '1275500-A', '1275500', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 6, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010005', '110002189150', '1423996-MA', '1423996', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 1, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010006', '110002189140', '1131543-MA', '1131543', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 2, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010007', '110002196262', '1131543-MA', '1131543', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 2, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010008', '110002196263', '1494133-MA', '1494133', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 3, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010009', '110002196264', '1494133-MA', '1494133', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 11, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010010', '110002196276', '4832252-A', '4832252', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 3, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010011', '110002196277', '4832252-A', '4832252', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 19, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010014', '110002196278', '9T5957-A', '9T5957', '2025-04-02', '2025-04-03', '2025-04-03', '2025-04-07', 11, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010015', '110002196269', '4512444-A', '4512444', '2025-04-02', '2025-04-03', '2025-04-03', '2025-04-07', 2, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P2', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010016', '110002196268', '4512444-A', '4512444', '2025-04-02', '2025-04-03', '2025-04-03', '2025-04-07', 12, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P2', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010017', '110002203999', '4512444-A', '4512444', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 6, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P2', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010018', '110002196270', '4512444-A', '4512444', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P2', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010019', '110002196265', '9T5957-MA', '9T5957', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 8, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010020', '110002204008', '5936452-A', '5936452', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 1, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010021', '110002196279', '9T5957-A', '9T5957', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 2, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010022', '110002196280', '9T5957-A', '9T5957', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 2, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010023', '110002204017', '3701290-A', '3701290', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 2, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010024', '110002196271', '3701290-A', '3701290', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010025', '110002196281', '9T5957-A', '9T5957', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010026', '110002204000', '4512444-A', '4512444', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010047', '110002196236', '3215283-MA', '3215283', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 8, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010048', '110002196238', '2965662-MA', '2965662', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 8, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010049', '110002196243', '2965662-A', '2965662', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 24, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010050', '110002196244', '2965662-A', '2965662', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 36, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010051', '110002196245', '2965662-A', '2965662', '2025-04-01', '2025-04-02', '2025-04-02', '2025-04-03', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010052', '110002196246', '2965662-A', '2965662', '2025-04-02', '2025-04-03', '2025-04-03', '2025-04-07', 40, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010053', '110002196247', '2965662-A', '2965662', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 16, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010054', '110002196239', '2965662-MA', '2965662', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 16, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010055', '110002196234', '2119696-MA', '2119696', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809693010056', '110002196240', '2965662-MA', '2965662', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 1, 'P3', NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809694010060', '110002195776', '5426075-A', '5426075', '2025-03-31', '2025-04-01', '2025-04-01', '2025-04-02', 3, '1#&4#&5#组装配', '早班', 'Fenix', 'Test 05#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743059809694010075', '110002195777', '5426077-A', '5426077', '2025-04-03', '2025-04-07', '2025-04-07', '2025-04-08', 4, '1#&4#&5#组装配', '早班', 'Fenix', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-03-27 15:16:50', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010000', '110002196274', '4560777', '4560777', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 3, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010001', '110002196275', '4560777', '4560777', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 1, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010002', '110002196272', '3749878', '3749878', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 1, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010003', '110002203995', '4413485', '4413485', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 4, '1#&4#&5#组装配', '早班', 'Steering', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010004', '110002196266', '6209758', '6209758', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 4, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010005', '110002210930', '6209758', '6209758', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 8, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010006', '110002204012', '6209758', '6209758', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 60, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010007', '110002203992', '6457847', '6457847', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 11, '1#&4#&5#组装配', '早班', 'BRK', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010008', '110002196267', '6457847', '6457847', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 9, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010009', '110002203996', '4413485', '4413485', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 6, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010010', '110002204004', '5429999', '5429999', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 14, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010011', '110002204005', '5429999', '5429999', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 10, '1#&4#&5#组装配', '早班', 'MTV', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010012', '110002203991', '6457847', '6457847', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 14, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010013', '110002210968', '4413485', '4413485', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 12, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010014', '110002204016', '1423996', '1423996', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 2, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010015', '110002204001', '4512444', '4512444', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 12, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010016', '110002203987', '9T5957', '9T5957', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 6, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010017', '110002203988', '9T5957', '9T5957', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 6, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010018', '110002204014', '4832252', '4832252', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 11, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010019', '110002204009', '1131543', '1131543', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 4, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010020', '110002204015', '5241514', '5241514', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 11, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010021', '110002204013', '6209758', '6209758', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 1, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010022', '110002210931', '6209758', '6209758', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 55, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565894010023', '110002210932', '6209758', '6209758', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 5, '1#&4#&5#组装配', '早班', 'Combo', 'Test 01#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010000', '110002203951', '2965662', '2965662', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 40, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010001', '110002203952', '2965662', '2965662', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 8, '2#&3#组装配', '早班', 'NEU', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010002', '110002203948', '6E5566', '6E5566', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 32, '2#&3#组装配', '早班', 'SEL', 'Test 03#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010003', '110002203949', '6E5566', '6E5566', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 28, '2#&3#组装配', '早班', 'SEL', 'Test 03#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010004', '110002211005', '1649613', '1649613', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 12, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010005', '110002203954', '2965662', '2965662', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 40, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010006', '110002203955', '2965662', '2965662', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 12, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010007', '110002203956', '2965662', '2965662', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 28, '2#&3#组装配', '早班', 'NEU', 'Test 03#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010008', '110002203395', '9T5653', '9T5653', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 6, '1#&4#&5#组装配', '早班', 'QD3', 'Test 04#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010009', '110002203377', '5973476', '5973476', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 40, '1#&4#&5#组装配', '早班', 'HMS', 'Test 04#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010010', '110002203369', '6063779', '6063779', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 30, '1#&4#&5#组装配', '早班', 'TRS', 'Test 05#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010011', '110002203216', '5013712', '5013712', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 22, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010012', '110002203365', '5013713', '5013713', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 13, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010013', '110002203336', '5013711', '5013711', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 4, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010014', '110002203368', '5013713', '5013713', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 12, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010015', '110002203361', '5013712', '5013712', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 8, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010016', '110002203375', '6223020', '6223020', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 4, '1#&4#&5#组装配', '早班', 'Fenix', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010017', '110002209923', '6223020', '6223020', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 3, '1#&4#&5#组装配', '早班', 'Fenix', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010018', '110002209922', '5013713', '5013713', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 14, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010019', '110002209926', '5013712', '5013712', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 3, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010020', '110002209927', '5013713', '5013713', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 10, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010021', '110002203376', '5872375', '5872375', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 1, '1#&4#&5#组装配', '早班', 'Fenix', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010022', '110002203318', '4736798/HO', '4736798', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 2, '1#&4#&5#组装配', '早班', 'Open Center', 'Test 05#', NULL, '验证2件3209236', 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010023', '110002210112', '5013712', '5013712', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 4, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010024', '110002210113', '5013711', '5013711', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 6, '1#&4#&5#组装配', '早班', 'EH', 'Test 05#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010025', '110002203326', '4903958/HE', '4903958', '2025-04-07', '2025-04-08', '2025-04-08', '2025-04-09', 48, '6#组装配', '早班', 'RCV', 'Test 06#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010026', '110002203321', '4903958/HE', '4903958', '2025-04-08', '2025-04-09', '2025-04-09', '2025-04-10', 48, '6#组装配', '早班', 'RCV', 'Test 06#', '已K料', NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010027', '110002203322', '4903958/HE', '4903958', '2025-04-09', '2025-04-10', '2025-04-10', '2025-04-11', 48, '6#组装配', '早班', 'RCV', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010028', '110002203323', '4903958/HE', '4903958', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 48, '6#组装配', '早班', 'RCV', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010029', '110002203302', '2130087', '2130087', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 2, '6#组装配', '早班', 'MTV', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010030', '110002203378', '6055348', '6055348', '2025-04-10', '2025-04-11', '2025-04-11', '2025-04-12', 3, '6#组装配', '早班', 'HMS', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010031', '110002203324', '4903958/HE', '4903958', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 48, '6#组装配', '早班', 'RCV', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010032', '110002212617', '6055348', '6055348', '2025-04-11', '2025-04-12', '2025-04-12', '2025-04-14', 12, '6#组装配', '早班', 'HMS', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010033', '110002203325', '4903958/HE', '4903958', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 48, '6#组装配', '早班', 'RCV', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -INSERT INTO `t_app_dbs` (`dbs_id`, `work_order`, `product_id_origin`, `product_id`, `test_plan_start_date`, `test_plan_finish_date`, `pnt_plan_start_date`, `pnt_plan_finish_date`, `plan_production`, `equipment_name`, `work_shift`, `family`, `test_no`, `kitting_remark`, `remark`, `dbs_status`, `work_stand`, `real_work_date`, `finish_time`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743659565895010034', '110002203309', '3467620', '3467620', '2025-04-12', '2025-04-14', '2025-04-14', '2025-04-15', 1, '6#组装配', '早班', 'ACS', 'Test 06#', NULL, NULL, 0, NULL, NULL, NULL, '2025-04-03 13:52:46', '管理员', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_equipment --- ---------------------------- -DROP TABLE IF EXISTS `t_app_equipment`; -CREATE TABLE `t_app_equipment` ( - `equipment_id` int NOT NULL COMMENT '设备号', - `equipment_type` int NOT NULL COMMENT '设备类型', - `equipment_status` int NOT NULL COMMENT '设备状态\n1: 启用\n0: 未启用', - `equipment_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设备名称', - `equipment_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '设备描述', - `last_update_time` datetime DEFAULT NULL, - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - PRIMARY KEY (`equipment_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_equipment --- ---------------------------- -BEGIN; -INSERT INTO `t_app_equipment` (`equipment_id`, `equipment_type`, `equipment_status`, `equipment_name`, `equipment_desc`, `last_update_time`, `last_update_user`) VALUES (1, 1, 1, '1号堆垛机', '1号堆垛机', '2025-02-15 15:21:59', 'admin'); -INSERT INTO `t_app_equipment` (`equipment_id`, `equipment_type`, `equipment_status`, `equipment_name`, `equipment_desc`, `last_update_time`, `last_update_user`) VALUES (2, 1, 1, '2号堆垛机', '2号堆垛机', '2025-02-15 15:22:21', 'admin'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_goods --- ---------------------------- -DROP TABLE IF EXISTS `t_app_goods`; -CREATE TABLE `t_app_goods` ( - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料号', - `plant` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'plant', - `goods_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '描述', - `vendor_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '供应商名称', - `feeding_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '补料方式', - `max_box_num` int DEFAULT NULL COMMENT '立库可放箱数', - `box_qty` int DEFAULT NULL COMMENT '每盒数量', - `put_area` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '存放区域', - `is_sled` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '是否是SLED管理', - `sled_days` int DEFAULT NULL COMMENT 'SLED天数', - `hot_point` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '热点分析', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - `first_import_time` datetime DEFAULT NULL COMMENT '初次导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '初次导入用户', - PRIMARY KEY (`goods_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_goods --- ---------------------------- -BEGIN; -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0041963', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 260, 'ASRS', 'N', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0058593', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 230, 'ASRS', 'N', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0304605', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 260, 'ASRS', 'N', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0304606', 'WJ12', 'SEAL O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0336027', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1500, 'ASRS', 'N', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0344160', 'WJ12', 'BOLT-LOCKING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0617540', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0619456', 'WJ12', 'SEAL-O-RING', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 1, 'ASRS', 'N', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0858091/HE', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0874786', 'WJ12', 'ADAPTER', '#NO SOURCE', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0950705', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0950707', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 45, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951573/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951575/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 560, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951578/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951579/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951580/HE', 'WJ12', 'SEAL-O-RING', '#NO SOURCE', 'MRP', 4, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951582/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951584/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951586/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951587/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951594/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951599/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951601/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951602/HE', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951603/HE', 'WJ12', 'SEAL-O-RING', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 2, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951608', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951750/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951751/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1040, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951778/HE', 'WJ12', 'RING-BACK UP', 'NISHIYAMA CORPORATION', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951786/HE', 'WJ12', 'RING-BACK UP', 'NISHIYAMA CORPORATION', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0951789/HE', 'WJ12', 'RING-BACK UP', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 4, 119, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0958024/HE', 'WJ12', 'RING-BACK UP', 'NISHIYAMA CORPORATION', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0960008', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0963831/HE', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0964876/HE', 'WJ12', 'NUT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 330, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0993649', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0994691', 'WJ12', 'BOLT-HEXHEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0L1143', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0S1590', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0S1594', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0S1618', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 880, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0S1619', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('0T0065', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 180, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1006021', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1006211', 'WJ12', 'PISTON', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 180, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1007000', 'WJ12', 'Ring-back up', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 140, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1008010', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1008011', 'WJ12', 'PLUG', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1008012', 'WJ12', 'BODY', 'TUSON JIAXING CORPORATION', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1008347', 'WJ12', 'COVER', 'YANTAI DONGXING GROUP CO., LTD', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1010509', 'WJ12', 'SEAL-INTEGRAL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011148', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011149', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011154', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011155', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011971', 'WJ12', 'LEVER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 504, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011972', 'WJ12', 'DETENT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011973', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 750, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011978', 'WJ12', 'COVER', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011980', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1011984', 'WJ12', 'BODY', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1012480', 'WJ12', 'COVER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1012862', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 125, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1014845', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1020889/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1022562', 'WJ12', 'BOLT-HEX SOCKET', 'JIANGSU NINGXIN AUTO PART CO.,LTD', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024157', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024569', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024571', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024574', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024577', 'WJ12', 'STEM-mg', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1024578', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1027364', 'WJ12', 'BOLT-HEX SOCKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1027365', 'WJ12', 'BOLT-HEX SOCKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1027412', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1038173/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1038252/HE', 'WJ12', 'RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1038254/HE', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1038255/HE', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1047429', 'WJ12', 'PLATE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1047574', 'WJ12', 'VALVE GP-RELIEF', 'HY-PRODUCTION INC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1053478', 'WJ12', 'BOLT-HEX SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1061791', 'WJ12', 'SWITCH GP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1063659', 'WJ12', 'PISTON', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 168, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1063660', 'WJ12', 'PISTON', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 216, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1063661', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1067683', 'WJ12', 'ADAPTER', 'CHINA SOURCE COMPONENTS TRADING', 'MRP', 1, 324, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1067995', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070071', 'WJ12', 'RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070269', 'WJ12', 'BOLT-HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 430, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070499', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070504', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070505', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070511', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070512', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070513', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070515', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070516', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070517', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070518', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070519', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070520', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070521', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070522', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070523', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070527', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070529', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070530', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070531', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070532', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070533', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070534', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070537', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070539', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1070541', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1071177', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1071179', 'WJ12', 'SEAL PLATE', 'BRICKHAM STAMPING COMPANY INC', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1071180', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1071183', 'WJ12', 'STEM-STEER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1073585', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1078234', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1081781', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1081847', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1082187', 'WJ12', 'PLUG-PIPE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1082989', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1083866', 'WJ12', 'ADAPTER-STOR', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 3, 90, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1084916', 'WJ12', 'DETENT GP-CONT', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1086428', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1089402', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1091393', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1096944', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1098040', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1109456', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1118233', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 216, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1118234', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 198, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1119632', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1119916/HE', 'WJ12', 'VALVE GP-SOL&', 'KAWASAKI HEAVY INDUSTRIES, LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1127289', 'WJ12', 'STEM-STEERING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1132040', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1138263', 'WJ12', 'PISTON', 'TUSON JIAXING CORPORATION', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1141267', 'WJ12', 'VALVE GP-PRESS-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1145678', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1145679', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1151005', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1153073', 'WJ12', 'CLIP AS-CONNECTO', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1156433', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1156901', 'WJ12', 'COVER', 'LIYANG LIANHUA MACHINERY MANUFACTUR', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1159976', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 225, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1159977', 'WJ12', 'PLUG-LDSTOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 110, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1160014', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1160118/HE', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1161890', 'WJ12', 'VALVE GP-CHECK-D', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1161895', 'WJ12', 'VALVE GP-D RLF', 'PONAR WADOWICE S A', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1165172', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1165174', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1171968', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1172040', 'WJ12', 'BRACKET AS.', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1177889', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1177890', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1177892', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1177893', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1177895', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1181470', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1181471', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1181472', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1185081', 'WJ12', 'ACTUATOR GP', 'CATERPILLAR INDUSTRIAS MEXICO, S. D', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1185086', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1185087', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 40, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1186871', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 32, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1199541', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1199542', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1199543', 'WJ12', 'PLATE IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1212051', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1216645', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1216647', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1216649', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1216650', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1216653', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 42, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1227695/HE', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1227767/HE', 'WJ12', 'RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 105, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1234750', 'WJ12', 'VALVE GP-CHECK-E', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1235798', 'WJ12', 'SEAT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1235799', 'WJ12', 'SEAT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1237019', 'WJ12', 'COVER', 'JIANGSU LIYUAN JINHE FOUNDRY', 'MRP', 1, 168, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1239624', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1242880', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1242881', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1242882', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243308', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243311', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243330', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243331', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243454', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1243488', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1248335', 'WJ12', 'VALVEAS-CONTROL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1249957', 'WJ12', 'PIN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1265484', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1266104', 'WJ12', 'PLUG-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 15, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1266612', 'WJ12', 'BODY', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 8, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1267654', 'WJ12', 'SPACER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 288, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1268473', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1275531', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1277290', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1278480', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1282654', 'WJ12', 'HANGER-PAINT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1288701', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1291898', 'WJ12', 'BODY', 'JIANGSU LIYUAN JINHE FOUNDRY', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1291900', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1298222', 'WJ12', 'VALVE GP-D RLF-', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 15, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303088', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303089', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303090', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303091', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303092', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303093', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303094', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303095', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303099', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303100', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303101', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303109', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1303535', 'WJ12', 'DETENT GP-CONT', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 4, 8, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1305300', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1315938/HE', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 1, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1318350', 'WJ12', 'VALVE GP-BASIC', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1323877/EY', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1325258', 'WJ12', 'VALVE GP-D RLF-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1355359', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1355491', 'WJ12', 'VALVE GP-P RLF', 'PONAR WADOWICE S A', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1357272', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1376719', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1376720', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1379832', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1393555', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1397559', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1398472', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1398475', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1398476', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1398477', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1401114', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1411233', 'WJ12', 'VALVE GP-CHECK-F', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 59, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1411500', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1415497', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1415498', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1421767', 'WJ12', 'POPPET', 'TUSON JIAXING CORPORATION', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1422864', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 160, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1425584', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1425589', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1425590', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1433564', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1439479', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1441185', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1442894', 'WJ12', 'PLUG-EXPANDER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1470874', 'WJ12', 'PLATE', '#NO SOURCE', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1477609', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1482557', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1483483', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1487906', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488336', 'WJ12', 'ADAPTER AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 165, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488338', 'WJ12', 'ADAPTER AS-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488346', 'WJ12', 'ADAPTER AS-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488356', 'WJ12', 'ADAPTER AS-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 8, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488368', 'WJ12', 'ADAPTER AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 96, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488369', 'WJ12', 'ADAPTER AS ELBOW 90 DEG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488378', 'WJ12', 'ADAPTER AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488424', 'WJ12', 'TEE AS.-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488434', 'WJ12', 'ADAPTER AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1488435', 'WJ12', 'ADAPTER AS-TEE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1489359', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1494132', 'WJ12', 'CYL GP-AIR (BSC)', 'DANFOSS POWER SOLUTIONS II LLC', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1501285', 'WJ12', 'PLUG-BREATHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1503065', 'WJ12', 'ADAPTER AS-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1505005/S', 'WJ12', 'HOSE AS.', 'CAT FLUID SYS XUZHOU', 'MRP', 1, 1, 'ASRS', 'Y', 730, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1507244', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1508006', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1509492', 'WJ12', 'VALVE GP-P RLF', 'PONAR WADOWICE S A', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1526745', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1528385', 'WJ12', 'VALVE GP-SOL', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1535276/HE', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1536976', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1537067', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 90, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1537549', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 93, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1537550', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1537551', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 32, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1537553', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1539989', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1540185', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1541580', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 3, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1552251', 'WJ12', 'PLATE', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1552267', 'WJ12', 'PLUG AS-CONN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1552269', 'WJ12', 'PLUG AS-CONN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1552272', 'WJ12', 'PLUG AS-CONN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1566175', 'WJ12', 'CLIP-LADDER', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1598968', 'WJ12', 'VALVE GP-CHECK-E', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1604409/HE', 'WJ12', 'ORIFICE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1607440', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1607578', 'WJ12', 'BODY-LOAD PISTON', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1608758', 'WJ12', 'BOLT-SOCKET HEAD', 'JIANGSU NINGXIN AUTO PART CO.,LTD', 'MRP', 2, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1612684', 'WJ12', 'SCREW', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 105, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1612685', 'WJ12', 'BOLT-SHOULDER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1612829', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1620095', 'WJ12', 'MANIFOLD', 'MARION TOOL & DIE', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1625354', 'WJ12', 'BODY', 'JIANGSU HENGLI HYDRAULIC CO.,LTD', 'MRP', 1, 216, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1635671', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1640938', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1646174', 'WJ12', 'ROD', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1647129', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1647677', 'WJ12', 'ROD', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1647678', 'WJ12', 'ROD', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1649869', 'WJ12', 'ADAPTER AS-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1654931', 'WJ12', 'ADAPTER AS-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1667220', 'WJ12', 'ROD', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1674019', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1681968', 'WJ12', 'ADAPTER AS-TEE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1704001', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1710037/HE', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 168, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1715461', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1715462', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1717978', 'WJ12', 'PLUG-ORIFICE', 'CASEY PRODUCTS, INC.', 'MRP', 6, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1726236', 'WJ12', 'RETAINER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 3, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1726240', 'WJ12', 'COVER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1730511', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1730512', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1730514', 'WJ12', 'COVER', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1730515', 'WJ12', 'FLANGE-SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1734012', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1744321', 'WJ12', 'SPOOL-CONTROL', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 216, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1749194', 'WJ12', 'BOLT-HEX FLG HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1750453', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 96, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1757895', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 210, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1757896', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1760258', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1761661', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1761662', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 4, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1771405', 'WJ12', 'SPRING-STABLIZIN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1773868', 'WJ12', 'VALVE-CHECK', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1808722', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1809604', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1809935', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1837027', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1857708', 'WJ12', 'VALVE GP-RELIEF', 'HUSCO INTERNATIONAL, INC.', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1857712', 'WJ12', 'VALVE GP-RELIEF', 'HUSCO INTERNATIONAL, INC.', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1860905', 'WJ12', 'VALVE GP-P RLF-A', 'HUSCO INTERNATIONAL, INC.', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1860908', 'WJ12', 'VALVE GP-P RLF-', 'HUSCO INTERNATIONAL, INC.', 'MRP', 3, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1860913', 'WJ12', 'VALVE GP-P RLF-', 'HUSCO INTERNATIONAL, INC.', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1861526', 'WJ12', 'VALVE GP-SOL', 'TUSON JIAXING CORPORATION', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1879630', 'WJ12', 'SEAL-O-RING', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 300, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1883365', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1883475', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1883476', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1899263', 'WJ12', 'TUBE AS', 'JIANGSU YAOKUN HYDRAULIC CO.,LTD', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1899807', 'WJ12', 'SPRING-FEEDBACK', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1919247', 'WJ12', 'WASHER-SOFT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1920895', 'WJ12', 'VALVE GP-RELIEF', 'PONAR WADOWICE S A', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1931665', 'WJ12', 'VALVE GP-REDC -A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1934430', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1935463', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1947072', 'WJ12', 'VALVE GP-CHECK-E', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1952150', 'WJ12', 'SENSOR AS-TEMP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1954407', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1973295', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1982914', 'WJ12', 'NUT-HEXAGON', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1A8096', 'WJ12', 'SPRING-VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1D4566', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1F8359', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1F8419', 'WJ12', 'WASHER-VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1H0337', 'WJ12', 'VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 315, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1H1023', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1H9696', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 225, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1J5799', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1J8476', 'WJ12', 'COVER', 'NANJING CHENGUANG GROUP CO LTD', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1J8497', 'WJ12', 'VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1J8960', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1J9671', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1K4066', 'WJ12', 'SPRING-COMP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1L3162', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1N5999', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P1428', 'WJ12', 'PLUG-SEALING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P1669', 'WJ12', 'PLUG-SEALING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3702', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 400, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3703', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3704', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3705', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3706', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3707', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3708', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P3709', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4576', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4577', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4578', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4579', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4582', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 36, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P4584', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P5760', 'WJ12', 'FLANGE-HALF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P5766', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P5767', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 27, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P6744', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 15, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1P7406', 'WJ12', 'EYE BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S1476', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S1636', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S1638', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S2176', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S3725', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S3730', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S5567', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S5646', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1S6250', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1T0284', 'WJ12', 'BOLT-HEX SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1T0689', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1T0936', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1T1068', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U0322', 'WJ12', 'BEARING-SLEEVE', 'FUJIAN LONGXI BEARING (GROUP)', 'MRP', 4, 1680, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U0470', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U0471', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U1577', 'WJ12', 'PLUG', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U1578', 'WJ12', 'VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U1968', 'WJ12', 'RING-RETAINING', 'PROSPECT FASTENER CORP.', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U2643', 'WJ12', 'BODY', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1U3142', 'WJ12', 'BOOT', 'NANJING STAR RUBBER & PLASTIC', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1W9860', 'WJ12', 'SPRING-COMPRESS', 'MW INDUSTRIES, INC MATTHEW-WARREN S', 'MRP', 2, 83, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2011145', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2011146', 'WJ12', 'VALVE GP-P RLF', 'PONAR WADOWICE S A', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2011148', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2011149', 'WJ12', 'VALVE GP-P RLF', 'PONAR WADOWICE S A', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2040814', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2042124', 'WJ12', 'VALVE GP-CONT', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2048000', 'WJ12', 'MOUNT-TIE WRAP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2071617', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2071621', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2077434', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2080805', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2085498', 'WJ12', 'SEAL AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2098296', 'WJ12', 'BOLT', 'SHANGHAI AUTOCRAFT CO.,LTD.', 'MRP', 6, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2119695', 'WJ12', 'ADAPTER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2132227', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2136662', 'WJ12', 'HARNESS AS.', 'SK EXPRESS, INC.', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2147567', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2147568', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2152828', 'WJ12', 'TUBE AS.', 'MORTON INDUSTRIES, LLC', 'MRP', 1, 7, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2153379', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2153708', 'WJ12', 'BRACKET', 'PRINCE INDUSTRIES, LLC', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2155526', 'WJ12', 'PLATE AS.', 'PRINCE INDUSTRIES, LLC', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2169512', 'WJ12', 'VALVE GP-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2172573', 'WJ12', 'TUBE AS', 'JIANGSU YAOKUN HYDRAULIC CO.,LTD', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2176414', 'WJ12', 'SPOOL-CONTROL', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 216, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2177134', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2177195', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2187316', 'WJ12', 'PLATE', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 10, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2191891', 'WJ12', 'PLUG AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 150, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2191893', 'WJ12', 'PLUG AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2213676', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2213678', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2213679', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2213680', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2215311', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2224741', 'WJ12', 'VALVE GP-SOL', 'FEMA CORPORATION', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2227774', 'WJ12', 'VALVE GP', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2231088', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2232204', 'WJ12', 'CAP 13/16-16 THD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2234897', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2254804/HE', 'WJ12', 'PLUG-HEX. SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2256948', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2260267', 'WJ12', 'BOOT', 'NANJING STAR RUBBER & PLASTIC', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2271189', 'WJ12', 'SCREEN - PILOT', 'BOSCH REXROTH DSI', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2283101', 'WJ12', 'BRACKET', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 10, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2283102', 'WJ12', 'BRACKET', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2283103', 'WJ12', 'BRACKET', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2283104', 'WJ12', 'BRACKET', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2287096', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 210, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2299955', 'WJ12', 'STEM-ANGLE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2304011', 'WJ12', 'PLUG AS-CONN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 162, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2304013', 'WJ12', 'PLUG AS-CONN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2305010', 'WJ12', 'PLUG AS-CONN', 'DEUTSCH CONNECTORS TRADING', 'MRP', 1, 396, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2324113/HE', 'WJ12', 'RING-BACK UP', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 6, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2343043', 'WJ12', 'COVER (METRIC)', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 8, 12, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2343451', 'WJ12', 'COVER (METRIC)', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 6, 12, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2343453', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2344845', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2344846', 'WJ12', 'SPOOL-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2344851', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 73, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2344869', 'WJ12', 'VALVE GP-MAKE UP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2344870', 'WJ12', 'PLUG - SHUT-OFF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2352475', 'WJ12', 'SEAL-RECTANGULAR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2354162', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2369832', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2378021', 'WJ12', 'COVER', 'SUZHOU METAL ONE STEEL PLATES', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2381795', 'WJ12', 'STUD-STRAIGHT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2381796', 'WJ12', 'STUD-STRAIGHT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2385078', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2385080', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2400, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2385082', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2401863', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2404695', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2404696', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2427954', 'WJ12', 'HOUSING AS', 'TUSON JIAXING CORPORATION', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2427955', 'WJ12', 'HOUSING AS', 'TUSON JIAXING CORPORATION', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2437115', 'WJ12', 'BOLT-HEX SOCKET', 'CASEY PRODUCTS, INC.', 'MRP', 2, 321, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2446625', 'WJ12', 'ADAPTER-CROSS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2458472/X', 'WJ12', 'PLUG-EXPANSION', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2465773', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2465774', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2474579', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 96, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2507531', 'WJ12', 'PLUG-RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2507662', 'WJ12', 'VALVE GP-P CHK', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 200, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2518330', 'WJ12', 'VALVE GP-RLF B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2521631', 'WJ12', 'PLUG AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2551197', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2555594/HE', 'WJ12', 'SEAL-O-RING', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 2, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2558581', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2558582', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2564552', 'WJ12', 'PLUG - SHUT-OFF', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2567280', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 7, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2577440', 'WJ12', 'PLUG AS', 'FLUID LINE PRODUCTS, INC.', 'MRP', 2, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2587334', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2597513/HE', 'WJ12', 'SPRING-CHK VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2603053', 'WJ12', 'HOUSING - SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2603055', 'WJ12', 'HOUSING - SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2603058', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2606734', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2606735', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2606736', 'WJ12', 'STEM-VALVE (AUX)', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2606737', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2606738', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2608590', 'WJ12', 'VALVE GP-SHTL -B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 80, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2610157', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2610158', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2610159', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2612791', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2613677', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2613679', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2639657', 'WJ12', 'VALVE GP-RLF A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2660531', 'WJ12', 'CAP-CONNECTOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2690858', 'WJ12', 'VALVE GP-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2699400', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2707647', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2722334', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2732153', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2755797', 'WJ12', 'PLATE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2760748', 'WJ12', 'CAP-PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2778863', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2787596', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2787602', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 9, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2787603', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2787604', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2787606', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2788966', 'WJ12', 'BOLT-HEX SOCKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2800426', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2808912', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2818804', 'WJ12', 'PLUG AS-CONN', 'HANGZHOU DONGCHENG AUTO ELECTRONICS', 'MRP', 2, 50, 'ASRS', 'Y', 7300, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2828827', 'WJ12', 'PLUG-EXPANSION', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2833462', 'WJ12', 'SCREEN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2841010', 'WJ12', 'Spring', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2841011', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2841017', 'WJ12', 'RETAINER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 4, 120, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2841018', 'WJ12', 'RETAINER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 4, 240, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2855628', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 10, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884038', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884040', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884042', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884052', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884056', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2884059', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2890782', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2906004', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2906006', 'WJ12', 'PATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2906039', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2906044', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2906046', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2913786', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2913787', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2913788', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2918148', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2924792', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2924793', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2928061', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2935263', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 175, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2937639', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2945272', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2947687', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2950993', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2965270', 'WJ12', 'SENSOR GP-PRESS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2965987', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2965988', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2970483/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2971615', 'WJ12', 'VALVE GP-REDC -A', 'PRINCE INDUSTRIES INC.', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2976291', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2982414', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2984763', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2984765', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2984767', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2B2695', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2D0094', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 250, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2D0598', 'WJ12', 'SEAL O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2D6392', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2D6642', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2D6648', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2H3927', 'WJ12', 'SEAL O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2J2668', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 75, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2J2866', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2J5608', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2K8199', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 850, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2K9111', 'WJ12', 'PIN SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2L1699', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2L9056', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2M9780', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2N7029', 'WJ12', 'SPRING-CONT PIN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2P4539', 'WJ12', 'SPOOL-RELIEF', '#NO SOURCE', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2P5755', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2P8421', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2R1256', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S0675', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S1382', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S1385', 'WJ12', 'SPOOL-RELIEF', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 45, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S2596', 'WJ12', 'SPRING', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 5, 5000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S4078', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 450, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S4663', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2S6538', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('2Y2347', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 20, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3023809', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3023813', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3041142', 'WJ12', 'VALVE GP-SOL', 'KAWASAKI HEAVY INDUSTRIES, LTD', 'MRP', 1, 14, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3045114', 'WJ12', 'SLEEVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3045146', 'WJ12', 'VALVE GP', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 3, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3054563', 'WJ12', 'VALVEGP-SHTL-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093911', 'WJ12', 'SLEEVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 128, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093916', 'WJ12', 'COMPENSATOR', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093917', 'WJ12', 'BOLT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093918', 'WJ12', 'RETAINER-STOP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 31, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093919', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093921', 'WJ12', 'SPRING-INSIDE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3093922', 'WJ12', 'SPRING-OUTSIDE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100180', 'WJ12', 'PLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100190', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100191', 'WJ12', 'PLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100192', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100203/HE', 'WJ12', 'VALVE GP-SOL -A', 'KAWASAKI HEAVY INDUSTRIES, LTD', 'MRP', 3, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3100261/HE', 'WJ12', 'ADAPTER-MAIN RLF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3112864', 'WJ12', 'KIT-SEAL', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3112866', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3112886', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3112888', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3120312', 'WJ12', 'CAP-CONNECTOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3128629', 'WJ12', 'COIL AS', 'DONGGUAN PANTAI ELECTRONIC CO., LTD', 'MRP', 1, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3133966', 'WJ12', 'VALVEGP-SHUTTLE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 40, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3161438', 'WJ12', 'CARTRIDGE AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3175154', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3188833', 'WJ12', 'VALVE GP-CHECK', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3203064', 'WJ12', 'SENSOR GP-PRESS', 'Sensata Technologies(Changzhou) Ltd', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3208751', 'WJ12', 'GASKET', 'DANA SEALING MANUFACTURING, LLC', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3209706', 'WJ12', 'PLUG-ORIFICE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 480, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3231219', 'WJ12', 'COVER', 'IMPRO INDUSTRIES (YIXING) CO LTD', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3231245', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 14, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3232246', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3235819', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3235821', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3235823', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3237761', 'WJ12', 'RING-BACKUP', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 4, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3237773/HE', 'WJ12', 'FILTER', 'MURATA CORPORATION', 'MRP', 1, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3243495', 'WJ12', 'MANIFOLD', 'CHINA SOURCE COMPONENTS TRADING', 'MRP', 1, 128, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3250380', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3262664', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3265212', 'WJ12', 'COIL AS', 'DONGGUAN PANTAI ELECTRONIC CO., LTD', 'MRP', 3, 24, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3267674', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3267679', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3267680', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3275268', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3278527', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 20, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3280730', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 3, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3284314', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3288940', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3293356', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3294603', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3307743', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3307751', 'WJ12', 'PLUG-PIPE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3309801', 'WJ12', 'VALVE GP-RELIEF', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3321985', 'WJ12', 'VALVE GP-D RLF-A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3321986', 'WJ12', 'VALVE GP-D RLF-A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3321987', 'WJ12', 'VALVE GP-D RLF-A', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3328826', 'WJ12', 'HOUSING AS', 'TUSON JIAXING CORPORATION', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3331701', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3338242', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3340870', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3341673', 'WJ12', 'BOLT-HEX SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3344979/HR', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3351074', 'WJ12', 'VALVE GP-PRESS-B', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3358273', 'WJ12', 'ADAPTER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3365724', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3385494', 'WJ12', 'RETAINER', 'YANTAI DONGXING GROUP CO., LTD', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3385495', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3398884', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3402789', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3405470', 'WJ12', 'LEVER AS. (RH)', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3405471', 'WJ12', 'LEVER AS. (LH)', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3405472', 'WJ12', 'LEVER AS. (LH)', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3410825', 'WJ12', 'PROBEAS-SPOOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 42, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3418323', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3419000', 'WJ12', 'VALVE GP-SHUTOFF', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3428997', 'WJ12', 'VALVE GP-D RLF-A', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3438385', 'WJ12', 'VALVE GP-P RLF-A', 'HUSCO INTERNATIONAL, INC.', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3438386', 'WJ12', 'VALVE GP-P RLF-A', 'HUSCO INTERNATIONAL, INC.', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3443549', 'WJ12', 'ORIFICE', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 2, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3446498', 'WJ12', 'TUBE AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3446499', 'WJ12', 'TUBE AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 1, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3447390', 'WJ12', 'SENSOR GP-PRESSURE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3447392', 'WJ12', 'SENSOR GP-PRESS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3450357', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3460474', 'WJ12', 'VALVE GP-D RLF-B', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3460475', 'WJ12', 'VALVE GP-D RLF-B', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3461626', 'WJ12', 'SPRING', 'MID-WEST SPRING AND STAMPING, INC.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3461628', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 45, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3461634', 'WJ12', 'BOLT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3461635', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3461636', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467576', 'WJ12', 'WASHER', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 71, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467587', 'WJ12', 'ADAPTER-RELIEF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467591', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467598', 'WJ12', 'BLOCK', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467601', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467602', 'WJ12', 'PLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467603', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467606', 'WJ12', 'STEM-BYPASS', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467608', 'WJ12', 'FLANGE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467616', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467618', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3467619', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3470859', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3487104', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 54, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3490671', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3497104', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3497431', 'WJ12', 'HOUSING-SENSOR', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3502763', 'WJ12', 'RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3503145', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3512840', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3522734', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3523045', 'WJ12', 'BOLT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3523046', 'WJ12', 'BOLT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3523047', 'WJ12', 'BOLT', 'JINAN ZHONGCHUAN EQUIPMENT CO., LTD', 'MRP', 2, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3523048', 'WJ12', 'KIT-SEAL', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 3, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3523968', 'WJ12', 'CLIP-LADDER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3527057/HE', 'WJ12', 'SPRING-RETURN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3527058/HE', 'WJ12', 'SPRING-RETURN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3527228/HE', 'WJ12', 'VALVEGP-PRLF', 'NISHINA INDUSTRIAL CO.,LTD.', 'MRP', 1, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3529954', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3529955', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3529956', 'WJ12', 'RETAINER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3539455', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3568547', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3568548', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3568561', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3570908', 'WJ12', 'HARNESS AS', 'CVG MEXICO', 'MRP', 1, 7, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3576292', 'WJ12', 'RING-BACKUP', 'SPAULDING COMPOSITES (QINGDAO) CO.,', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3594661', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603678', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603679', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603681', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603684', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603685', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603688', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603689', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603690', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603691', 'WJ12', 'PLUG-HD STOR', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603692', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603693', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603694', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603695', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603696', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 46, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603697', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3603698', 'WJ12', 'PLUG-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612414', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612422', 'WJ12', 'SLEEVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612426', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612427', 'WJ12', 'BLOCK-LIMITER', 'TUSON JIAXING CORPORATION', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612429', 'WJ12', 'VALVE GP-PRESS', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3612432', 'WJ12', 'VALVE GP-FCONT-A', 'TUSON JIAXING CORPORATION', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3613549', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3617213', 'WJ12', 'Cartridge As', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 96, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623212', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623330', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623331', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623332', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623333', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3623336', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3631610', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3631613', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3632687', 'WJ12', 'HOUSING', 'JIANGSU HENGLI HYDRAULIC CO.,LTD', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3632692', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3632697', 'WJ12', 'RETAINER', 'TUSON DONGGUAN CORPORATION', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3632698', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3640658', 'WJ12', 'STEM - VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3642634', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 76, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3660374', 'WJ12', 'COVER', 'SUZHOU METAL ONE STEEL PLATES', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3660375', 'WJ12', 'GASKET', 'UCHIYAMA MANUFACTURING CORP.', 'MRP', 3, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3661342', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3661344', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3661347', 'WJ12', 'LATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3664694', 'WJ12', 'PLUG AS-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3664972', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3673012', 'WJ12', 'VALVE GP-CHECK-E', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3675511', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3675512', 'WJ12', 'SEAT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 1600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3676001', 'WJ12', 'PLUG AS-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 160, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3676002', 'WJ12', 'PLUG AS-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 600, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3676003', 'WJ12', 'PLUG AS-HD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3679497', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3685096', 'WJ12', 'TUBE AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3694110', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698353/HE', 'WJ12', 'COVER-PROTECTION', 'SUZHOU FENGSHI METAL TECHNOLOGY', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698357/HE', 'WJ12', 'GASKET-PROTN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698485/HE', 'WJ12', 'PLUG-PIN', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698486/HE', 'WJ12', 'GUIDE-VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698487/HE', 'WJ12', 'COVER-PROTECTION', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698488/HE', 'WJ12', 'GASKET-PROTN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698489/HE', 'WJ12', 'COVER-PROTECTION', 'CHUZHOU HONCH MACHINERY', 'MRP', 1, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698490/HE', 'WJ12', 'GASKET-PROTN', '#NO SOURCE', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698492/HE', 'WJ12', 'COVER-VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698493/HE', 'WJ12', 'GUIDE-SEAT', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698494/HE', 'WJ12', 'SEAT-VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698495/HE', 'WJ12', 'BOLT', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698496/HE', 'WJ12', 'SPRING-RETURN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698497/HE', 'WJ12', 'GUIDE-STOPPER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 105, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698498/HE', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698499/HE', 'WJ12', 'SPRING-RETURN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3698500/HE', 'WJ12', 'GUIDE-STOPPER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 105, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3699151', 'WJ12', 'PLUG-PTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3699449', 'WJ12', 'VALVE GP-SHTL -B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701234', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701236', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701238', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701246', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701248', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701250', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701252', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701254', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701256', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701258', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701260', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701263', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701264', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3701289', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3705764', 'WJ12', 'VALVE GP-D RLF-C', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 16, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3706345', 'WJ12', 'ORIFICE AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3706346', 'WJ12', 'ORIFICE AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3706916', 'WJ12', 'HOUSING AS', 'TUSON JIAXING CORPORATION', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3706923', 'WJ12', 'VALVE GP-CHECK-D', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3706936', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3708160', 'WJ12', 'PLUG', 'GENERAL PLUG AND MANUFACTURING CO (', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3711784', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3714753', 'WJ12', 'MANIFOLD', 'YANTAI SHUANGCHENG MACHINERY CO., L', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3717958', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3734539', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3734540', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3739483', 'WJ12', 'VALVE GP-RLF -A', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3741478', 'WJ12', 'SPOOL-COMP', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 70, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3753788', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3753789', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3757263', 'WJ12', 'VALVE GP-D RLF-B', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3760630', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3760631', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3761241', 'WJ12', 'VALVE GP', 'TUSON JIAXING CORPORATION', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3772231', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3772891', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 3, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3773685', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3773687', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3788543', 'WJ12', 'PLUG', 'TUSON JIAXING CORPORATION', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789422', 'WJ12', 'STEM-PC', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789423', 'WJ12', 'STEM-CT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789424', 'WJ12', 'STEM-CT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789425', 'WJ12', 'STEM-PC', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789426', 'WJ12', 'STEM-CT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789427', 'WJ12', 'STEM-CT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3789436', 'WJ12', 'PIN', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 432, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3791097', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3792243', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3804768', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3811849', 'WJ12', 'PIN', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 252, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3847474', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3848758', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3850021', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3855641', 'WJ12', 'VALVE GP-P RLF-B', 'HUSCO INTERNATIONAL, INC.', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3884493', 'WJ12', 'VALVE GP-CHECK', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 160, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3885295', 'WJ12', 'HOUSING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3886987', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3930084', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3939140', 'WJ12', 'STEM-EJECTOR', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3939142', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3939143', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3939144', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3948568', 'WJ12', 'PLUG-RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3964852', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3965678', 'WJ12', 'VALVE GP-P RLF-A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3966619', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3966622', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3979397', 'WJ12', 'VALVE GP-SOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 15, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3995792', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3B4506', 'WJ12', 'LOCKWASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3C8388/S', 'WJ12', 'PIN-ROLL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3D2824', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3D4603', 'WJ12', 'PLUG-PIPE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3D8908', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3E3882', 'WJ12', 'EYEBOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3E4352', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3E6730', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3E6771', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3E8575', 'WJ12', 'VALVE GP SOL', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G2683', 'WJ12', 'PLUG-CHECK VALVE', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G3126', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 52, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G4113', 'WJ12', 'COVER', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G4114', 'WJ12', 'COVER', 'WUXI XIONGLIAN MACHINE MAKING', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G4117', 'WJ12', 'COVER', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 1360, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G4135', 'WJ12', 'PLUG-CAVITY', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G5003', 'WJ12', 'BEARING-SLEEVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 28, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G5209', 'WJ12', 'ORIFICE', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 1, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3G8991', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3H5523', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J1907', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 2700, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J3712', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 32, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J5553', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J5554', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 160, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J6933', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J6956', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J7354', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1200, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J7694', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3J9015', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3K0360', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 3000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3K6113', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3L3813', 'WJ12', 'PIN', 'SUZHOU CASEY PRODUCTS CO.,LTD', 'MRP', 2, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3P1979', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 71, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3P9498', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3S9233', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3T8236', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3T9560', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('3T9836', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4168195', 'WJ12', 'VALVEGP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4168724', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4180160', 'WJ12', 'STEM-BOWL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4214352', 'WJ12', 'STEM-STEERING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4214353', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 23, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4224594', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4230466', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4231786', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 540, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4231787', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4237715', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4238380', 'WJ12', 'ROD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4308983', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 70, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4315624/HE', 'WJ12', 'FILM-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4342475', 'WJ12', 'VALVE GP-D RLF-A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4350326', 'WJ12', 'VALVE GP-D RLF-A', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4350332', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4363447', 'WJ12', 'HOUSING', 'TUSON JIAXING CORPORATION', 'MRP', 1, 14, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4363448', 'WJ12', 'HOUSING', 'TUSON JIAXING CORPORATION', 'MRP', 1, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4363449', 'WJ12', 'HOUSING', 'TUSON JIAXING CORPORATION', 'MRP', 1, 14, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4386138', 'WJ12', 'RETAINER', 'IMPRO (CHINA) LIMITED', 'MRP', 2, 80, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4389359', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 70, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4394146/HE', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4404715', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4415947', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4419221', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4441762', 'WJ12', 'PLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4447322', 'WJ12', 'TUBE AS', 'JIANGSU YAOKUN HYDRAULIC CO.,LTD', 'MRP', 2, 16, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4456109', 'WJ12', 'VALVE GP-P CHK', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 16, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4460768', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4475613', 'WJ12', 'SEAL-LIP TYPE', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 1, 1000, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4475614', 'WJ12', 'SEAL-LIP TYPE', 'SHANGHAI KURIYAMA TRADING,', 'MRP', 2, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4485704/HE', 'WJ12', 'VALVE GP-P RLF-A', 'HUSCO INTERNATIONAL, INC.', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4512183/HE', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4516572', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4516575', 'WJ12', 'COVER', 'NANJING CHENGUANG GROUP CO LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4519131', 'WJ12', 'PLUG-RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4533451/HE', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4535972', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4540936', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4555822', 'WJ12', 'VALVE GP-RLF -A', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4563792', 'WJ12', 'VALVE GP-P RLF-A', 'HUSCO INTERNATIONAL, INC.', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4564624', 'WJ12', 'VALVE GP-D RLF-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4564626', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4564627', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4564633', 'WJ12', 'VALVE GP-D RLF-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4571138', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4572451', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4579878', 'WJ12', 'VALVE GP-SOL', 'KAWASAKI HEAVY INDUSTRIES, LTD', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4612544', 'WJ12', 'SENSOR AS-SPOOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4644067', 'WJ12', 'VALVE GP-CHECK-D', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4674761', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4674762', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4674763', 'WJ12', 'STEM-RIPPER LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4674764', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4678042', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681129', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681130', 'WJ12', 'STEM-RIPPER TIP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681131', 'WJ12', 'STEM-RIPPER LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681133', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681134', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 17, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681135', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 14, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681136', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681137', 'WJ12', 'VALVE', '#NO SOURCE', 'MRP', 1, 56, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681138', 'WJ12', 'PLUG-RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681139', 'WJ12', 'PLUG-RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681141', 'WJ12', 'RETAINER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681142', 'WJ12', 'RETAINER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 6, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681143', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681144', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681145', 'WJ12', 'BOLT-FLAT', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681339', 'WJ12', 'HOUSING', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4681340', 'WJ12', 'HOUSING', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4689932', 'WJ12', 'MANIFOLD GP-CONT', 'THOMAS MAGNETE GMBH', 'MRP', 2, 10, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4710143', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4710158', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4717412', 'WJ12', 'STOP', 'TUSON JIAXING CORPORATION', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4735263', 'WJ12', 'STUD-STR THREAD', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4735264', 'WJ12', 'BOLT', 'JIANGSU NINGXIN AUTO PART CO.,LTD', 'MRP', 1, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4738146', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4755303', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4761915', 'WJ12', 'RETAINER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4762873', 'WJ12', 'VALVE GP-D RLF', 'PONAR WADOWICE S A', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4770241', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4770242', 'WJ12', 'COVER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4802136/HE', 'WJ12', 'COLLAR', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 480, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4805267', 'WJ12', 'CLIP-LIFT', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4812466', 'WJ12', 'STEM-RIPPER TIP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4812471', 'WJ12', 'VALVE GP-CHECK', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 38, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4812473', 'WJ12', 'VALVE GP-RELIEF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 38, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4812476', 'WJ12', 'VALVE GP-RELIEF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 38, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4823555', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4829841', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4832253', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4841390', 'WJ12', 'PLUG AS', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4849880', 'WJ12', 'SENSOR GP', 'Sensata Technologies(Changzhou) Ltd', 'MRP', 1, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4875881/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4882889', 'WJ12', 'VALVE GP-PRESS-B', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4888380/HE', 'WJ12', 'VALVE GP-P RLF', 'NISHINA INDUSTRIAL CO.,LTD.', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4908810', 'WJ12', 'HOUSING', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 6, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4908811', 'WJ12', 'HOUSING', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 6, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4913418/HE', 'WJ12', 'COVER-VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 480, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4914176/HE', 'WJ12', 'RING-BACKUP', 'NISHINA INDUSTRIAL CO.,LTD.', 'MRP', 1, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4914700', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4914701', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4917696/HE', 'WJ12', 'COVER-PILOT', 'TUSON JIAXING CORPORATION', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4925637', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4932479', 'WJ12', 'SENSOR AS-SPOOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 4, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4932480', 'WJ12', 'PROBE AS-SPOOL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4933160', 'WJ12', 'HOUSING', 'TUSON JIAXING CORPORATION', 'MRP', 4, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4933161', 'WJ12', 'STEM-STEERING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4938503', 'WJ12', 'VALVE GP-RLF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4948090', 'WJ12', 'RETAINER', 'YANTAI DONGXING DAEHAN POWDER METAL', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4948093', 'WJ12', 'HOUSING', 'CHINA SOURCE COMPONENTS TRADING', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4951569', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 7, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4954349', 'WJ12', 'SPRING', 'PETERSON SPRING COMPANY', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4955300', 'WJ12', 'VALVE GP-D RLF-C', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4955301', 'WJ12', 'VALVE GP-D RLF-C', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4955302', 'WJ12', 'VALVE GP-D RLF-C', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4955303', 'WJ12', 'VALVE GP-D RLF-C', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4973504', 'WJ12', 'VALVE GP-P RLF-B', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 19, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4981612', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4982921', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4989726', 'WJ12', 'HOUSING-SPRING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4993693', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4993694', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4993695', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4993696', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4993698', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B4158', 'WJ12', 'SCREW-DRIVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B4278', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B4280', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B9782', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B9783', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4B9880', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4C8358', 'WJ12', 'EYEBOLT-METRIC5P7892', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4C8359', 'WJ12', 'EYEBOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D0514', 'WJ12', 'PLUG-PTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D1322', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D2886', 'WJ12', 'CLIP', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D3107', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D6433', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4D9986', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4F4097', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4F7952', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4H1349', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4H5232', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4H8380', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4I3510/HE', 'WJ12', 'SPRING', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 1, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4I3569/HE', 'WJ12', 'RING-BUCK UP', 'NISHIYAMA CORPORATION', 'MRP', 1, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4I6397/HE', 'WJ12', 'RING-BACK UP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 490, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0519', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0520', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 300, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0522', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 400, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0523', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0524', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0525', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0526', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0527', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J0528', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J2506', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 720, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J3832', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 17, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5267', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5268', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5309', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5351', 'WJ12', 'SEAL O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5406', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5477', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5000, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5573', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J5702', 'WJ12', 'COVER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J6806', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J7101', 'WJ12', 'SLEEVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J7315', 'WJ12', 'COVER', 'BRICKHAM STAMPING COMPANY INC', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J7316', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J7533', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1400, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J8174', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 350, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J8996', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J8997', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J8998', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J9535', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4J9780', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4K1388', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 600, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4K2039', 'WJ12', 'SEAL O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4K4986', 'WJ12', 'SEAL-O-RING', 'QINGDAO HILYWILL ADVANCED MATERIALS', 'MRP', 10, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4L7711', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4M1751', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4M2381', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4M6980', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4M8239', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4P7428', 'WJ12', 'CLIP-LADDER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T0327', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T0947', 'WJ12', 'VALVE GP-CHECK-D', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T0993', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T0998', 'WJ12', 'LEVER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 78, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1021', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1073', 'WJ12', 'ROD', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1108', 'WJ12', 'PLUG', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1649', 'WJ12', 'HOUSING', 'CHINA SOURCE COMPONENTS TRADING', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1701', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1849', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 2, 345, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1850', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1851', 'WJ12', 'RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1852', 'WJ12', 'RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1854', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1855', 'WJ12', 'DETENT', 'TUSON JIAXING CORPORATION', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1859', 'WJ12', 'ROD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1860', 'WJ12', 'VALVE GP-SHTL -B', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T1862', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T2691', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T2692', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 2, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T3148', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4162', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4206', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4207', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4209', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4511', 'WJ12', 'SLEEVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4628', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4631', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4659', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4932', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4933', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4934', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T4935', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5072', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5073', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5074', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5795', 'WJ12', 'BEARING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5896', 'WJ12', 'VALVE GP-CHECK-C', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 81, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5945', 'WJ12', 'RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T5967', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T6103', 'WJ12', 'VALVE GP-D RLF-', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T7581', 'WJ12', 'ALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T9311', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4T9312', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4Z5900', 'WJ12', 'VALVE GP-CHECK-D', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('4Z6376', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5010642', 'WJ12', 'VALVE GP-RLF -A', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5059696', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075972/HE', 'WJ12', 'PLUG-CV STOPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 240, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075973/HE', 'WJ12', 'COVER-CHECK V', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075974/HE', 'WJ12', 'SEAT-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075975/HE', 'WJ12', 'BODY-VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 64, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075976/HE', 'WJ12', 'ADJUSTER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 144, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075977/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075983/HE', 'WJ12', 'PLUG-STOPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075984/HE', 'WJ12', 'RETAINER-SPRING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075985/HE', 'WJ12', 'SPRING-RETURN', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 374, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075986/HE-44', 'WJ12', '5075986/HE&5373244/HE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 280, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075987/HE', 'WJ12', 'COVER-PISTON', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 160, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075988/HE', 'WJ12', 'BOLT-FLANGE HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 1435, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5075989/HE', 'WJ12', 'BOLT-FLANGE HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 3, 1100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5078901', 'WJ12', 'BOLT', 'TUSON JIAXING CORPORATION', 'MRP', 10, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5078902', 'WJ12', 'HOUSING', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5086203', 'WJ12', 'SLEEVE-ORIFICE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5087681', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5099491', 'WJ12', 'BODY', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5102188', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5102219', 'WJ12', 'VALVE GP-PRI', 'JIANGSU ERMA HYDRAULIC', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5105247', 'WJ12', 'HOUSING', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5106937', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5112163', 'WJ12', 'VALVE GP-RLF -A', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 41, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5112253', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5123289', 'WJ12', 'VALVE GP-PRESS-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 3, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5127785', 'WJ12', 'VALVE GP-RELIEF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 38, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5127787', 'WJ12', 'VALVE GP-D RLF-C', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 38, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5129465', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5129466', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5149364', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153361', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153362', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153364', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153367', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153368', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153369', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153370', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5153371', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5162017/HE', 'WJ12', 'SHIM', 'OPTIMAS (SUZHOU) TRADING CO. LTD', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5162018/HE', 'WJ12', 'SHIM', 'OPTIMAS (SUZHOU) TRADING CO. LTD', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5171078', 'WJ12', 'VALVE GP-P RLF-A', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5174401', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5177914/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 54, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181315/HE', 'WJ12', 'VALVE-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181317/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181324/HE', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 16, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181325/HE', 'WJ12', 'RETAINER-SPRING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181326/HE', 'WJ12', 'SPRING-RETURN', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 1, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181327/HE-14', 'WJ12', '5181327/HE&5313314/HE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181328/HE', 'WJ12', 'COVER-PISTON', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 240, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181329/HE', 'WJ12', 'SHIM', 'OPTIMAS (SUZHOU) TRADING CO. LTD', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181330/HE', 'WJ12', 'SHIM', 'OPTIMAS (SUZHOU) TRADING CO. LTD', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181331/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 1, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181332/HE', 'WJ12', 'PLUG-CV STOPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 240, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181333/HE', 'WJ12', 'COVER-CHECK V', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 240, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5181340/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5189370', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5189371', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5189372', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5194820', 'WJ12', 'VALVE GP-SEQ -C', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5195795', 'WJ12', 'STEM-STEERING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5200312', 'WJ12', 'VALVE GP-P CHK', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5203179/HE', 'WJ12', 'PLUG-ORIFICE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 192, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5215588', 'WJ12', 'VALVE GP-P RLF-B', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5215607', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5218454', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5218455', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5218459', 'WJ12', 'PLUG-SHUTOFF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5238830/HE', 'WJ12', 'COVER-VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5238831/HE', 'WJ12', 'SLEEVE', 'TUSON JIAXING CORPORATION', 'MRP', 3, 3, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5238832/HE', 'WJ12', 'VALVE-CHECK', 'TUSON JIAXING CORPORATION', 'MRP', 2, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5238835/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5241515', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5244781', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5261837', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 96, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5334159', 'WJ12', 'BOLT AS', 'JIANGSU NINGXIN AUTO PART CO.,LTD', 'MRP', 2, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5337922/HO', 'WJ12', 'PLATE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 27, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5358581', 'WJ12', 'VALVE GP-RELIEF', 'TUSON JIAXING CORPORATION', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5385736', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5399412', 'WJ12', 'HARNESS AS', 'POLE STAR ELECTRIC DALIAN CO., LTD.', 'MRP', 1, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5413277/HE', 'WJ12', 'FILM-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5421918', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5421919', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5426074', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5426076', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5481611', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5496515/HE', 'WJ12', 'SPRING-RETURN', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5498842', 'WJ12', 'PLUG', 'FUKOKU (SHANGHAI) CO., LTD', 'MRP', 1, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5514844', 'WJ12', 'VALVE GP-D RLF-A', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5536203/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5536204/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5536205/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5537512', 'WJ12', 'Valve GP-P RLF-B', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 38, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5542333/HE', 'WJ12', 'CAP-PROTECTION', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 1, 1170, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5554235', 'WJ12', 'PLATE', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5563719', 'WJ12', 'Plate-lock', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5567825', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5573858/HE', 'WJ12', 'VALVE-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 90, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5573859/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 480, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5573860/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5583470/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5585141', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5585142', 'WJ12', 'SLEEVE-ORIFICE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5601780/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5601781/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5601782/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5611791/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 54, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5615574', 'WJ12', 'SEAL-INTEGRAL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5619043/HE', 'WJ12', 'GASKET-PROTN', 'UCHIYAMA MANUFACTURING CORP.', 'MRP', 1, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5654631/HE', 'WJ12', 'VALVE-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 770, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5654632/HE', 'WJ12', 'SPRING-CHECK V', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5655466/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5655467/HE', 'WJ12', 'COVER-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 1, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5666473/HE', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5668577', 'WJ12', 'VALVE GP-RELIEF', '#NO SOURCE', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5668578', 'WJ12', 'VALVE GP-RELIEF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5668584', 'WJ12', 'VALVE GP-RELIEF', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-12', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-37', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-41', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-54', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-57', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-58', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-6', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-67', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-75', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-77', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5674312/HE-90', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5677649', 'WJ12', 'MANIFOLD', 'LIYANG LIANHUA MACHINERY MANUFACTUR', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5688476', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5702554', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5702568', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5741229', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 3, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5757825', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5757826', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5757827', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5772155/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5772158/HE', 'WJ12', 'STEM GP-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5774360', 'WJ12', 'VALVE GP-CHECK', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 26, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5782429', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5782432', 'WJ12', 'VALVE GP-P RLF-B', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 2, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5786301', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5796930', 'WJ12', 'FILM-PROTECTION', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5802572/HE', 'WJ12', 'COVER-PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5802573/HE', 'WJ12', 'COVER-PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5804141', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5804142', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5805850', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806445', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806446', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806447', 'WJ12', 'STEM-RIPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806448', 'WJ12', 'STEM-RIPPER TIP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806451', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5806452', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5809118', 'WJ12', 'BRACKET AS', 'SUZHOU METAL ONE STEEL PLATES', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5850308', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5850311', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5850312', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5850314', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5850315', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5853921', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5862152', 'WJ12', 'FILM-PROTECTION', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 2, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5872367', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5872368', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5872371', 'WJ12', 'PLUG-RETAINER', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5872373', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5885519', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5887920', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5890399', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5890407', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5892751', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5914610', 'WJ12', 'BRACKET AS', 'SUZHOU METAL ONE STEEL PLATES', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5931671/HE', 'WJ12', 'VALVE-CHECK', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5931672/HE', 'WJ12', 'SLEEVE-CHECK V', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5931673/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5942736/HE', 'WJ12', 'VALVE-CHECK', 'TUSON JIAXING CORPORATION', 'MRP', 2, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5942737/HE', 'WJ12', 'SLEEVE-CHECK V', 'TUSON JIAXING CORPORATION', 'MRP', 2, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5942738/HE', 'WJ12', 'SPRING-CHECK V', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5956711', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5969317', 'WJ12', 'VALVE GP-SOL', 'HYDRAFORCE HYDRAULIC SYSTEMS', 'MRP', 1, 200, 'ASRS', 'Y', 7300, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5973482', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 45, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5973483', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5979075', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5979084', 'WJ12', 'VALVE GP-P RLF-B', 'BOSCH REXROTH OIL CONTROL SPA', 'MRP', 1, 19, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5981605', 'WJ12', 'VALVE GP-SOL', 'THOMAS MAGNETE GMBH', 'MRP', 2, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5988728', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5988729', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5A3604', 'WJ12', 'BOLT-HEX SOCKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 720, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5B3180', 'WJ12', 'NUT-JAM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5B5620', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5B9318', 'WJ12', 'BALL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5C9553', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5D6176', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 31, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5F1678', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5F4899', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5F9035', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5F9144', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H2767', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H3193', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H4018', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H4019', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H4020', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H6005', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1400, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5H8985', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J1036', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J1391', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J1987', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J2721', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J2974', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 150, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J3719', 'WJ12', 'SPRING', 'PETERSON SPRING COMPANY', 'MRP', 2, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J4664', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5J6153', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 552, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5K0227', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5K6816', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5K9090', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5L9018', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M2057', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M2504', 'WJ12', 'SLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M2894', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M6214', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M9548', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M9622', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M9623', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5M9624', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0046', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0047', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0048', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0049', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0050', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P0537', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P1075', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P1076', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P2228', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P2566', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P2568', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P2955', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P3108', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P4892', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P5846', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P5874', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P6300', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P7970', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P8077', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P8167', 'WJ12', 'BOLT', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P8245', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5P9186', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 720, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S4498', 'WJ12', 'SLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S6980', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S7001', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S7018', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S7382', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S7383', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5S7906', 'WJ12', 'STOP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 280, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5Y2425', 'WJ12', 'WASHER', '#NO SOURCE', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('5Y2425/G', 'WJ12', 'WASHER-SOFT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3000, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6002074', 'WJ12', 'COVER', 'TUSON JIAXING CORPORATION', 'MRP', 1, 27, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6005898', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6005903', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6014921', 'WJ12', 'VALVE GP-P RLF-B', 'VIS HYDRAULICS SRL', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6014924', 'WJ12', 'VALVE GP-D RLF-A', 'VIS HYDRAULICS SRL', 'MRP', 1, 32, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6015976', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6024220', 'WJ12', 'VALVE GP-CHECK-E', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6032935', 'WJ12', 'VALVE', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 3, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6032936', 'WJ12', 'VALVE', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 3, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6032937', 'WJ12', 'COVER', 'UNITED MACHINERY(HANGZHOU)CO,.LTD.', 'MRP', 1, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6032938', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6040775/HE', 'WJ12', 'STEM-STICK 2', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 16, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6047184', 'WJ12', 'FILM-PROTECTION', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6053882', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6061170', 'WJ12', 'VALVE GP-D RLF-A', 'VIS HYDRAULICS SRL', 'MRP', 2, 32, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6065745', 'WJ12', 'FILM-PROTECTION', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 10, 90, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6068312', 'WJ12', 'VALVE GP-P RLF-B', 'VIS HYDRAULICS SRL', 'MRP', 2, 54, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6068313', 'WJ12', 'VALVE GP-P RLF-B', 'VIS HYDRAULICS SRL', 'MRP', 2, 54, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6072348', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6072350', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6074628', 'WJ12', 'COVER-PROTECTION', 'JIANGSU YAOKUN HYDRAULIC CO.,LTD', 'MRP', 1, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6078977', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6078978', 'WJ12', 'VALVE GP-P RLF-A', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6079283', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6081922', 'WJ12', 'RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6081928', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6081936', 'WJ12', 'PLUG-RETAINER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6092100', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6092101', 'WJ12', 'FILM-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6092107', 'WJ12', 'FILM-PORT PROTN', 'TSUCHIYA CO., LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6126001', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6128272', 'WJ12', 'VALVE GP-SOL', 'FEMA CORPORATION', 'MRP', 2, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6132841', 'WJ12', 'PLUG', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 90, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6134697', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6137646', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6137654', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152087', 'WJ12', 'VALVE GP-P RLF-B', 'VIS HYDRAULICS SRL', 'MRP', 1, 54, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152305', 'WJ12', 'SPOOL GP', 'TUSON JIAXING CORPORATION', 'MRP', 3, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152311', 'WJ12', 'MANIFOLD', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152312', 'WJ12', 'STEM-STEERING', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152316', 'WJ12', 'SPRING', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152334', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 90, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152335', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152336', 'WJ12', 'STEM-RIPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152337', 'WJ12', 'STEM-RIPPER TIP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6152339', 'WJ12', 'STEM-LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6154628', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6164612', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 4, 100, 'ASRS', 'Y', 365, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6164613', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 10, 100, 'ASRS', 'Y', 365, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6164614', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6164650', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 2, 100, 'ASRS', 'Y', 365, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6166649', 'WJ12', 'STEM', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 72, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6166650', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6166652', 'WJ12', 'COVER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6166655', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6204980', 'WJ12', 'RING-RETAINING', 'SMALLEY STEEL RING COMPANY', 'MRP', 2, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6209759', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223005', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223006', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223007', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223008', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223009', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6223022', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6257083', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6260449/HE', 'WJ12', 'PLUG AS-PROTN', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 1, 5000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6284961', 'WJ12', 'FILM-PORT PROTN', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 10, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6285087', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6293326', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 12, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6293327', 'WJ12', 'STEM-TILT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 8, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6293330', 'WJ12', 'SPRING', 'QIANJIANG SPRING(HANGZHOU) CO.,LTD', 'MRP', 2, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6309021', 'WJ12', 'STOP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6309030', 'WJ12', 'COVER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6309031', 'WJ12', 'COVER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6350484', 'WJ12', 'VALVE GP-RELIEF', 'PONAR WADOWICE S A', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6399413', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6403576', 'WJ12', 'PLUG AS', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 2, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6418296', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6429803', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6429804', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6429805', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6429806', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6429811', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6A5591', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6B0863', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6B0933', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6D7146', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E0630', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 75, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E1297', 'WJ12', 'SCREEN', 'FUKOKU (SHANGHAI) CO., LTD', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E1637', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E1923', 'WJ12', 'TUBE AS.', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E1924', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E1925', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E2007', 'WJ12', 'LEVER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E2140', 'WJ12', 'RETAINER AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E2271/HE', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E2377', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E2508', 'WJ12', 'PLUG-ORIFICE', 'CASEY PRODUCTS, INC.', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E3007', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E3013', 'WJ12', 'SEAT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E3019', 'WJ12', 'VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 504, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E3024', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E3447', 'WJ12', 'VALVE GP-D RLF-B', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4139', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4145', 'WJ12', 'PLUG-PROTECTIVE', 'CAPLUGS PROTECTIVE INDUSTRIAL COMPO', 'MRP', 2, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4502', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4532', 'WJ12', 'COVER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4533', 'WJ12', 'COVER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4703', 'WJ12', 'VALVE GP-D RLF-', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4816', 'WJ12', 'PLUG GP', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E4907', 'WJ12', 'STOP', 'TUSON JIAXING CORPORATION', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5066', 'WJ12', 'SCREEN-HYD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5153', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5278', 'WJ12', 'VALVEGP-CHECK-E', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5289', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5291', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5434', 'WJ12', 'HOUSING-PILOT', 'THE TOP DIE CASTING CO.. TOP DIE CA', 'MRP', 1, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5436', 'WJ12', 'RETAINER-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5437', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5438', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5439', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5440', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5457', 'WJ12', 'PLUG', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5643', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E5950', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 2, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E6003', 'WJ12', 'VALVE GP-P RLF', 'PONAR WADOWICE S A', 'MRP', 4, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E6058', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E6129', 'WJ12', 'PLUG-MAIN RELIEF', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E6304', 'WJ12', 'VALVE GP-P RLF-A', 'DANFOSS POWER SOLUTIONS TRADING CO.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6E6305', 'WJ12', 'VALVE GP-P RELIFE', 'DANFOSS POWER SOLUTIONS TRADING CO.', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6H2948', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 240, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6H3977', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6I9477', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6I9512', 'WJ12', 'COVER', 'YANTAI SHUANGCHENG MACHINERY CO., L', 'MRP', 2, 4, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J2419', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 450, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J2680', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J3134', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 350, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J3380', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 20, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J3405', 'WJ12', 'SEAT', 'TUSON JIAXING CORPORATION', 'MRP', 4, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J3993', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1750, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J4568', 'WJ12', 'BOOT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 70, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J4694', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 160, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J5899', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J6506', 'WJ12', 'SPACER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 96, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J6516', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J6517', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6J8696', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6K0806', 'WJ12', 'STRAP-CABLE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 800, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6K6307', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 350, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6K8162', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 109, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6L5897', 'WJ12', 'BOLT-HEX SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6L9716', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6M5062', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6S3002', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6T0093', 'WJ12', 'PISTON-LOAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6T0094', 'WJ12', 'PISTON-SELECTOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6T6052', 'WJ12', 'PLUG-ORIFICE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1080, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6T7532', 'WJ12', 'SCREEN AS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 22, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6T7534', 'WJ12', 'COVER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 1, 127, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V0357', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V0400', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 33, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V0402', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V0484', 'WJ12', 'ADPTR-ELB 90 DEG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V0852', 'WJ12', 'CAP-DUST', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V1849', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V2669', 'WJ12', 'CAP-PROTECTIVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V3510', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V3668', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V3683', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V3922', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V3965', 'WJ12', 'NIPPLE-QDISC', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V4248', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V4432', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V4647', 'WJ12', 'NUT-JAM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5192', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5195', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5196', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5224', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5230', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5391', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5393', 'WJ12', 'SEAL-O RING', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 1, 5000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5555', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5556', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5586', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 85, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5597', 'WJ12', 'SEAL-O RING', 'QINGDAO HILYWILL ADVANCED MATERIALS', 'MRP', 1, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5684', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5759', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5839', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2580, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V5843', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 325, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V6317', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 675, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V6353', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V6707', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V7418', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V7607', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V7673', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V7675', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8076', 'WJ12', 'ADPTR-ELB 90 DEG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8149', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8178', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8188', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8200', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 162, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8212', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8218', 'WJ12', 'SEAL-ORING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8350', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8397', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3300, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8398', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8400', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 210, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8647', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8653', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8676', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V8978', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 920, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9606', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9746', 'WJ12', 'SEAL-O-RING-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9828', 'WJ12', 'CAP-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 420, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9829', 'WJ12', 'CAP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 80, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9830', 'WJ12', 'CAP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9833', 'WJ12', 'CAP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9834', 'WJ12', 'CAP-ORFS', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9850', 'WJ12', 'ADAPTER-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6V9872', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 35, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y0871', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y2522', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 46, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y2584', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y4538', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y4539', 'WJ12', 'COVER', 'YANTAI SHUANGCHENG MACHINERY CO., L', 'MRP', 1, 12, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y4541', 'WJ12', 'PISTON-SELECTOR', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y4542', 'WJ12', 'PISTON-LOAD', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y4638', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y7267', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y7582', 'WJ12', 'PISTON', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y7621', 'WJ12', 'SPOOL', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y8049', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('6Y9692', 'WJ12', 'PLATE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7B3028', 'WJ12', 'SCREW-DRIVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7B7525', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7B8194', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7C6467', 'WJ12', 'PLUG-PROTECTIVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7D8048', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7D9749', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7E4846', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 389, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7E9898', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7F8268', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7G6741', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7H3641', 'WJ12', 'ROD END-SPHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 160, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7I0075/HE', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7I2272', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 540, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J0204', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J0402', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 45, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J1089', 'WJ12', 'PLUG-O-RING SPL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J3554', 'WJ12', 'COVER', 'CHUZHOU HONCH MACHINERY', 'MRP', 6, 80, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J4321', 'WJ12', 'RETAINER-SPRING', 'TUSON JIAXING CORPORATION', 'MRP', 2, 48, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J5926', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J5930', 'WJ12', 'SEAT', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J5934', 'WJ12', 'STEM', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J7366', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J7367', 'WJ12', 'COVER', 'CHUZHOU HONCH MACHINERY', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J7423', 'WJ12', 'VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J7666', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J7667', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J8958', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J9262', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7J9933', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7K0734', 'WJ12', 'BOLT-LOCKING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7K1181', 'WJ12', 'STRAP-CABLE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7L0811', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7L8695', 'WJ12', 'SPRING-LINK', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7M1297', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 55, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7M5130', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7M7316', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7M8485', 'WJ12', 'SEAL-O-RING-STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 800, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7M8592', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7N4333', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7N9738', 'WJ12', 'HOUSING-RCPT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7S0530', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7S6701', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7S8491', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7S8553', 'WJ12', 'SPRING', 'MID-WEST SPRING AND STAMPING, INC.', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T5101', 'WJ12', 'ORIFICE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 196, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T6496', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T7679', 'WJ12', 'PLUG-STR THD', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T8331', 'WJ12', 'MOUNT AS-ISLN', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T8797', 'WJ12', 'SPACER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 228, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7T8810', 'WJ12', 'PLUNGER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7W7381', 'WJ12', 'FITTING-OUTLET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0272', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0276', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0277', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0280', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 160, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0293', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0301', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 120, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0326', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0339', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0352', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0358', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0448', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 320, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0465', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0474', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X0819', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2535', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2538', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2539', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 160, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2543', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2544', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2546', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 30, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2547', 'WJ12', 'BOLT-HEXHEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2550', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2551', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2552', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X2558', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X3392', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1600, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X4776', 'WJ12', 'RING-BACK UP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 45, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X5308', 'WJ12', 'CAP-DUST', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X5315', 'WJ12', 'COUPLING-QDISC', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X7888', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7X7960', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 45, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7Y4224/X', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7Y5217', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7Y5219/HE', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3000, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7Y5244/HE', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('7Y5269/HE', 'WJ12', 'SEAL-O-RING', 'PARKER HANNIFIN MOTION & CONTROL (S', 'MRP', 4, 100, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8B4624', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3080', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3085', 'WJ12', 'SEAL-ORING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3089', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3121', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3205', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 90, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3206', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 70, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C3226', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C5176', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 40, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C5723', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 14, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C6877', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C8407', 'WJ12', 'BOLT-HEXHEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8C8431', 'WJ12', 'ADAPTER-TEE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8D7815', 'WJ12', 'SCREW-BUTTON HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E0758', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 19, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E0987', 'WJ12', 'SPOOL', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E1139', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E1142', 'WJ12', 'SLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E1143', 'WJ12', 'SLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E1917', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E2035', 'WJ12', 'PLUG-0-RING', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E3674', 'WJ12', 'SPOOL', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E3675', 'WJ12', 'SPOOL', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E4592', 'WJ12', 'STOP', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E4958', 'WJ12', 'SPOOL', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E4959', 'WJ12', 'SLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E5522', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E6051', 'WJ12', 'PLUG-ORIFICE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E6144', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E7365', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E8439', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 350, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E8867', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 6, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E8868', 'WJ12', 'GASKET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8E9571', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8F0212', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8F3469', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8F9206', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8F9538', 'WJ12', 'SEAL ORING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8H9190', 'WJ12', 'SHIM-CARRIER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J1751', 'WJ12', 'PLUG', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J1752', 'WJ12', 'PLUNGER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 13, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J1898', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J2283', 'WJ12', 'RING-RETAINING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J2306', 'WJ12', 'STEM-VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 160, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J2379', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J4398', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J4452', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 800, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J5893', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J6815', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 600, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J8462', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J8587', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8J9990', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8K2447', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8L2777', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8L6565', 'WJ12', 'PIN-SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M2530', 'WJ12', 'BOLT-12 POINT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M2537', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M2538', 'WJ12', 'POPPET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M2932', 'WJ12', 'SHIM-CARRIER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M3175', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4409', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 131, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4436', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 175, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4437', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4986', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4988', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M4992', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 240, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M5248', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M8282', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8M8627', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8P0346', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8P7386', 'WJ12', 'SPOOL', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 96, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0076', 'WJ12', 'ADAPTER-STR', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 4, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0106', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0151', 'WJ12', 'ADAPTER-STR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0269', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0276', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 425, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0288', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0293', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 340, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0299', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0334', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0338', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0341', 'WJ12', 'BOLT-SOCKET HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0343', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0372', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0651', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T0656', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T1447', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T2223', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T2396', 'WJ12', 'BOLT-SOCKET HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T2501', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 350, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T3611', 'WJ12', 'ADAPTER-STR', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 2, 18, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T3844', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T3998', 'WJ12', 'BOLT-SOCKET HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 1, 8000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4121', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 2000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4122', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4123', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4132', 'WJ12', 'NUT-HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4136', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4137', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 1, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4138', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 3, 1992, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4139', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 280, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4140', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4141', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4145', 'WJ12', 'BOLT-HEXHEAD', 'JIANGSU NINGXIN AUTO PART CO.,LTD', 'MRP', 2, 730, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4171', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 1250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4172', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4177', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4178', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 230, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4179', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 3, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4182', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 300, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4183', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4184', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4185', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 2, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4186', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4189', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4190', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4191', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4192', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4194', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4195', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4196', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 425, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4198', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 220, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4200', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4223', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4224', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3700, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4244', 'WJ12', 'NUT-HEX', 'SUZHOU CASEY PRODUCTS CO.,LTD', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4776', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4896', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T4956', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T5001', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 70, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T5005', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 235, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T5041', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T5066', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 130, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T5360', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1800, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6408', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6466', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6757', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6759', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6850', 'WJ12', 'SEAL-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6869', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6870', 'WJ12', 'BOLT-HEX HEAD', 'SUNDRAM FASTENERS (ZHEJIANG)', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T6974', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T7546', 'WJ12', 'ADAPTER-ELBOW', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T7930', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T7971', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T8737', 'WJ12', 'PLUG-SEAL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 2000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T8916', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T8919', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T8987', 'WJ12', 'ADPTR-ELB 90 DEG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 10, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9377', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9378', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9383', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9392', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9403', 'WJ12', 'FLANGE-SPLIT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8T9535', 'WJ12', 'BOLT-HEX SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8X6166', 'WJ12', 'FLANGE-COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('8Y5928', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9A2825', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9D7884', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9F2247', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 900, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9F6705', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G3695', 'WJ12', 'PLUG-SEAL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2500, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9150', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 240, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9201', 'WJ12', 'SEAT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9203', 'WJ12', 'PLUG-STOP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 1, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9205', 'WJ12', 'PISTON-LOAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9226', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9G9227', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9H6761', 'WJ12', 'SEAL-O RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J0403', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J0404', 'WJ12', 'PLUG', 'WUXI CHUANGJIE AUTO COMPONENT CO.,L', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J0477', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J0705', 'WJ12', 'RING-BACK-UP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J1330', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 400, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J4848', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 108, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J5754', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J8126', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J8626', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 40, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J8783', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 250, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9J9821', 'WJ12', 'SEAT', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 1, 96, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9L9068', 'WJ12', 'DOWEL', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9L9188', 'WJ12', 'SPRING-VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 300, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9M1974', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 4000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9M4313', 'WJ12', 'POPPET', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 170, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9M7539', 'WJ12', 'SEAL-ORING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'Y', 1825, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9N4049', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9N4104', 'WJ12', 'PLUG-NPTF', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9N6629', 'WJ12', 'CLIP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 45, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9P0683', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 125, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9P8217', 'WJ12', 'SPACER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 70, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9P9150', 'WJ12', 'WASHER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 5000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S1374', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4180', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4181', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 35, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4182', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 350, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4183', 'WJ12', 'Plug-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 60, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4184', 'WJ12', 'PLUG-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4185', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 250, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4188', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 46, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4189', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 75, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4190', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4191', 'WJ12', 'PLUG-EXT HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S4684', 'WJ12', 'PLUG-O-RING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S6130', 'WJ12', 'PLUG LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S7381', 'WJ12', 'BOLT-SOCKET HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8001', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 1200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8002', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 1000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8003', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8004', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 600, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8005', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8006', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 200, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8007', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 750, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8008', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S8009', 'WJ12', 'PLUG-LD STOR', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9S9334', 'WJ12', 'PLUG-INTL HEX', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 75, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T0118', 'WJ12', 'RING-BACKUP', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 200, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T0912', 'WJ12', 'STEM - LIFT', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T0953', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T1573', 'WJ12', 'VALVEGP-CHECK-D', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T1887', 'WJ12', 'BOLT', 'CASEY PRODUCTS, INC.', 'MRP', 2, 350, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2089', 'WJ12', 'STEM-RIPPER', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2092', 'WJ12', 'DETENT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 49, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2093', 'WJ12', 'BOLT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 58, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2125', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 64, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2134', 'WJ12', 'BODY-VALVE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 2, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2856', 'WJ12', 'ROD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T2927', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T3004', 'WJ12', 'VALVE', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 2, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T3005', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 25, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T3533', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 1, 24, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T3541', 'WJ12', 'VALVE GP-D RLF-A', 'TUSON JIAXING CORPORATION', 'MRP', 4, 20, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T3976', 'WJ12', 'SLEEVE-RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 55, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T4683', 'WJ12', 'COVER', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 56, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T4684', 'WJ12', 'HOUSING', 'ZHEJIANG YINLUN MACHINERY CO. LTD.', 'MRP', 1, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T4685', 'WJ12', 'SHIM', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T4697', 'WJ12', 'BOOT', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T5785', 'WJ12', 'PLATE-IDENT', 'NANJING WUQIANG INDUSTRY CO.,LTD', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T6316', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 40, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T6394', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 33, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T6688', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 80, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T6782', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 30, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7204', 'WJ12', 'CYL GP-AIR (BSC)', 'DANFOSS POWER SOLUTIONS II LLC', 'MRP', 1, 1, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7220', 'WJ12', 'COVER', 'LIYANG LIANHUA MACHINERY MANUFACTUR', 'MRP', 1, 168, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7418', 'WJ12', 'VALVE GP-D RLF-', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 10, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7419', 'WJ12', 'VALVE GP-D RLF-B', 'CATERPILLAR (SUZHOU) LOGISTICS', 'KANBAN', 4, 8, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7634', 'WJ12', 'VALVE GP-CHECK-', 'HUSCO HYDRAULICS (SHANGHAI) LTD', 'MRP', 1, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7677', 'WJ12', 'RETAINER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 15, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T7678', 'WJ12', 'COVER', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T8621', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 36, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T8668', 'WJ12', 'ADAPTER', 'XU GUI (SHANGHAI) TRADING CO.,LTD F', 'MRP', 8, 96, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T8672', 'WJ12', 'RETAINER', 'TUSON JIAXING CORPORATION', 'MRP', 2, 72, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T8685', 'WJ12', 'VALVE', 'TUSON JIAXING CORPORATION', 'MRP', 2, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T9080', 'WJ12', 'VALVE', 'WUXI IMPRO-BEES PRECISION HYDRAULIC', 'MRP', 1, 42, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9T9836', 'WJ12', 'SLEEVE-ORIFICE', 'PRINCE INDUSTRIES SHANGHAI LTD.', 'MRP', 8, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9U9328', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W4431', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 150, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W6096', 'WJ12', 'SLUG', 'TUSON JIAXING CORPORATION', 'MRP', 2, 144, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W6097', 'WJ12', 'SPOOL-SELECTOR', 'TUSON JIAXING CORPORATION', 'MRP', 2, 120, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W6964', 'WJ12', 'VALVE AS-EXHAUST', 'EMC PRECISION MACHINING', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W7410', 'WJ12', 'SPRING', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 100, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W7783', 'WJ12', 'PLUG', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9W8279', 'WJ12', 'PISTON', 'TUSON JIAXING CORPORATION', 'MRP', 2, 80, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X2027', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 4000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X2038', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 2000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X6154', 'WJ12', 'BOLT-HEX SKT HD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 50, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X6381', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 500, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X8256', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 9000, 'ASRS', 'N', NULL, 'A', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X8257', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 600, 'ASRS', 'N', NULL, 'B', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X8267', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 3000, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X8268', 'WJ12', 'WASHER-HARD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 700, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -INSERT INTO `t_app_goods` (`goods_id`, `plant`, `goods_description`, `vendor_name`, `feeding_type`, `max_box_num`, `box_qty`, `put_area`, `is_sled`, `sled_days`, `hot_point`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('9X8877', 'WJ12', 'BOLT-HEX HEAD', 'CATERPILLAR (SUZHOU) LOGISTICS', 'MRP', 4, 60, 'ASRS', 'N', NULL, 'C', NULL, NULL, '2025-03-21 15:29:50', '管理员'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_image --- ---------------------------- -DROP TABLE IF EXISTS `t_app_image`; -CREATE TABLE `t_app_image` ( - `image_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '图纸id', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号', - `box_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `image_path` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '图纸存储path', - `image_name` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '图纸名称', - `image_detail` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci COMMENT '图纸详情---可用', - `image_type` int NOT NULL COMMENT '区分总成图纸还是单片图纸', - `first_import_time` datetime DEFAULT NULL COMMENT '导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '导入人员', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - PRIMARY KEY (`image_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_image --- ---------------------------- -BEGIN; -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496611010000', '5089741', 'A', './image\\', '5089741_A.PNG', '', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496622010000', '5089741', 'B', './image\\', '5089741_B.PNG', '', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496623010000', '5089741', 'C', './image\\', '5089741_C.PNG', '', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496624010000', '5089741', 'D', './image\\', '5089741_D.PNG', '', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512437010000', '6209758', 'A', './image\\', '6209758_A.PNG', '', 1, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010000', '5585127', 'A', './image\\', '5585127_A.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010001', '5585127', 'B', './image\\', '5585127_B.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010002', '5585127', 'C', './image\\', '5585127_C.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010003', '5585127', 'D', './image\\', '5585127_D.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010004', '5585127', 'E', './image\\', '5585127_E.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010005', '5585127', 'F', './image\\', '5585127_F.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533171010006', '5585127', 'G', './image\\', '5585127_G.PNG', '', 1, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563406010000', '1303116', 'A', './image\\', '1303116_A.PNG', '', 1, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563407010000', '1303116', 'B', './image\\', '1303116_B.PNG', '', 1, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563408010000', '1303116', 'C', './image\\', '1303116_C.PNG', '', 1, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699587010000', '6E3029', 'A', './image\\', '6E3029_A.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699588010000', '6E3029', 'B', './image\\', '6E3029_B.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699589010000', '6E3029', 'C', './image\\', '6E3029_C.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699590010000', '6E3029', 'D', './image\\', '6E3029_D.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699591010000', '6E3029', 'E', './image\\', '6E3029_E.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699591010001', '6E3029', 'F', './image\\', '6E3029_F.PNG', '', 1, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834881010000', '6E3030', 'A', './image\\', '6E3030_A.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834883010000', '6E3030', 'B', './image\\', '6E3030_B.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834884010000', '6E3030', 'C', './image\\', '6E3030_C.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834885010000', '6E3030', 'D', './image\\', '6E3030_D.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834886010000', '6E3030', 'E', './image\\', '6E3030_E.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834888010000', '6E3030', 'F', './image\\', '6E3030_F.PNG', '', 1, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010000', '6E3028', 'A', './image\\', '6E3028_A.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010001', '6E3028', 'B', './image\\', '6E3028_B.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010002', '6E3028', 'C', './image\\', '6E3028_C.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010003', '6E3028', 'D', './image\\', '6E3028_D.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010004', '6E3028', 'E', './image\\', '6E3028_E.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849672010005', '6E3028', 'F', './image\\', '6E3028_F.PNG', '', 1, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866821010000', '5385733', 'A', './image\\', '5385733_A.PNG', '', 1, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866823010000', '5385733', 'B', './image\\', '5385733_B.PNG', '', 1, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866823010001', '5385733', 'C', './image\\', '5385733_C.PNG', '', 1, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866824010000', '5385733', 'D', './image\\', '5385733_D.PNG', '', 1, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866825010000', '5385733', 'E', './image\\', '5385733_E.PNG', '', 1, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474862010000', '4903958', 'A', './image\\', '4903958_A.PNG', '', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499173010000', '5075967', 'A', './image\\', '5075967_A.PNG', '', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499174010000', '5075967', 'B', './image\\', '5075967_B.PNG', '', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499175010000', '5075967', 'C', './image\\', '5075967_C.PNG', '', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499176010000', '5075967', 'D', './image\\', '5075967_D.PNG', '', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519597010000', '5611790', 'A', './image\\', '5611790_A.PNG', '', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519597010001', '5611790', 'B', './image\\', '5611790_B.PNG', '', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519597010002', '5611790', 'C', './image\\', '5611790_C.PNG', '', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519597010003', '5611790', 'D', './image\\', '5611790_D.PNG', '', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519612010000', '5611790', 'E', './image\\', '5611790_E.PNG', '', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535796010000', '6063779', 'A', './image', '6063779_A.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535797010000', '6063779', 'B', './image', '6063779_B.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535798010000', '6063779', 'C', './image', '6063779_C.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535799010000', '6063779', 'D', './image', '6063779_D.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535800010000', '6063779', 'E', './image', '6063779_E.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535801010000', '6063779', 'F', './image', '6063779_F.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911535802010000', '6063779', 'G', './image', '6063779_G.PNG', '', 1, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675943010000', '5181312', 'A', './image\\', '5181312_A.PNG', '', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675945010000', '5181312', 'B', './image\\', '5181312_B.PNG', '', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675946010000', '5181312', 'C', './image\\', '5181312_C.PNG', '', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675946010001', '5181312', 'D', './image\\', '5181312_D.PNG', '', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675947010000', '5181312', 'E', './image\\', '5181312_E.PNG', '', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854412010000', '2965662', 'A', './image\\', '2965662_A.PNG', '', 1, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854413010000', '2965662', 'B', './image\\', '2965662_B.PNG', '', 1, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302929010000', '5181337', 'A', './image\\', '5181337_A.PNG', '', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302941010000', '5181337', 'B', './image\\', '5181337_B.PNG', '', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302942010000', '5181337', 'C', './image\\', '5181337_C.PNG', '', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302943010000', '5181337', 'D', './image\\', '5181337_D.PNG', '', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302945010000', '5181337', 'E', './image\\', '5181337_E.PNG', '', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323530010000', '6E5566', 'A', './image\\', '6E5566_A.PNG', '', 1, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323531010000', '6E5566', 'B', './image\\', '6E5566_B.PNG', '', 1, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356592010000', '3215283', 'A', './image\\', '3215283_A.PNG', '', 1, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356594010000', '3215283', 'B', './image\\', '3215283_B.PNG', '', 1, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356594010001', '3215283', 'C', './image\\', '3215283_C.PNG', '', 1, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468820010000', '6223020', 'A', './image', '6223020_A.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468822010000', '6223020', 'B', './image', '6223020_B.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468824010000', '6223020', 'C', './image', '6223020_C.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468825010000', '6223020', 'D', './image', '6223020_D.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468826010000', '6223020', 'E', './image', '6223020_E.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468827010000', '6223020', 'F', './image', '6223020_F.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468829010000', '6223020', 'G', './image', '6223020_G.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468830010000', '6223020', 'H', './image', '6223020_H.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468832010000', '6223020', 'I', './image', '6223020_I.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468833010000', '6223020', 'J', './image', '6223020_J.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468836010000', '6223020', 'K', './image', '6223020_K.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468837010000', '6223020', 'L', './image', '6223020_L.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468839010000', '6223020', 'M', './image', '6223020_M.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468840010000', '6223020', 'N', './image', '6223020_N.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913468841010000', '6223020', 'O', './image', '6223020_O.PNG', '', 1, '2025-03-27 14:13:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507789010000', '2119696', 'A', './image\\', '2119696_A.PNG', '', 1, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507790010000', '2119696', 'B', './image\\', '2119696_B.PNG', '', 1, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605386010000', '2343042', 'A', './image\\', '2343042_A.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605390010000', '2343042', 'B', './image\\', '2343042_B.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605392010000', '2343042', 'C', './image\\', '2343042_C.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605395010000', '2343042', 'D', './image\\', '2343042_D.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605398010000', '2343042', 'E', './image\\', '2343042_E.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605400010000', '2343042', 'F', './image\\', '2343042_F.PNG', '', 1, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626186010000', '5573856', 'A', './image\\', '5573856_A.PNG', '', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626187010000', '5573856', 'B', './image\\', '5573856_B.PNG', '', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626189010000', '5573856', 'C', './image\\', '5573856_C.PNG', '', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626190010000', '5573856', 'D', './image\\', '5573856_D.PNG', '', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649572010000', '4869861', 'A', './image\\', '4869861_A.PNG', '', 1, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649574010000', '4869861', 'B', './image\\', '4869861_B.PNG', '', 1, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649575010000', '4869861', 'C', './image\\', '4869861_C.PNG', '', 1, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649576010000', '4869861', 'D', './image\\', '4869861_D.PNG', '', 1, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721775010000', '3402788', 'A', './image\\', '3402788_A.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721776010000', '3402788', 'B', './image\\', '3402788_B.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721778010000', '3402788', 'C', './image\\', '3402788_C.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721779010000', '3402788', 'D', './image\\', '3402788_D.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721780010000', '3402788', 'E', './image\\', '3402788_E.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721781010000', '3402788', 'F', './image\\', '3402788_F.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721782010000', '3402788', 'G', './image\\', '3402788_G.PNG', '', 1, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761913010000', '9T5653', 'A', './image\\', '9T5653_A.PNG', '', 1, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761915010000', '9T5653', 'B', './image\\', '9T5653_B.PNG', '', 1, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761916010000', '9T5653', 'C', './image\\', '9T5653_C.PNG', '', 1, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808653010000', '5853920', 'A', './image\\', '5853920_A.PNG', '', 1, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808654010000', '5853920', 'B', './image\\', '5853920_B.PNG', '', 1, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808656010000', '5853920', 'C', './image\\', '5853920_C.PNG', '', 1, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808657010000', '5853920', 'D', './image\\', '5853920_D.PNG', '', 1, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808657010001', '5853920', 'E', './image\\', '5853920_E.PNG', '', 1, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829802010000', '4T4205', 'A', './image\\', '4T4205_A.PNG', '', 1, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829804010000', '4T4205', 'B', './image\\', '4T4205_B.PNG', '', 1, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829805010000', '4T4205', 'C', './image\\', '4T4205_C.PNG', '', 1, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930822010000', '4736798', 'A', './image\\', '4736798_A.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930823010000', '4736798', 'B', './image\\', '4736798_B.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930825010000', '4736798', 'C', './image\\', '4736798_C.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930825010001', '4736798', 'D', './image\\', '4736798_D.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930827010000', '4736798', 'E', './image\\', '4736798_E.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930828010000', '4736798', 'F', './image\\', '4736798_F.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930828010001', '4736798', 'G', './image\\', '4736798_G.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930829010000', '4736798', 'H', './image\\', '4736798_H.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930830010000', '4736798', 'I', './image\\', '4736798_I.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930831010000', '4736798', 'J', './image\\', '4736798_J.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930832010000', '4736798', 'K', './image\\', '4736798_K.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930833010000', '4736798', 'L', './image\\', '4736798_L.PNG', '', 1, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213702010000', '5772154', 'A', './image\\', '5772154_A.PNG', '', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213703010000', '5772154', 'B', './image\\', '5772154_B.PNG', '', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213704010000', '5772154', 'C', './image\\', '5772154_C.PNG', '', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213706010000', '5772154', 'D', './image\\', '5772154_D.PNG', '', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213707010000', '5772154', 'E', './image\\', '5772154_E.PNG', '', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352832010000', '6E3078', 'A', './image\\', '6E3078_A.PNG', '', 1, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352834010000', '6E3078', 'B', './image\\', '6E3078_B.PNG', '', 1, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395483010000', '5872375', 'A', './image', '5872375_A.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395485010000', '5872375', 'B', './image', '5872375_B.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395486010000', '5872375', 'C', './image', '5872375_C.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395487010000', '5872375', 'D', './image', '5872375_D.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395488010000', '5872375', 'E', './image', '5872375_E.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395489010000', '5872375', 'F', './image', '5872375_F.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395490010000', '5872375', 'G', './image', '5872375_G.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395491010000', '5872375', 'H', './image', '5872375_H.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395492010000', '5872375', 'I', './image', '5872375_I.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395493010000', '5872375', 'J', './image', '5872375_J.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395494010000', '5872375', 'K', './image', '5872375_K.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395495010000', '5872375', 'L', './image', '5872375_L.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395496010000', '5872375', 'M', './image', '5872375_M.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914395497010000', '5872375', 'N', './image', '5872375_N.PNG', '', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472888010000', '2130087', 'A', './image\\', '2130087_A.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472890010000', '2130087', 'B', './image\\', '2130087_B.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472891010000', '2130087', 'C', './image\\', '2130087_C.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472892010000', '2130087', 'D', './image\\', '2130087_D.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472893010000', '2130087', 'E', './image\\', '2130087_E.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472894010000', '2130087', 'F', './image\\', '2130087_F.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472896010000', '2130087', 'G', './image\\', '2130087_G.PNG', '', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491672010000', '6E3031', 'A', './image\\', '6E3031_A.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491674010000', '6E3031', 'B', './image\\', '6E3031_B.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491675010000', '6E3031', 'C', './image\\', '6E3031_C.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491676010000', '6E3031', 'D', './image\\', '6E3031_D.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491676010001', '6E3031', 'E', './image\\', '6E3031_E.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491677010000', '6E3031', 'F', './image\\', '6E3031_F.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491678010000', '6E3031', 'G', './image\\', '6E3031_G.PNG', '', 1, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513483010000', '1070545', 'A', './image\\', '1070545_A.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513485010000', '1070545', 'B', './image\\', '1070545_B.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513486010000', '1070545', 'C', './image\\', '1070545_C.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513486010001', '1070545', 'D', './image\\', '1070545_D.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513487010000', '1070545', 'E', './image\\', '1070545_E.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513488010000', '1070545', 'F', './image\\', '1070545_F.PNG', '', 1, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561262010000', '3367287', 'A', './image\\', '3367287_A.PNG', '', 1, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561264010000', '3367287', 'B', './image\\', '3367287_B.PNG', '', 1, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561264010001', '3367287', 'C', './image\\', '3367287_C.PNG', '', 1, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561265010000', '3367287', 'D', './image\\', '3367287_D.PNG', '', 1, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561266010000', '3367287', 'E', './image\\', '3367287_E.PNG', '', 1, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618860010000', '2904512', 'A', './image\\', '2904512_A.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618862010000', '2904512', 'B', './image\\', '2904512_B.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618863010000', '2904512', 'C', './image\\', '2904512_C.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618869010000', '2904512', 'D', './image\\', '2904512_D.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618870010000', '2904512', 'E', './image\\', '2904512_E.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618872010000', '2904512', 'F', './image\\', '2904512_F.PNG', '', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639436010000', '4T4204', 'A', './image\\', '4T4204_A.PNG', '', 1, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639438010000', '4T4204', 'B', './image\\', '4T4204_B.PNG', '', 1, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639439010000', '4T4204', 'C', './image\\', '4T4204_C.PNG', '', 1, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918933010000', '1260747', 'A', './image\\', '1260747_A.PNG', '', 1, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622696010000', '1303118', 'A', './image\\', '1303118_A.PNG', '', 1, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622697010000', '1303118', 'B', './image\\', '1303118_B.PNG', '', 1, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622698010000', '1303118', 'C', './image\\', '1303118_C.PNG', '', 1, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645775010000', '6E3034', 'A', './image\\', '6E3034_A.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645777010000', '6E3034', 'B', './image\\', '6E3034_B.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645779010000', '6E3034', 'C', './image\\', '6E3034_C.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645780010000', '6E3034', 'D', './image\\', '6E3034_D.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645782010000', '6E3034', 'E', './image\\', '6E3034_E.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645783010000', '6E3034', 'F', './image\\', '6E3034_F.PNG', '', 1, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734679010000', '6E3036', 'A', './image\\', '6E3036_A.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734681010000', '6E3036', 'B', './image\\', '6E3036_B.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734683010000', '6E3036', 'C', './image\\', '6E3036_C.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734685010000', '6E3036', 'D', './image\\', '6E3036_D.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734687010000', '6E3036', 'E', './image\\', '6E3036_E.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734688010000', '6E3036', 'F', './image\\', '6E3036_F.PNG', '', 1, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763518010000', '1303110', 'A', './image\\', '1303110_A.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763520010000', '1303110', 'B', './image\\', '1303110_B.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763521010000', '1303110', 'C', './image\\', '1303110_C.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763522010000', '1303110', 'D', './image\\', '1303110_D.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763523010000', '1303110', 'E', './image\\', '1303110_E.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763524010000', '1303110', 'F', './image\\', '1303110_F.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763524010001', '1303110', 'G', './image\\', '1303110_G.PNG', '', 1, '2025-03-14 09:46:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777254010000', '1199550', 'A', './image\\', '1199550_A.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777254010001', '1199550', 'B', './image\\', '1199550_B.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777256010000', '1199550', 'C', './image\\', '1199550_C.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777257010000', '1199550', 'D', './image\\', '1199550_D.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777258010000', '1199550', 'E', './image\\', '1199550_E.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777258010001', '1199550', 'F', './image\\', '1199550_F.PNG', '', 1, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866234010000', '5757795', 'A', './image\\', '5757795_A.PNG', '', 1, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866236010000', '5757795', 'B', './image\\', '5757795_B.PNG', '', 1, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866237010000', '5757795', 'C', './image\\', '5757795_C.PNG', '', 1, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866238010000', '5757795', 'D', './image\\', '5757795_D.PNG', '', 1, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888884010000', '5805847', 'A', './image\\', '5805847_A.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888886010000', '5805847', 'B', './image\\', '5805847_B.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888887010000', '5805847', 'C', './image\\', '5805847_C.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888887010001', '5805847', 'D', './image\\', '5805847_D.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888888010000', '5805847', 'E', './image\\', '5805847_E.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888889010000', '5805847', 'F', './image\\', '5805847_F.PNG', '', 1, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973052010000', '1303124', 'A', './image\\', '1303124_A.PNG', '', 1, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973053010000', '1303124', 'A1', './image\\', '1303124_A1.PNG', '', 1, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973055010000', '1303124', 'B', './image\\', '1303124_B.PNG', '', 1, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973056010000', '1303124', 'C', './image\\', '1303124_C.PNG', '', 1, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041134010000', '1303111', 'A', './image\\', '1303111_A.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041136010000', '1303111', 'B', './image\\', '1303111_B.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041137010000', '1303111', 'C', './image\\', '1303111_C.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041137010001', '1303111', 'D', './image\\', '1303111_D.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041140010000', '1303111', 'E', './image\\', '1303111_E.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041141010000', '1303111', 'F', './image\\', '1303111_F.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041143010000', '1303111', 'G', './image\\', '1303111_G.PNG', '', 1, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108900010000', '5829209', 'A', './image\\', '5829209_A.PNG', '', 1, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108901010000', '5829209', 'B', './image\\', '5829209_B.PNG', '', 1, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108902010000', '5829209', 'C', './image\\', '5829209_C.PNG', '', 1, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123119010000', '5829211', 'A', './image\\', '5829211_A.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123120010000', '5829211', 'B', './image\\', '5829211_B.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123121010000', '5829211', 'C', './image\\', '5829211_C.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123122010000', '5829211', 'D', './image\\', '5829211_D.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123123010000', '5829211', 'E', './image\\', '5829211_E.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123124010000', '5829211', 'F', './image\\', '5829211_F.PNG', '', 1, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220314010000', '5793325', 'A', './image\\', '5793325_A.PNG', '', 1, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220315010000', '5793325', 'B', './image\\', '5793325_B.PNG', '', 1, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220316010000', '5793325', 'C', './image\\', '5793325_C.PNG', '', 1, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347847010000', '1070554', 'A', './image\\', '1070554_A.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347849010000', '1070554', 'B', './image\\', '1070554_B.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347850010000', '1070554', 'C', './image\\', '1070554_C.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347851010000', '1070554', 'D', './image\\', '1070554_D.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347853010000', '1070554', 'E', './image\\', '1070554_E.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347854010000', '1070554', 'F', './image\\', '1070554_F.PNG', '', 1, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531753010000', '1070555', 'A', './image\\', '1070555_A.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531754010000', '1070555', 'B', './image\\', '1070555_B.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531755010000', '1070555', 'C', './image\\', '1070555_C.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531756010000', '1070555', 'D', './image\\', '1070555_D.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531756010001', '1070555', 'E', './image\\', '1070555_E.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531757010000', '1070555', 'F', './image\\', '1070555_F.PNG', '', 1, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556668010000', '5793326', 'A', './image\\', '5793326_A.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556670010000', '5793326', 'B', './image\\', '5793326_B.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556670010001', '5793326', 'C', './image\\', '5793326_C.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556671010000', '5793326', 'D', './image\\', '5793326_D.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556672010000', '5793326', 'E', './image\\', '5793326_E.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556673010000', '5793326', 'F', './image\\', '5793326_F.PNG', '', 1, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578979010000', '1303115', 'A', './image\\', '1303115_A.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578981010000', '1303115', 'B', './image\\', '1303115_B.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578982010000', '1303115', 'C', './image\\', '1303115_C.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578983010000', '1303115', 'D', './image\\', '1303115_D.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578984010000', '1303115', 'E', './image\\', '1303115_E.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578985010000', '1303115', 'F', './image\\', '1303115_F.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578985010001', '1303115', 'G', './image\\', '1303115_G.PNG', '', 1, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596490010000', '1243455', 'A', './image\\', '1243455_A.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596492010000', '1243455', 'B', './image\\', '1243455_B.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596492010001', '1243455', 'C', './image\\', '1243455_C.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596493010000', '1243455', 'D', './image\\', '1243455_D.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596494010000', '1243455', 'E', './image\\', '1243455_E.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596495010000', '1243455', 'F', './image\\', '1243455_F.PNG', '', 1, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736965010000', '1303135', 'A', './image\\', '1303135_A.PNG', '', 1, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736967010000', '1303135', 'A1', './image\\', '1303135_A1.PNG', '', 1, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736968010000', '1303135', 'B', './image\\', '1303135_B.PNG', '', 1, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736969010000', '1303135', 'C', './image\\', '1303135_C.PNG', '', 1, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752359010000', '1070560', 'A', './image\\', '1070560_A.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752361010000', '1070560', 'B', './image\\', '1070560_B.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752362010000', '1070560', 'C', './image\\', '1070560_C.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752363010000', '1070560', 'D', './image\\', '1070560_D.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752364010000', '1070560', 'E', './image\\', '1070560_E.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752365010000', '1070560', 'F', './image\\', '1070560_F.PNG', '', 1, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771765010000', '1070562', 'A', './image\\', '1070562_A.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771767010000', '1070562', 'B', './image\\', '1070562_B.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771768010000', '1070562', 'C', './image\\', '1070562_C.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771768010001', '1070562', 'D', './image\\', '1070562_D.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771769010000', '1070562', 'E', './image\\', '1070562_E.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771770010000', '1070562', 'F', './image\\', '1070562_F.PNG', '', 1, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784272010000', '1070563', 'A', './image\\', '1070563_A.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784274010000', '1070563', 'B', './image\\', '1070563_B.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784275010000', '1070563', 'C', './image\\', '1070563_C.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784275010001', '1070563', 'D', './image\\', '1070563_D.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784276010000', '1070563', 'E', './image\\', '1070563_E.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784277010000', '1070563', 'F', './image\\', '1070563_F.PNG', '', 1, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924994010000', '1303114', 'A', './image\\', '1303114_A.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925004010000', '1303114', 'B', './image\\', '1303114_B.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925006010000', '1303114', 'C', './image\\', '1303114_C.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925007010000', '1303114', 'D', './image\\', '1303114_D.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925008010000', '1303114', 'E', './image\\', '1303114_E.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925009010000', '1303114', 'F', './image\\', '1303114_F.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917925010010000', '1303114', 'G', './image\\', '1303114_G.PNG', '', 1, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004737010000', '5829206', 'A', './image\\', '5829206_A.PNG', '', 1, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004738010000', '5829206', 'B', './image\\', '5829206_B.PNG', '', 1, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004739010000', '5829206', 'C', './image\\', '5829206_C.PNG', '', 1, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004740010000', '5829206', 'D', './image\\', '5829206_D.PNG', '', 1, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020568010000', '5829210', 'A', './image\\', '5829210_A.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020570010000', '5829210', 'B', './image\\', '5829210_B.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020571010000', '5829210', 'C', './image\\', '5829210_C.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020572010000', '5829210', 'D', './image\\', '5829210_D.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020573010000', '5829210', 'E', './image\\', '5829210_E.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020574010000', '5829210', 'F', './image\\', '5829210_F.PNG', '', 1, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074546010000', '5890385', 'A', './image\\', '5890385_A.PNG', '', 1, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074547010000', '5890385', 'B', './image\\', '5890385_B.PNG', '', 1, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074548010000', '5890385', 'C', './image\\', '5890385_C.PNG', '', 1, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074549010000', '5890385', 'D', './image\\', '5890385_D.PNG', '', 1, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091419010000', '1934431', 'A', './image\\', '1934431_A.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091420010000', '1934431', 'B', './image\\', '1934431_B.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091421010000', '1934431', 'C', './image\\', '1934431_C.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091422010000', '1934431', 'D', './image\\', '1934431_D.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091423010000', '1934431', 'E', './image\\', '1934431_E.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091424010000', '1934431', 'F', './image\\', '1934431_F.PNG', '', 1, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888527010000', '5973476', 'A', './image\\', '5973476_A.PNG', '', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888528010000', '5973476', 'B', './image\\', '5973476_B.PNG', '', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084978010000', '5013712', 'A', './image\\', '5013712_A.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084980010000', '5013712', 'B', './image\\', '5013712_B.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084981010000', '5013712', 'C', './image\\', '5013712_C.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084982010000', '5013712', 'D', './image\\', '5013712_D.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084983010000', '5013712', 'E', './image\\', '5013712_E.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084984010000', '5013712', 'F', './image\\', '5013712_F.PNG', '', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102059010000', '5013711', 'A', './image\\', '5013711_A.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102061010000', '5013711', 'B', './image\\', '5013711_B.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102062010000', '5013711', 'C', './image\\', '5013711_C.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102063010000', '5013711', 'D', './image\\', '5013711_D.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102064010000', '5013711', 'E', './image\\', '5013711_E.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102065010000', '5013711', 'F', './image\\', '5013711_F.PNG', '', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361821010000', '5702570', 'A', './image\\', '5702570_A.PNG', '', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361823010000', '5702570', 'B', './image\\', '5702570_B.PNG', '', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394820010000', '1131543', 'A', './image\\', '1131543_A.PNG', '', 1, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394821010000', '1131543', 'B', './image\\', '1131543_B.PNG', '', 1, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394822010000', '1131543', 'C', './image\\', '1131543_C.PNG', '', 1, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394823010000', '1131543', 'D', './image\\', '1131543_D.PNG', '', 1, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445758010000', '1494133', 'A', './image\\', '1494133_A.PNG', '', 1, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445760010000', '1494133', 'B', './image\\', '1494133_B.PNG', '', 1, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445761010000', '1494133', 'C', './image\\', '1494133_C.PNG', '', 1, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445762010000', '1494133', 'D', './image\\', '1494133_D.PNG', '', 1, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462818010000', '5059699', 'A', './image\\', '5059699_A.PNG', '', 1, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462819010000', '5059699', 'B', './image\\', '5059699_B.PNG', '', 1, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462820010000', '5059699', 'C', './image\\', '5059699_C.PNG', '', 1, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462821010000', '5059699', 'D', './image\\', '5059699_D.PNG', '', 1, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477779010000', '5978244', 'A', './image\\', '5978244_A.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477780010000', '5978244', 'B', './image\\', '5978244_B.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477782010000', '5978244', 'C', './image\\', '5978244_C.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477783010000', '5978244', 'D', './image\\', '5978244_D.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477784010000', '5978244', 'E', './image\\', '5978244_E.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477785010000', '5978244', 'F', './image\\', '5978244_F.PNG', '', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618283010000', '2011150', 'A', './image', '2011150_A.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618284010000', '2011150', 'B', './image', '2011150_B.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618285010000', '2011150', 'C', './image', '2011150_C.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618286010000', '2011150', 'D', './image', '2011150_D.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618287010000', '2011150', 'E', './image', '2011150_E.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919618288010000', '2011150', 'F', './image', '2011150_F.PNG', '', 1, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634576010000', '5218493', 'A', './image', '5218493_A.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634577010000', '5218493', 'B', './image', '5218493_B.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634578010000', '5218493', 'C', './image', '5218493_C.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634579010000', '5218493', 'D', './image', '5218493_D.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634580010000', '5218493', 'E', './image', '5218493_E.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634581010000', '5218493', 'F', './image', '5218493_F.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919634581010001', '5218493', 'G', './image', '5218493_G.PNG', '', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651751010000', '4165349', 'A', './image\\', '4165349_A.PNG', '', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919668169010000', '5215592', 'A', './image', '5215592_A.PNG', '', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919668170010000', '5215592', 'B', './image', '5215592_B.PNG', '', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919668171010000', '5215592', 'C', './image', '5215592_C.PNG', '', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919668172010000', '5215592', 'D', './image', '5215592_D.PNG', '', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919668173010000', '5215592', 'E', './image', '5215592_E.PNG', '', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741510010000', '9T4769', 'A', './image\\', '9T4769_A.PNG', '', 1, '2025-03-14 10:35:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741511010000', '9T4769', 'B', './image\\', '9T4769_B.PNG', '', 1, '2025-03-14 10:35:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741512010000', '9T4769', 'C', './image\\', '9T4769_C.PNG', '', 1, '2025-03-14 10:35:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741513010000', '9T4769', 'D', './image\\', '9T4769_D.PNG', '', 1, '2025-03-14 10:35:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772940010000', '6063778', 'A', './image\\', '6063778_A.PNG', '', 1, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772942010000', '6063778', 'B', './image\\', '6063778_B.PNG', '', 1, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772943010000', '6063778', 'C', './image\\', '6063778_C.PNG', '', 1, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787619010000', '5872370', 'A', './image\\', '5872370_A.PNG', '', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787621010000', '5872370', 'B', './image\\', '5872370_B.PNG', '', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787622010000', '5872370', 'C', './image\\', '5872370_C.PNG', '', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787623010000', '5872370', 'D', './image\\', '5872370_D.PNG', '', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460128010000', '5887917', 'A', './image\\', '5887917_A.PNG', '', 1, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460130010000', '5887917', 'B', './image\\', '5887917_B.PNG', '', 1, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460131010000', '5887917', 'C', './image\\', '5887917_C.PNG', '', 1, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460132010000', '5887917', 'D', './image\\', '5887917_D.PNG', '', 1, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560355010000', '1199549', 'A', './image\\', '1199549_A.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560357010000', '1199549', 'B', './image\\', '1199549_B.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560357010001', '1199549', 'C', './image\\', '1199549_C.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560358010000', '1199549', 'D', './image\\', '1199549_D.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560359010000', '1199549', 'E', './image\\', '1199549_E.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560360010000', '1199549', 'F', './image\\', '1199549_F.PNG', '', 1, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653562010000', '1303123', 'A', './image\\', '1303123_A.PNG', '', 1, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653563010000', '1303123', 'B', './image\\', '1303123_B.PNG', '', 1, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653564010000', '1303123', 'C', './image\\', '1303123_C.PNG', '', 1, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653565010000', '1303123', 'D', './image\\', '1303123_D.PNG', '', 1, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718950010000', '5890390', 'A', './image\\', '5890390_A.PNG', '', 1, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718952010000', '5890390', 'B', './image\\', '5890390_B.PNG', '', 1, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718953010000', '5890390', 'C', './image\\', '5890390_C.PNG', '', 1, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718953010001', '5890390', 'D', './image\\', '5890390_D.PNG', '', 1, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745297010000', '1506649', 'A', './image\\', '1506649_A.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745299010000', '1506649', 'B', './image\\', '1506649_B.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745300010000', '1506649', 'C', './image\\', '1506649_C.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745301010000', '1506649', 'D', './image\\', '1506649_D.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745301010001', '1506649', 'E', './image\\', '1506649_E.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745302010000', '1506649', 'F', './image\\', '1506649_F.PNG', '', 1, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760263010000', '1538906', 'A', './image\\', '1538906_A.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760265010000', '1538906', 'B', './image\\', '1538906_B.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760266010000', '1538906', 'C', './image\\', '1538906_C.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760266010001', '1538906', 'D', './image\\', '1538906_D.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760267010000', '1538906', 'E', './image\\', '1538906_E.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760268010000', '1538906', 'F', './image\\', '1538906_F.PNG', '', 1, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929223010000', '2906005', 'A', './image\\', '2906005_A.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929224010000', '2906005', 'B', './image\\', '2906005_B.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929225010000', '2906005', 'C', './image\\', '2906005_C.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929226010000', '2906005', 'D', './image\\', '2906005_D.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929227010000', '2906005', 'E', './image\\', '2906005_E.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929228010000', '2906005', 'F', './image\\', '2906005_F.PNG', '', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950332010000', '2011147', 'A', './image\\', '2011147_A.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950334010000', '2011147', 'B', './image\\', '2011147_B.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950335010000', '2011147', 'C', './image\\', '2011147_C.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950336010000', '2011147', 'D', './image\\', '2011147_D.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950336010001', '2011147', 'E', './image\\', '2011147_E.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950337010000', '2011147', 'F', './image\\', '2011147_F.PNG', '', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998244010000', '3467620', 'A1', './image\\', '3467620_A1.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998245010000', '3467620', 'A2', './image\\', '3467620_A2.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998246010000', '3467620', 'B1', './image\\', '3467620_B1.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998247010000', '3467620', 'B2', './image\\', '3467620_B2.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998248010000', '3467620', 'B3', './image\\', '3467620_B3.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998249010000', '3467620', 'B4', './image\\', '3467620_B4.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998250010000', '3467620', 'B5', './image\\', '3467620_B5.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998251010000', '3467620', 'B6', './image\\', '3467620_B6.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998252010000', '3467620', 'B7', './image\\', '3467620_B7.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998253010000', '3467620', 'C1', './image\\', '3467620_C1.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998254010000', '3467620', 'C2', './image\\', '3467620_C2.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998255010000', '3467620', 'C3', './image\\', '3467620_C3.PNG', '', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014171010000', '1167821', 'A', './image\\', '1167821_A.PNG', '', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014172010000', '1167821', 'B', './image\\', '1167821_B.PNG', '', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014173010000', '1167821', 'C', './image\\', '1167821_C.PNG', '', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014174010000', '1167821', 'D', './image\\', '1167821_D.PNG', '', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014175010000', '1167821', 'E', './image\\', '1167821_E.PNG', '', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755942010000', '2270831', 'A', './image\\', '2270831_A.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755954010000', '2270831', 'B', './image\\', '2270831_B.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755956010000', '2270831', 'C', './image\\', '2270831_C.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755958010000', '2270831', 'D', './image\\', '2270831_D.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755959010000', '2270831', 'E', './image\\', '2270831_E.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755961010000', '2270831', 'F', './image\\', '2270831_F.PNG', '', 1, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920371010000', '2176720', 'A', './image\\', '2176720_A.PNG', '', 1, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920372010000', '2176720', 'B', './image\\', '2176720_B.PNG', '', 1, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920373010000', '2176720', 'C', './image\\', '2176720_C.PNG', '', 1, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960829010000', '2451668', 'A', './image\\', '2451668_A.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960831010000', '2451668', 'B', './image\\', '2451668_B.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960832010000', '2451668', 'C', './image\\', '2451668_C.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960833010000', '2451668', 'D', './image\\', '2451668_D.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960834010000', '2451668', 'E', './image\\', '2451668_E.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960834010001', '2451668', 'F', './image\\', '2451668_F.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960835010000', '2451668', 'G', './image\\', '2451668_G.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960836010000', '2451668', 'I', './image\\', '2451668_I.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960837010000', '2451668', 'J', './image\\', '2451668_J.PNG', '', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357258010000', '6I9476', 'A', './image\\', '6I9476_A.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357260010000', '6I9476', 'B', './image\\', '6I9476_B.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357261010000', '6I9476', 'C', './image\\', '6I9476_C.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357262010000', '6I9476', 'D', './image\\', '6I9476_D.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357263010000', '6I9476', 'E', './image\\', '6I9476_E.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005357264010000', '6I9476', 'F', './image\\', '6I9476_F.PNG', '', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410318010000', '5936452', 'A', './image\\', '5936452_A.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410320010000', '5936452', 'B', './image\\', '5936452_B.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410322010000', '5936452', 'C', './image\\', '5936452_C.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410322010001', '5936452', 'D', './image\\', '5936452_D.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410324010000', '5936452', 'E', './image\\', '5936452_E.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410325010000', '5936452', 'E1', './image\\', '5936452_E1.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410326010000', '5936452', 'F', './image\\', '5936452_F.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410327010000', '5936452', 'G', './image\\', '5936452_G.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410328010000', '5936452', 'H', './image\\', '5936452_H.PNG', '', 1, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798241010000', '5153350', 'A', './image\\', '5153350_A.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798243010000', '5153350', 'B', './image\\', '5153350_B.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798244010000', '5153350', 'C', './image\\', '5153350_C.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798245010000', '5153350', 'D', './image\\', '5153350_D.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798246010000', '5153350', 'E', './image\\', '5153350_E.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798247010000', '5153350', 'F', './image\\', '5153350_F.PNG', '', 1, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022359010000', '1242885', 'A', './image\\', '1242885_A.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022361010000', '1242885', 'B', './image\\', '1242885_B.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022362010000', '1242885', 'C', './image\\', '1242885_C.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022363010000', '1242885', 'D', './image\\', '1242885_D.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022364010000', '1242885', 'E', './image\\', '1242885_E.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022365010000', '1242885', 'F', './image\\', '1242885_F.PNG', '', 1, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528112010000', '3266549', 'A', './image', '3266549_A.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528113010000', '3266549', 'B', './image', '3266549_B.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528114010000', '3266549', 'C', './image', '3266549_C.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528115010000', '3266549', 'D', './image', '3266549_D.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528116010000', '3266549', 'E', './image', '3266549_E.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528117010000', '3266549', 'F', './image', '3266549_F.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528118010000', '3266549', 'G', './image', '3266549_G.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528119010000', '3266549', 'H', './image', '3266549_H.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528119010001', '3266549', 'I', './image', '3266549_I.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009528120010000', '3266549', 'J', './image', '3266549_J.PNG', '', 1, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644897010000', '6E5134', 'A', './image\\', '6E5134_A.PNG', '', 1, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644898010000', '6E5134', 'B', './image\\', '6E5134_B.PNG', '', 1, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644899010000', '6E5134', 'C', './image\\', '6E5134_C.PNG', '', 1, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190306010000', '1483530', 'A', './image\\', '1483530_A.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190307010000', '1483530', 'B', './image\\', '1483530_B.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190308010000', '1483530', 'C', './image\\', '1483530_C.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190309010000', '1483530', 'D', './image\\', '1483530_D.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190310010000', '1483530', 'E', './image\\', '1483530_E.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190311010000', '1483530', 'F', './image\\', '1483530_F.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190312010000', '1483530', 'G', './image\\', '1483530_G.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190313010000', '1483530', 'H', './image\\', '1483530_H.PNG', '', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010000', '2451669', 'A', './image\\', '2451669_A.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010001', '2451669', 'B', './image\\', '2451669_B.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010002', '2451669', 'C', './image\\', '2451669_C.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010003', '2451669', 'D', './image\\', '2451669_D.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010004', '2451669', 'E', './image\\', '2451669_E.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010005', '2451669', 'F', './image\\', '2451669_F.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010006', '2451669', 'G', './image\\', '2451669_G.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010007', '2451669', 'I', './image\\', '2451669_I.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176216137010008', '2451669', 'J', './image\\', '2451669_J.PNG', '', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515425010000', '4832252', 'A', './image\\', '4832252_A.PNG', '', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515427010000', '4832252', 'B', './image\\', '4832252_B.PNG', '', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515428010000', '4832252', 'C', './image\\', '4832252_C.PNG', '', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338322010000', '4448048', '子装配-1', './image', '4448048_子装配-1.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338334010000', '4448048', '子装配-2', './image', '4448048_子装配-2.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338336010000', '4448048', '子装配-3', './image', '4448048_子装配-3.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338338010000', '4448048', '一工位-1', './image', '4448048_一工位-1.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338339010000', '4448048', '一工位-2', './image', '4448048_一工位-2.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338340010000', '4448048', '一工位-3', './image', '4448048_一工位-3.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338341010000', '4448048', '二工位-1', './image', '4448048_二工位-1.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338342010000', '4448048', '二工位-2', './image', '4448048_二工位-2.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338345010000', '4448048', '二工位-3', './image', '4448048_二工位-3.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338346010000', '4448048', '二工位-4', './image', '4448048_二工位-4.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742181338347010000', '4448048', '终装配', './image', '4448048_终装配.PNG', '', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604596010000', '5256758', 'A1', './image\\', '5256758_A1.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604598010000', '5256758', 'A2', './image\\', '5256758_A2.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604601010000', '5256758', 'A3', './image\\', '5256758_A3.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604602010000', '5256758', 'A4', './image\\', '5256758_A4.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604604010000', '5256758', 'A5', './image\\', '5256758_A5.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604605010000', '5256758', 'A6', './image\\', '5256758_A6.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604606010000', '5256758', 'A7', './image\\', '5256758_A7.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604613010000', '5256758', 'A8', './image\\', '5256758_A8.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604627010000', '5256758', 'A9', './image\\', '5256758_A9.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604629010000', '5256758', 'A10', './image\\', '5256758_A10.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604631010000', '5256758', 'A11', './image\\', '5256758_A11.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604632010000', '5256758', 'A12', './image\\', '5256758_A12.PNG', '', 1, '2025-03-17 13:00:05', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264525010000', '5173289', 'A', './image', '5173289_A.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264527010000', '5173289', 'B', './image', '5173289_B.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264529010000', '5173289', 'C', './image', '5173289_C.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264530010000', '5173289', 'D', './image', '5173289_D.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264532010000', '5173289', 'E', './image', '5173289_E.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264534010000', '5173289', 'F', './image', '5173289_F.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264535010000', '5173289', 'G', './image', '5173289_G.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264543010000', '5173289', 'I', './image', '5173289_I.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742188264545010000', '5173289', 'J', './image', '5173289_J.PNG', '', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873142010000', '5013713', 'A', './image\\', '5013713_A.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873147010000', '5013713', 'B', './image\\', '5013713_B.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873150010000', '5013713', 'C', './image\\', '5013713_C.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873151010000', '5013713', 'D', './image\\', '5013713_D.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873152010000', '5013713', 'E', './image\\', '5013713_E.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873153010000', '5013713', 'F', './image\\', '5013713_F.PNG', '', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742191644615010000', '6137645', '一工位-1', './image', '6137645_一工位-1.PNG', '', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742191644617010000', '6137645', '一工位-2', './image', '6137645_一工位-2.PNG', '', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742191644622010000', '6137645', '二工位-1', './image', '6137645_二工位-1.PNG', '', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742191644623010000', '6137645', '二工位-2', './image', '6137645_二工位-2.PNG', '', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742191644625010000', '6137645', '终装配', './image', '6137645_终装配.PNG', '', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503496010000', '4648501', '一工位-1', './image', '4648501_一工位-1.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503497010000', '4648501', '一工位-2', './image', '4648501_一工位-2.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503502010000', '4648501', '二工位-1', './image', '4648501_二工位-1.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503503010000', '4648501', '二工位-2', './image', '4648501_二工位-2.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503504010000', '4648501', '二工位-3', './image', '4648501_二工位-3.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742192503505010000', '4648501', '终装配', './image', '4648501_终装配.PNG', '', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307280010000', '1275500', 'A', './image\\', '1275500_A.PNG', '', 1, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307282010000', '1275500', 'B', './image\\', '1275500_B.PNG', '', 1, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307283010000', '1275500', 'C', './image\\', '1275500_C.PNG', '', 1, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307284010000', '1275500', 'D', './image\\', '1275500_D.PNG', '', 1, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307286010000', '1275500', 'E终装', './image\\', '1275500_E终装.PNG', '', 1, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435228010000', '4560776', 'A', './image', '4560776_A.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435230010000', '4560776', 'B', './image', '4560776_B.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435231010000', '4560776', 'C', './image', '4560776_C.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435232010000', '4560776', 'D', './image', '4560776_D.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435233010000', '4560776', 'E', './image', '4560776_E.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435235010000', '4560776', 'F终装', './image', '4560776_F终装.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196435236010000', '4560776', 'G终装', './image\\', '4560776_G终装.PNG', '', 1, '2025-03-17 15:27:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223327010000', '1423996', 'A', './image', '1423996_A.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223329010000', '1423996', 'B', './image', '1423996_B.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223331010000', '1423996', 'C', './image', '1423996_C.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223333010000', '1423996', 'D', './image', '1423996_D.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223334010000', '1423996', 'E', './image', '1423996_E.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197223337010000', '1423996', 'F终装', './image', '1423996_F终装.PNG', '', 1, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481180010000', '1668495', 'A', './image\\', '1668495_A.PNG', '', 1, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481181010000', '1668495', 'B', './image\\', '1668495_B.PNG', '', 1, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481183010000', '1668495', 'C', './image\\', '1668495_C.PNG', '', 1, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481184010000', '1668495', 'D', './image\\', '1668495_D.PNG', '', 1, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481185010000', '1668495', 'E终装', './image\\', '1668495_E终装.PNG', '', 1, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533375010000', '4914631', 'A', './image\\', '4914631_A.PNG', '', 1, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533377010000', '4914631', 'B', './image\\', '4914631_B.PNG', '', 1, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533378010000', '4914631', 'C', './image\\', '4914631_C.PNG', '', 1, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533379010000', '4914631', 'D', './image\\', '4914631_D.PNG', '', 1, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533381010000', '4914631', 'E终装', './image\\', '4914631_E终装.PNG', '', 1, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095669010000', '4T2746', 'A', './image\\', '4T2746_A.PNG', '', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109792010000', '4758870', 'A', './image', '4758870_A.PNG', '', 1, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109801010000', '4758870', 'B', './image', '4758870_B.PNG', '', 1, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591685010000', '6561250', 'A', './image', '6561250_A.PNG', '', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591686010000', '6561250', 'B', './image', '6561250_B.PNG', '', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640455010000', '5924374', 'A', './image', '5924374_A.PNG', '', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640458010000', '5924374', 'B', './image', '5924374_B.PNG', '', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622828010000', '1334239', 'A', './image', '1334239_A.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622842010000', '1334239', 'B', './image', '1334239_B.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622843010000', '1334239', 'C', './image', '1334239_C.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622845010000', '1334239', 'D', './image', '1334239_D.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622846010000', '1334239', 'E', './image', '1334239_E.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742264622846010001', '1334239', 'F', './image', '1334239_F.PNG', '', 1, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768123010000', '1941465', 'A', './image', '1941465_A.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768125010000', '1941465', 'B', './image', '1941465_B.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768126010000', '1941465', 'C', './image', '1941465_C.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768129010000', '1941465', 'D', './image', '1941465_D.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768130010000', '1941465', 'E', './image', '1941465_E.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768132010000', '1941465', 'F', './image', '1941465_F.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272768133010000', '1941465', 'G', './image', '1941465_G.PNG', '', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273043593010000', '3467607', 'A', './image', '3467607_A.PNG', '', 1, '2025-03-18 12:44:04', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070994010000', '5775912', 'A', './image', '5775912_A.PNG', '', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070996010000', '5775912', 'B', './image', '5775912_B.PNG', '', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070997010000', '5775912', 'C', './image', '5775912_C.PNG', '', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070999010000', '5775912', 'D', './image', '5775912_D.PNG', '', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273071001010000', '5775912', 'E', './image', '5775912_E.PNG', '', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447581010000', '3698366', 'A', './image', '3698366_A.PNG', '', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070038010000', '4Z6292', 'A', './image', '4Z6292_A.PNG', '', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070039010000', '4Z6292', 'B', './image', '4Z6292_B.PNG', '', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083148010000', '1011939', 'A', './image', '1011939_A.PNG', '', 1, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083149010000', '1011939', 'B', './image', '1011939_B.PNG', '', 1, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083150010000', '1011939', 'C', './image', '1011939_C.PNG', '', 1, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100086010000', '3761235', 'A', './image', '3761235_A.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100088010000', '3761235', 'B', './image', '3761235_B.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100089010000', '3761235', 'C', './image', '3761235_C.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100090010000', '3761235', 'D', './image', '3761235_D.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100091010000', '3761235', 'E', './image', '3761235_E.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100092010000', '3761235', 'F', './image', '3761235_F.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100093010000', '3761235', 'G', './image', '3761235_G.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100094010000', '3761235', 'H', './image', '3761235_H.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100095010000', '3761235', 'I', './image', '3761235_I.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100096010000', '3761235', 'J', './image', '3761235_J.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100096010001', '3761235', 'K', './image', '3761235_K.PNG', '', 1, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560746010000', '1291899', 'B', './image', '1291899_B.PNG', '', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560748010000', '1291899', 'C', './image', '1291899_C.PNG', '', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052538010000', '3623316', 'A', './image', '3623316_A.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052539010000', '3623316', 'B', './image', '3623316_B.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052540010000', '3623316', 'D', './image', '3623316_D.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052543010000', '3623316', 'F', './image', '3623316_F.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052544010000', '3623316', 'G', './image', '3623316_G.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052545010000', '3623316', 'H', './image', '3623316_H.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052546010000', '3623316', 'I', './image', '3623316_I.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052547010000', '3623316', 'J', './image', '3623316_J.PNG', '', 1, '2025-03-18 15:14:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017320010000', '3623314', 'A', './image', '3623314_A.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017322010000', '3623314', 'B', './image', '3623314_B.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017323010000', '3623314', 'D', './image', '3623314_D.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017324010000', '3623314', 'E', './image', '3623314_E.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017325010000', '3623314', 'F', './image', '3623314_F.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017326010000', '3623314', 'G', './image', '3623314_G.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017327010000', '3623314', 'I', './image', '3623314_I.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017328010000', '3623314', 'J', './image', '3623314_J.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283017329010000', '3623314', 'L', './image', '3623314_L.PNG', '', 1, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354805010000', '4906529', 'A', './image', '4906529_A.PNG', '', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354807010000', '4906529', 'B', './image', '4906529_B.PNG', '', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354807010001', '4906529', 'C', './image', '4906529_C.PNG', '', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354808010000', '4906529', 'D', './image', '4906529_D.PNG', '', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522100010000', '1288647', 'A', './image', '1288647_A.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522102010000', '1288647', 'B', './image', '1288647_B.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522103010000', '1288647', 'C', './image', '1288647_C.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522104010000', '1288647', 'D', './image', '1288647_D.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522105010000', '1288647', 'E', './image', '1288647_E.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522107010000', '1288647', 'F', './image', '1288647_F.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283522108010000', '1288647', 'G', './image', '1288647_G.PNG', '', 1, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601922010000', '1151007', 'A', './image', '1151007_A.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601924010000', '1151007', 'B', './image', '1151007_B.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601926010000', '1151007', 'C', './image', '1151007_C.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601927010000', '1151007', 'D', './image', '1151007_D.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601928010000', '1151007', 'E', './image', '1151007_E.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601929010000', '1151007', 'F', './image', '1151007_F.PNG', '', 1, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590281010000', '9T1781', 'A', './image', '9T1781_A.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590282010000', '9T1781', 'B', './image', '9T1781_B.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590283010000', '9T1781', 'C', './image', '9T1781_C.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590284010000', '9T1781', 'E', './image', '9T1781_E.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590285010000', '9T1781', 'F', './image', '9T1781_F.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590285010001', '9T1781', 'G', './image', '9T1781_G.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590286010000', '9T1781', 'H', './image', '9T1781_H.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590287010000', '9T1781', 'I', './image', '9T1781_I.PNG', '', 1, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409194010000', '9T1788', 'A', './image', '9T1788_A.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409198010000', '9T1788', 'B', './image', '9T1788_B.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409199010000', '9T1788', 'C', './image', '9T1788_C.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409207010000', '9T1788', 'D', './image', '9T1788_D.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409211010000', '9T1788', 'F', './image', '9T1788_F.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409213010000', '9T1788', 'G', './image', '9T1788_G.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409215010000', '9T1788', 'H', './image', '9T1788_H.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409219010000', '9T1788', 'I', './image', '9T1788_I.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409220010000', '9T1788', 'J', './image', '9T1788_J.PNG', '', 1, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208986010000', '6055348', 'A', './image', '6055348_A.PNG', '', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029853010000', '3623309', 'A', './image', '3623309_A.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029854010000', '3623309', 'B', './image', '3623309_B.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029855010000', '3623309', 'D', './image', '3623309_D.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029856010000', '3623309', 'E', './image', '3623309_E.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029857010000', '3623309', 'F1', './image', '3623309_F1.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029858010000', '3623309', 'F2', './image', '3623309_F2.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029858010001', '3623309', 'F3', './image', '3623309_F3.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029860010000', '3623309', 'F4', './image', '3623309_F4.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029860010001', '3623309', 'F5', './image', '3623309_F5.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029861010000', '3623309', '预装1', './image', '3623309_预装1.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029862010000', '3623309', '预装2', './image', '3623309_预装2.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029864010000', '3623309', '预装3', './image', '3623309_预装3.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029865010000', '3623309', '预装4', './image', '3623309_预装4.PNG', '', 1, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421401010000', '2350403', 'A', './image', '2350403_A.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421402010000', '2350403', 'B', './image', '2350403_B.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421405010000', '2350403', 'C', './image', '2350403_C.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421407010000', '2350403', 'D', './image', '2350403_D.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421408010000', '2350403', 'F', './image', '2350403_F.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421409010000', '2350403', 'H', './image', '2350403_H.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421410010000', '2350403', '预装配1', './image', '2350403_预装配1.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421411010000', '2350403', '预装配2', './image', '2350403_预装配2.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421412010000', '2350403', '预装配3', './image', '2350403_预装配3.PNG', '', 1, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979796010000', '2698155', 'A', './image', '2698155_A.PNG', '', 1, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979798010000', '2698155', 'B', './image', '2698155_B.PNG', '', 1, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979799010000', '2698155', 'C', './image', '2698155_C.PNG', '', 1, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979800010000', '2698155', 'D', './image', '2698155_D.PNG', '', 1, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979801010000', '2698155', 'E', './image', '2698155_E.PNG', '', 1, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754140010000', '6E3037', 'A', './image', '6E3037_A.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754141010000', '6E3037', 'B', './image', '6E3037_B.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754143010000', '6E3037', 'C', './image', '6E3037_C.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754144010000', '6E3037', 'D', './image', '6E3037_D.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754145010000', '6E3037', 'E', './image', '6E3037_E.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754146010000', '6E3037', 'F', './image', '6E3037_F.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754147010000', '6E3037', 'G', './image', '6E3037_G.PNG', '', 1, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143420010000', '1048646', 'A', './image', '1048646_A.PNG', '', 1, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143423010000', '1048646', 'B', './image', '1048646_B.PNG', '', 1, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143426010000', '1048646', 'C', './image', '1048646_C.PNG', '', 1, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143430010000', '1048646', 'D', './image', '1048646_D.PNG', '', 1, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384567010000', '1070543', 'A', './image', '1070543_A.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384569010000', '1070543', 'B', './image', '1070543_B.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384571010000', '1070543', 'C', './image', '1070543_C.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384572010000', '1070543', 'D', './image', '1070543_D.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384573010000', '1070543', 'E', './image', '1070543_E.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384574010000', '1070543', 'F', './image', '1070543_F.PNG', '', 1, '2025-03-19 14:56:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367809017010000', '2500551', 'A', './image', '2500551_A.PNG', '', 1, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367809019010000', '2500551', 'B', './image', '2500551_B.PNG', '', 1, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367809020010000', '2500551', 'C', './image', '2500551_C.PNG', '', 1, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367809021010000', '2500551', 'D', './image', '2500551_D.PNG', '', 1, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331950010000', '3701232', 'A', './image', '3701232_A.PNG', '', 1, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331951010000', '3701232', 'B', './image', '3701232_B.PNG', '', 1, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331953010000', '3701232', 'C', './image', '3701232_C.PNG', '', 1, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331954010000', '3701232', 'D', './image', '3701232_D.PNG', '', 1, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530322010000', '3701261', 'A', './image', '3701261_A.PNG', '', 1, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530324010000', '3701261', 'B', './image', '3701261_B.PNG', '', 1, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530325010000', '3701261', 'C', './image', '3701261_C.PNG', '', 1, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798781010000', '3701259', 'A', './image', '3701259_A.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798782010000', '3701259', 'B', './image', '3701259_B.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798783010000', '3701259', 'C', './image', '3701259_C.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798784010000', '3701259', 'D', './image', '3701259_D.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798785010000', '3701259', 'E', './image', '3701259_E.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798786010000', '3701259', 'F', './image', '3701259_F.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798787010000', '3701259', 'G', './image', '3701259_G.PNG', '', 1, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196993010000', '3701257', 'A', './image', '3701257_A.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196995010000', '3701257', 'B', './image', '3701257_B.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196996010000', '3701257', 'C', './image', '3701257_C.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196997010000', '3701257', 'D', './image', '3701257_D.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196998010000', '3701257', 'E', './image', '3701257_E.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196999010000', '3701257', 'F', './image', '3701257_F.PNG', '', 1, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767379010000', '3701253', 'A', './image', '3701253_A.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767384010000', '3701253', 'B', './image', '3701253_B.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767387010000', '3701253', 'C', './image', '3701253_C.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767389010000', '3701253', 'D', './image', '3701253_D.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767391010000', '3701253', 'E', './image', '3701253_E.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767393010000', '3701253', 'F', './image', '3701253_F.PNG', '', 1, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967248010000', '3701235', 'A', './image', '3701235_A.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967250010000', '3701235', 'B', './image', '3701235_B.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967256010000', '3701235', 'C', './image', '3701235_C.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967258010000', '3701235', 'D', './image', '3701235_D.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967262010000', '3701235', 'E', './image', '3701235_E.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967263010000', '3701235', 'F', './image', '3701235_F.PNG', '', 1, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556236010000', '3701245', 'A', './image', '3701245_A.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556238010000', '3701245', 'B', './image', '3701245_B.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556240010000', '3701245', 'C', './image', '3701245_C.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556243010000', '3701245', 'D', './image', '3701245_D.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556246010000', '3701245', 'E', './image', '3701245_E.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556251010000', '3701245', 'F', './image', '3701245_F.PNG', '', 1, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491987010000', '3934854', 'A', './image', '3934854_A.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491995010000', '3934854', 'B', './image', '3934854_B.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439492005010000', '3934854', 'C', './image', '3934854_C.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439492007010000', '3934854', 'D', './image', '3934854_D.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439492009010000', '3934854', 'E', './image', '3934854_E.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439492010010000', '3934854', 'F', './image', '3934854_F.PNG', '', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792313010000', '3939136', 'A', './image', '3939136_A.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792315010000', '3939136', 'B', './image', '3939136_B.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792316010000', '3939136', 'C', './image', '3939136_C.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792320010000', '3939136', 'D', './image', '3939136_D.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792324010000', '3939136', 'E', './image', '3939136_E.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792326010000', '3939136', 'G', './image', '3939136_G.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792327010000', '3939136', 'H', './image', '3939136_H.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792328010000', '3939136', 'I', './image', '3939136_I.PNG', '', 1, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894373010000', '3939137', 'A', './image', '3939137_A.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894374010000', '3939137', 'B', './image', '3939137_B.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894375010000', '3939137', 'C', './image', '3939137_C.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894376010000', '3939137', 'D', './image', '3939137_D.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894377010000', '3939137', 'E', './image', '3939137_E.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894378010000', '3939137', 'F', './image', '3939137_F.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894379010000', '3939137', 'H', './image', '3939137_H.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894380010000', '3939137', 'I', './image', '3939137_I.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742446894381010000', '3939137', 'K', './image', '3939137_K.PNG', '', 1, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195400010000', '3939138', 'A', './image', '3939138_A.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195402010000', '3939138', 'B', './image', '3939138_B.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195403010000', '3939138', 'C', './image', '3939138_C.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195404010000', '3939138', 'D', './image', '3939138_D.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195405010000', '3939138', 'F', './image', '3939138_F.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195406010000', '3939138', 'G', './image', '3939138_G.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195406010001', '3939138', 'H', './image', '3939138_H.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195406010002', '3939138', 'I', './image', '3939138_I.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195409010000', '3939138', 'K', './image', '3939138_K.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195409010001', '3939138', 'M', './image', '3939138_M.PNG', '', 1, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537597010000', '3612413', 'A', './image', '3612413_A.PNG', '', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537601010000', '3612413', 'B', './image', '3612413_B.PNG', '', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537621010000', '3612413', 'C', './image', '3612413_C.PNG', '', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537629010000', '3612413', 'D', './image', '3612413_D.PNG', '', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451953322010000', '3612415', 'A', './image', '3612415_A.PNG', '', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451953332010000', '3612415', 'B', './image', '3612415_B.PNG', '', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451953334010000', '3612415', 'C', './image', '3612415_C.PNG', '', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451953337010000', '3612415', 'D', './image', '3612415_D.PNG', '', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451953338010000', '3612415', 'E', './image', '3612415_E.PNG', '', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102095010000', '3513626', 'A', './image', '3513626_A.PNG', '', 1, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102097010000', '3513626', 'B', './image', '3513626_B.PNG', '', 1, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102099010000', '3513626', 'C', './image', '3513626_C.PNG', '', 1, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102100010000', '3513626', 'D', './image', '3513626_D.PNG', '', 1, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431137010000', '3706919', 'A', './image', '3706919_A.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431140010000', '3706919', 'B', './image', '3706919_B.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431141010000', '3706919', 'C', './image', '3706919_C.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431143010000', '3706919', 'D', './image', '3706919_D.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431149010000', '3706919', 'E', './image', '3706919_E.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452431151010000', '3706919', 'F', './image', '3706919_F.PNG', '', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010000', '5195778', 'A', './image', '5195778_A.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010001', '5195778', 'B', './image', '5195778_B.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010002', '5195778', 'D', './image', '5195778_D.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010003', '5195778', 'E', './image', '5195778_E.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010004', '5195778', 'F', './image', '5195778_F.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010005', '5195778', 'G', './image', '5195778_G.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742453417974010006', '5195778', 'H', './image', '5195778_H.PNG', '', 1, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685075010000', '5195781', 'A', './image', '5195781_A.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685077010000', '5195781', 'B', './image', '5195781_B.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685078010000', '5195781', 'C', './image', '5195781_C.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685079010000', '5195781', 'D', './image', '5195781_D.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685080010000', '5195781', 'E', './image', '5195781_E.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685081010000', '5195781', 'F', './image', '5195781_F.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685082010000', '5195781', 'G', './image', '5195781_G.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685082010001', '5195781', 'H', './image', '5195781_H.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685083010000', '5195781', 'I', './image', '5195781_I.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685084010000', '5195781', 'J', './image', '5195781_J.PNG', '', 1, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256745010000', '5195782', 'A', './image', '5195782_A.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256747010000', '5195782', 'B', './image', '5195782_B.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256748010000', '5195782', 'C', './image', '5195782_C.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256749010000', '5195782', 'D', './image', '5195782_D.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256750010000', '5195782', 'E', './image', '5195782_E.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256751010000', '5195782', 'F', './image', '5195782_F.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256752010000', '5195782', 'G', './image', '5195782_G.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256753010000', '5195782', 'H', './image', '5195782_H.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256754010000', '5195782', 'I', './image', '5195782_I.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256755010000', '5195782', 'J', './image', '5195782_J.PNG', '', 1, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216120010000', '5195783', 'A', './image', '5195783_A.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216123010000', '5195783', 'B', './image', '5195783_B.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216124010000', '5195783', 'C', './image', '5195783_C.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216125010000', '5195783', 'D', './image', '5195783_D.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216126010000', '5195783', 'E', './image', '5195783_E.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216127010000', '5195783', 'E1', './image', '5195783_E1.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216129010000', '5195783', 'F', './image', '5195783_F.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216130010000', '5195783', 'G', './image', '5195783_G.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216131010000', '5195783', 'H', './image', '5195783_H.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456216132010000', '5195783', 'I', './image', '5195783_I.PNG', '', 1, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557037010000', '5195784', 'A', './image', '5195784_A.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557038010000', '5195784', 'B', './image', '5195784_B.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557039010000', '5195784', 'C', './image', '5195784_C.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557040010000', '5195784', 'D', './image', '5195784_D.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557041010000', '5195784', 'E', './image', '5195784_E.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557042010000', '5195784', 'F', './image', '5195784_F.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557043010000', '5195784', 'G', './image', '5195784_G.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557044010000', '5195784', 'H', './image', '5195784_H.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557045010000', '5195784', 'I', './image', '5195784_I.PNG', '', 1, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055811010000', '5652462', 'A', './image', '5652462_A.PNG', '', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055813010000', '5652462', 'B', './image', '5652462_B.PNG', '', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068731010000', '5978192', 'A', './image', '5978192_A.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068732010000', '5978192', 'B', './image', '5978192_B.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068733010000', '5978192', 'C', './image', '5978192_C.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068735010000', '5978192', 'D', './image', '5978192_D.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068735010001', '5978192', 'E', './image', '5978192_E.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068737010000', '5978192', 'F', './image', '5978192_F.PNG', '', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083194010000', '3792240', 'A', './image', '3792240_A.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083196010000', '3792240', 'B', './image', '3792240_B.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083199010000', '3792240', 'C', './image', '3792240_C.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083203010000', '3792240', 'D', './image', '3792240_D.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083205010000', '3792240', 'E', './image', '3792240_E.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083206010000', '3792240', 'F', './image', '3792240_F.PNG', '', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095467010000', '1303122', 'A', './image', '1303122_A.PNG', '', 1, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095469010000', '1303122', 'B', './image', '1303122_B.PNG', '', 1, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095470010000', '1303122', 'C', './image', '1303122_C.PNG', '', 1, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520107898010000', '7T6428', 'A', './image', '7T6428_A.PNG', '', 1, '2025-03-21 09:21:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119939010000', '5218492', 'A', './image', '5218492_A.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119941010000', '5218492', 'B', './image', '5218492_B.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119943010000', '5218492', 'C', './image', '5218492_C.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119944010000', '5218492', 'D', './image', '5218492_D.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119945010000', '5218492', 'E', './image', '5218492_E.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119946010000', '5218492', 'F', './image', '5218492_F.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520119948010000', '5218492', 'G', './image', '5218492_G.PNG', '', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155080010000', '4165352', 'A', './image', '4165352_A.PNG', '', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166667010000', '4165348', 'A', './image', '4165348_A.PNG', '', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886742010000', '9T7420', 'A', './image', '9T7420_A.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886744010000', '9T7420', 'B', './image', '9T7420_B.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886745010000', '9T7420', 'C', './image', '9T7420_C.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886746010000', '9T7420', 'D', './image', '9T7420_D.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886747010000', '9T7420', 'E', './image', '9T7420_E.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520886748010000', '9T7420', 'F终装', './image', '9T7420_F终装.PNG', '', 1, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052151010000', '1303117', 'A', './image', '1303117_A.PNG', '', 1, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052153010000', '1303117', 'B', './image', '1303117_B.PNG', '', 1, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052155010000', '1303117', 'C', './image', '1303117_C.PNG', '', 1, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521230438010000', '6E5397', 'A', './image', '6E5397_A.PNG', '', 1, '2025-03-21 09:40:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326449010000', '5173288', 'A', './image', '5173288_A.PNG', '', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586938010000', '2906007', 'A', './image', '2906007_A.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586940010000', '2906007', 'B', './image', '2906007_B.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586941010000', '2906007', 'C', './image', '2906007_C.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586942010000', '2906007', 'D', './image', '2906007_D.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586943010000', '2906007', 'E', './image', '2906007_E.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586943010001', '2906007', 'F', './image', '2906007_F.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586944010000', '2906007', 'G', './image', '2906007_G.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586945010000', '2906007', 'H', './image', '2906007_H.PNG', '', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666807010000', '6122630', 'A', './image', '6122630_A.PNG', '', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666809010000', '6122630', 'B', './image', '6122630_B.PNG', '', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217655010000', '1757852', 'A', './image', '1757852_A.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217657010000', '1757852', 'B', './image', '1757852_B.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217658010000', '1757852', 'C', './image', '1757852_C.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217659010000', '1757852', 'D', './image', '1757852_D.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217660010000', '1757852', 'E', './image', '1757852_E.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217661010000', '1757852', 'F', './image', '1757852_F.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217661010001', '1757852', 'G', './image', '1757852_G.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217662010000', '1757852', 'H', './image', '1757852_H.PNG', '', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293036010000', '3649542', 'A', './image', '3649542_A.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293039010000', '3649542', 'B', './image', '3649542_B.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293041010000', '3649542', 'C', './image', '3649542_C.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293042010000', '3649542', 'D', './image', '3649542_D.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293044010000', '3649542', 'E', './image', '3649542_E.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293045010000', '3649542', 'F', './image', '3649542_F.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293046010000', '3649542', 'G', './image', '3649542_G.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742610293048010000', '3649542', 'H', './image', '3649542_H.PNG', '', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009486010000', '3701290', 'A', './image', '3701290_A.PNG', '', 1, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009491010000', '3701290', 'B', './image', '3701290_B.PNG', '', 1, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009493010000', '3701290', 'C', './image', '3701290_C.PNG', '', 1, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009495010000', '3701290', 'D', './image', '3701290_D.PNG', '', 1, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009498010000', '3701290', 'E', './image', '3701290_E.PNG', '', 1, '2025-03-24 09:00:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009501010000', '3701290', 'F', './image', '3701290_F.PNG', '', 1, '2025-03-24 09:00:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009502010000', '3701290', 'G', './image', '3701290_G.PNG', '', 1, '2025-03-24 09:00:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009504010000', '3701290', 'H', './image', '3701290_H.PNG', '', 1, '2025-03-24 09:00:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070702010000', '9T5957', 'A', './image', '9T5957_A.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070704010000', '9T5957', 'B', './image', '9T5957_B.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070706010000', '9T5957', 'C', './image', '9T5957_C.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070707010000', '9T5957', 'D', './image', '9T5957_D.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070708010000', '9T5957', 'E', './image', '9T5957_E.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070709010000', '9T5957', 'F', './image', '9T5957_F.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070710010000', '9T5957', 'G', './image', '9T5957_G.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070711010000', '9T5957', 'H', './image', '9T5957_H.PNG', '', 1, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218192010000', '4560777', 'A', './image', '4560777_A.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218193010000', '4560777', 'B', './image', '4560777_B.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218195010000', '4560777', 'C', './image', '4560777_C.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218196010000', '4560777', 'D', './image', '4560777_D.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218197010000', '4560777', 'E', './image', '4560777_E.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218199010000', '4560777', 'F终装', './image', '4560777_F终装.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218200010000', '4560777', 'G终装', './image', '4560777_G终装.PNG', '', 1, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584457010000', '3749878', 'A', './image', '3749878_A.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584461010000', '3749878', 'B', './image', '3749878_B.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584462010000', '3749878', 'C', './image', '3749878_C.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584462010001', '3749878', 'D', './image', '3749878_D.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584462010002', '3749878', 'E', './image', '3749878_E.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584478010000', '3749878', 'F终装', './image', '3749878_F终装.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584478010001', '3749878', 'G终装', './image', '3749878_G终装.PNG', '', 1, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708322010000', '4413485', 'A', './image', '4413485_A.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708324010000', '4413485', 'B', './image', '4413485_B.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708325010000', '4413485', 'C', './image', '4413485_C.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708326010000', '4413485', 'D', './image', '4413485_D.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708327010000', '4413485', 'E', './image', '4413485_E.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708328010000', '4413485', 'F终装', './image', '4413485_F终装.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708329010000', '4413485', 'G终装', './image', '4413485_G终装.PNG', '', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944699010000', '6457847', 'A', './image', '6457847_A.PNG', '', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944700010000', '6457847', 'B', './image', '6457847_B.PNG', '', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944701010000', '6457847', 'C', './image', '6457847_C.PNG', '', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944703010000', '6457847', 'D', './image', '6457847_D.PNG', '', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944704010000', '6457847', 'E终装', './image', '6457847_E终装.PNG', '', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086538010000', '5429999', 'A', './image', '5429999_A.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086538010001', '5429999', 'B', './image', '5429999_B.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086538010002', '5429999', 'C', './image', '5429999_C.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086538010003', '5429999', 'D', './image', '5429999_D.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086554010000', '5429999', 'E', './image', '5429999_E.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086554010001', '5429999', 'F终装', './image', '5429999_F终装.PNG', '', 1, '2025-03-24 09:18:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418924010000', '4512444', 'A', './image', '4512444_A.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418926010000', '4512444', 'B', './image', '4512444_B.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418928010000', '4512444', 'C', './image', '4512444_C.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418929010000', '4512444', 'D', './image', '4512444_D.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418930010000', '4512444', 'E', './image', '4512444_E.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418932010000', '4512444', 'F', './image', '4512444_F.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418933010000', '4512444', 'G', './image', '4512444_G.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418934010000', '4512444', 'H', './image', '4512444_H.PNG', '', 1, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006051010000', '4860999', 'A', './image', '4860999_A.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006054010000', '4860999', 'B', './image', '4860999_B.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006056010000', '4860999', 'C', './image', '4860999_C.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006058010000', '4860999', 'D', './image', '4860999_D.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006060010000', '4860999', 'E', './image', '4860999_E.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781006061010000', '4860999', 'F', './image', '4860999_F.PNG', '', 1, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450084010000', '1174079', 'A', './image', '1174079_A.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450087010000', '1174079', 'B', './image', '1174079_B.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450088010000', '1174079', 'C', './image', '1174079_C.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450092010000', '1174079', 'D', './image', '1174079_D.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450095010000', '1174079', 'F', './image', '1174079_F.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450104010000', '1174079', 'G', './image', '1174079_G.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782450106010000', '1174079', 'H', './image', '1174079_H.PNG', '', 1, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831082010000', '2120394', 'A', './image', '2120394_A.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831089010000', '2120394', 'B', './image', '2120394_B.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831090010000', '2120394', 'C', './image', '2120394_C.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831092010000', '2120394', 'D', './image', '2120394_D.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831094010000', '2120394', 'E', './image', '2120394_E.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782831096010000', '2120394', 'F', './image', '2120394_F.PNG', '', 1, '2025-03-27 10:49:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219764010000', '3232245', 'A', './image', '3232245_A.PNG', '', 2, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219766010000', '3232245', 'B', './image', '3232245_B.PNG', '', 2, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321074010000', '3701255', 'A', './image', '3701255_A.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321075010000', '3701255', 'B', './image', '3701255_B.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321077010000', '3701255', 'C', './image', '3701255_C.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321078010000', '3701255', 'D', './image', '3701255_D.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321079010000', '3701255', 'E', './image', '3701255_E.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783321081010000', '3701255', 'F', './image', '3701255_F.PNG', '', 1, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954953010000', '4812462', 'A', './image', '4812462_A.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954954010000', '4812462', 'B', './image', '4812462_B.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954956010000', '4812462', 'C', './image', '4812462_C.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954956010001', '4812462', 'D', './image', '4812462_D.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954957010000', '4812462', 'E', './image', '4812462_E.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954958010000', '4812462', 'F', './image', '4812462_F.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954959010000', '4812462', 'G', './image', '4812462_G.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954960010000', '4812462', 'H', './image', '4812462_H.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954961010000', '4812462', 'I', './image', '4812462_I.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783954962010000', '4812462', 'J', './image', '4812462_J.PNG', '', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782683010000', '5241514', 'A', './image', '5241514_A.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782685010000', '5241514', 'B', './image', '5241514_B.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782687010000', '5241514', 'C', './image', '5241514_C.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782688010000', '5241514', 'D', './image', '5241514_D.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782689010000', '5241514', 'E', './image', '5241514_E.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782690010000', '5241514', 'F', './image', '5241514_F.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782691010000', '5241514', 'G', './image', '5241514_G.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742784782692010000', '5241514', 'H', './image', '5241514_H.PNG', '', 1, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871561010000', '5358582', 'A', './image', '5358582_A.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871562010000', '5358582', 'B', './image', '5358582_B.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871563010000', '5358582', 'C', './image', '5358582_C.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871568010000', '5358582', 'D', './image', '5358582_D.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871569010000', '5358582', 'E', './image', '5358582_E.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871571010000', '5358582', 'F', './image', '5358582_F.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871572010000', '5358582', 'G', './image', '5358582_G.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871574010000', '5358582', 'H', './image', '5358582_H.PNG', '', 1, '2025-03-24 11:44:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893194010000', '5426077', 'A', './image', '5426077_A.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893196010000', '5426077', 'B', './image', '5426077_B.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893197010000', '5426077', 'C', './image', '5426077_C.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893198010000', '5426077', 'D', './image', '5426077_D.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893199010000', '5426077', 'E', './image', '5426077_E.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893200010000', '5426077', 'F', './image', '5426077_F.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893201010000', '5426077', 'G', './image', '5426077_G.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893202010000', '5426077', 'H', './image', '5426077_H.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893203010000', '5426077', 'I', './image', '5426077_I.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893204010000', '5426077', 'J', './image', '5426077_J.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893205010000', '5426077', 'K', './image', '5426077_K.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893206010000', '5426077', 'L', './image', '5426077_L.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742791893207010000', '5426077', 'M', './image', '5426077_M.PNG', '', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949344010000', '6065004', 'A', './image', '6065004_A.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949346010000', '6065004', 'B', './image', '6065004_B.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949348010000', '6065004', 'C', './image', '6065004_C.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949349010000', '6065004', 'D', './image', '6065004_D.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949350010000', '6065004', 'E', './image', '6065004_E.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949352010000', '6065004', 'F', './image', '6065004_F.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949353010000', '6065004', 'G', './image', '6065004_G.PNG', '', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105574010000', '6E3035', 'A', './image', '6E3035_A.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105576010000', '6E3035', 'B', './image', '6E3035_B.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105577010000', '6E3035', 'C', './image', '6E3035_C.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105578010000', '6E3035', 'D', './image', '6E3035_D.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105579010000', '6E3035', 'E', './image', '6E3035_E.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105580010000', '6E3035', 'F', './image', '6E3035_F.PNG', '', 1, '2025-03-24 13:11:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234061010000', '5090599', 'A1', './image', '5090599_A1.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234063010000', '5090599', 'A2', './image', '5090599_A2.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234064010000', '5090599', 'A3', './image', '5090599_A3.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234065010000', '5090599', 'A4', './image', '5090599_A4.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234066010000', '5090599', 'A5', './image', '5090599_A5.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234067010000', '5090599', 'A6', './image', '5090599_A6.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793234068010000', '5090599', 'A7', './image', '5090599_A7.PNG', '', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312571010000', '6125992', 'A1', './image', '6125992_A1.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312573010000', '6125992', 'A2', './image', '6125992_A2.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312574010000', '6125992', 'A3', './image', '6125992_A3.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312575010000', '6125992', 'A4', './image', '6125992_A4.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312576010000', '6125992', 'A5', './image', '6125992_A5.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312577010000', '6125992', 'A6', './image', '6125992_A6.PNG', '', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685216010000', '6456686', 'A1', './image', '6456686_A1.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685224010000', '6456686', 'A2', './image', '6456686_A2.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685225010000', '6456686', 'A3', './image', '6456686_A3.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685226010000', '6456686', 'A4', './image', '6456686_A4.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685228010000', '6456686', 'A5', './image', '6456686_A5.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685229010000', '6456686', 'A6', './image', '6456686_A6.PNG', '', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085856010000', '4948095', 'A1', './image', '4948095_A1.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085858010000', '4948095', 'A2', './image', '4948095_A2.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085859010000', '4948095', 'A3', './image', '4948095_A3.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085860010000', '4948095', 'A4', './image', '4948095_A4.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085861010000', '4948095', 'A5', './image', '4948095_A5.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085862010000', '4948095', 'A6', './image', '4948095_A6.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085863010000', '4948095', 'A7', './image', '4948095_A7.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085864010000', '4948095', 'A8', './image', '4948095_A8.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085866010000', '4948095', 'A9', './image', '4948095_A9.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085867010000', '4948095', 'A10', './image', '4948095_A10.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085868010000', '4948095', 'A11', './image', '4948095_A11.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085869010000', '4948095', 'A12', './image', '4948095_A12.PNG', '', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044314010000', '6137643', 'A1', './image', '6137643_A1.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044316010000', '6137643', 'A2', './image', '6137643_A2.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044318010000', '6137643', 'A3', './image', '6137643_A3.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044319010000', '6137643', 'A4', './image', '6137643_A4.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044321010000', '6137643', 'A5', './image', '6137643_A5.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044324010000', '6137643', 'A6', './image', '6137643_A6.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044325010000', '6137643', 'A7', './image', '6137643_A7.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044327010000', '6137643', 'A8', './image', '6137643_A8.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044331010000', '6137643', 'A9', './image', '6137643_A9.PNG', '', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202851010000', '6078912', 'A1', './image', '6078912_A1.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202853010000', '6078912', 'A2', './image', '6078912_A2.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202854010000', '6078912', 'A3', './image', '6078912_A3.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202855010000', '6078912', 'A4', './image', '6078912_A4.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202856010000', '6078912', 'A5', './image', '6078912_A5.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202857010000', '6078912', 'A6', './image', '6078912_A6.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202858010000', '6078912', 'A7', './image', '6078912_A7.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202860010000', '6078912', 'A8', './image', '6078912_A8.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202861010000', '6078912', 'A9', './image', '6078912_A9.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202862010000', '6078912', 'A10', './image', '6078912_A10.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202863010000', '6078912', 'A11', './image', '6078912_A11.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202865010000', '6078912', 'A12', './image', '6078912_A12.PNG', '', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282155010000', '6078923', 'A1', './image', '6078923_A1.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282156010000', '6078923', 'A2', './image', '6078923_A2.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282158010000', '6078923', 'A3', './image', '6078923_A3.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282159010000', '6078923', 'A4', './image', '6078923_A4.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282161010000', '6078923', 'A5', './image', '6078923_A5.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282162010000', '6078923', 'A6', './image', '6078923_A6.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282163010000', '6078923', 'A7', './image', '6078923_A7.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282164010000', '6078923', 'A8', './image', '6078923_A8.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282165010000', '6078923', 'A9', './image', '6078923_A9.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282166010000', '6078923', 'A10', './image', '6078923_A10.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282167010000', '6078923', 'A11', './image', '6078923_A11.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282169010000', '6078923', 'A12', './image', '6078923_A12.PNG', '', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215596010000', '4415945', 'A', './image', '4415945_A.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215599010000', '4415945', 'B', './image', '4415945_B.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215602010000', '4415945', 'C', './image', '4415945_C.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215603010000', '4415945', 'D', './image', '4415945_D.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215604010000', '4415945', 'E', './image', '4415945_E.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215605010000', '4415945', 'F', './image', '4415945_F.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215606010000', '4415945', 'G', './image', '4415945_G.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215607010000', '4415945', 'H', './image', '4415945_H.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215608010000', '4415945', 'I', './image', '4415945_I.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215609010000', '4415945', 'J', './image', '4415945_J.PNG', '', 1, '2025-03-25 16:10:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291849010000', '3773674', 'A', './image', '3773674_A.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291850010000', '3773674', 'B', './image', '3773674_B.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291851010000', '3773674', 'C', './image', '3773674_C.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291852010000', '3773674', 'D', './image', '3773674_D.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291853010000', '3773674', 'E', './image', '3773674_E.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291854010000', '3773674', 'F', './image', '3773674_F.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291855010000', '3773674', 'G', './image', '3773674_G.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291856010000', '3773674', 'H', './image', '3773674_H.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291857010000', '3773674', 'I', './image', '3773674_I.PNG', '', 1, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339788010000', '4755120', 'A', './image', '4755120_A.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339790010000', '4755120', 'B', './image', '4755120_B.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339791010000', '4755120', 'D', './image', '4755120_D.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339792010000', '4755120', 'E', './image', '4755120_E.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339793010000', '4755120', 'F1', './image', '4755120_F1.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339794010000', '4755120', 'F2', './image', '4755120_F2.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339795010000', '4755120', 'F3', './image', '4755120_F3.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339796010000', '4755120', 'F4', './image', '4755120_F4.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339797010000', '4755120', 'F5', './image', '4755120_F5.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339797010001', '4755120', '预装配1', './image', '4755120_预装配1.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339799010000', '4755120', '预装配2', './image', '4755120_预装配2.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339804010000', '4755120', '预装配3', './image', '4755120_预装配3.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339806010000', '4755120', '预装配4', './image', '4755120_预装配4.PNG', '', 1, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353822010000', '6E4051', 'A', './image', '6E4051_A.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353824010000', '6E4051', 'B', './image', '6E4051_B.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353825010000', '6E4051', 'C', './image', '6E4051_C.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353826010000', '6E4051', 'D', './image', '6E4051_D.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353827010000', '6E4051', 'E', './image', '6E4051_E.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353828010000', '6E4051', 'F', './image', '6E4051_F.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353829010000', '6E4051', 'G', './image', '6E4051_G.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353830010000', '6E4051', 'H', './image', '6E4051_H.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890353831010000', '6E4051', 'I', './image', '6E4051_I.PNG', '', 1, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368736010000', '4669339', 'A', './image', '4669339_A.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368738010000', '4669339', 'B', './image', '4669339_B.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368739010000', '4669339', 'C', './image', '4669339_C.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368740010000', '4669339', 'D', './image', '4669339_D.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368741010000', '4669339', 'F', './image', '4669339_F.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368742010000', '4669339', 'G', './image', '4669339_G.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368743010000', '4669339', 'H', './image', '4669339_H.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368744010000', '4669339', 'I', './image', '4669339_I.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368744010001', '4669339', 'J', './image', '4669339_J.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368745010000', '4669339', 'K', './image', '4669339_K.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368746010000', '4669339', 'L', './image', '4669339_L.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368747010000', '4669339', 'M', './image', '4669339_M.PNG', '', 1, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387280010000', '6E4049', 'A', './image', '6E4049_A.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387282010000', '6E4049', 'B', './image', '6E4049_B.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387283010000', '6E4049', 'C', './image', '6E4049_C.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387284010000', '6E4049', 'D', './image', '6E4049_D.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387284010001', '6E4049', 'E', './image', '6E4049_E.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387285010000', '6E4049', 'F', './image', '6E4049_F.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387286010000', '6E4049', 'G', './image', '6E4049_G.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387287010000', '6E4049', 'H', './image', '6E4049_H.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890387288010000', '6E4049', 'I', './image', '6E4049_I.PNG', '', 1, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401575010000', '2698152', 'A', './image', '2698152_A.PNG', '', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401577010000', '2698152', 'B', './image', '2698152_B.PNG', '', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401578010000', '2698152', 'C', './image', '2698152_C.PNG', '', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401579010000', '2698152', 'D', './image', '2698152_D.PNG', '', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412714010000', '3773675', 'A', './image', '3773675_A.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412715010000', '3773675', 'B', './image', '3773675_B.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412716010000', '3773675', 'C', './image', '3773675_C.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412717010000', '3773675', 'D', './image', '3773675_D.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412717010001', '3773675', 'E', './image', '3773675_E.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412718010000', '3773675', 'F', './image', '3773675_F.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412719010000', '3773675', 'G', './image', '3773675_G.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412720010000', '3773675', 'H', './image', '3773675_H.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412721010000', '3773675', 'I', './image', '3773675_I.PNG', '', 1, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479973010000', '3679496', 'A', './image', '3679496_A.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479975010000', '3679496', 'B', './image', '3679496_B.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479977010000', '3679496', 'C', './image', '3679496_C.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479979010000', '3679496', 'D', './image', '3679496_D.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479980010000', '3679496', 'E', './image', '3679496_E.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479982010000', '3679496', 'F', './image', '3679496_F.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479983010000', '3679496', 'G', './image', '3679496_G.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479984010000', '3679496', 'H', './image', '3679496_H.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479985010000', '3679496', 'I', './image', '3679496_I.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479987010000', '3679496', '预装配1', './image', '3679496_预装配1.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952479988010000', '3679496', '预装配2', './image', '3679496_预装配2.PNG', '', 1, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111507010000', '3623308', 'A', './image', '3623308_A.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111510010000', '3623308', 'B', './image', '3623308_B.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111511010000', '3623308', 'D', './image', '3623308_D.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111512010000', '3623308', 'E', './image', '3623308_E.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111513010000', '3623308', 'F1', './image', '3623308_F1.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111514010000', '3623308', 'F2', './image', '3623308_F2.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111515010000', '3623308', 'F3', './image', '3623308_F3.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111516010000', '3623308', 'F4', './image', '3623308_F4.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111517010000', '3623308', 'F5', './image', '3623308_F5.PNG', '', 1, '2025-03-26 09:38:32', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874857010000', '2350402', 'A', './image', '2350402_A.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874859010000', '2350402', 'B', './image', '2350402_B.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874860010000', '2350402', 'C', './image', '2350402_C.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874861010000', '2350402', 'D', './image', '2350402_D.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874862010000', '2350402', 'F', './image', '2350402_F.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874864010000', '2350402', 'G', './image', '2350402_G.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874865010000', '2350402', '预装配1', './image', '2350402_预装配1.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874867010000', '2350402', '预装配2', './image', '2350402_预装配2.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874868010000', '2350402', '预装配3', './image', '2350402_预装配3.PNG', '', 1, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596039010000', '2350405', 'A', './image', '2350405_A.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596041010000', '2350405', 'B', './image', '2350405_B.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596043010000', '2350405', 'C', './image', '2350405_C.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596048010000', '2350405', 'D', './image', '2350405_D.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596055010000', '2350405', 'E', './image', '2350405_E.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596056010000', '2350405', 'F', './image', '2350405_F.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596065010000', '2350405', '预装配1', './image', '2350405_预装配1.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596066010000', '2350405', '预装配2', './image', '2350405_预装配2.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954596067010000', '2350405', '预装配3', './image', '2350405_预装配3.PNG', '', 1, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272043010000', '1199478', 'A', './image', '1199478_A.PNG', '', 1, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272044010000', '1199478', 'B', './image', '1199478_B.PNG', '', 1, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198721010000', '3340892', 'A', './image', '3340892_A.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198723010000', '3340892', 'B', './image', '3340892_B.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198724010000', '3340892', 'C', './image', '3340892_C.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198724010001', '3340892', 'D', './image', '3340892_D.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198725010000', '3340892', 'E', './image', '3340892_E.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198726010000', '3340892', 'F', './image', '3340892_F.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198728010000', '3340892', 'G', './image', '3340892_G.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198729010000', '3340892', 'H', './image', '3340892_H.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044198730010000', '3340892', 'I', './image', '3340892_I.PNG', '', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938184010000', '4560776', 'S', './image', '4560776_S.PNG', '', 1, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826045010000', '5426075', 'A', './image', '5426075_A.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826047010000', '5426075', 'B', './image', '5426075_B.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826048010000', '5426075', 'C', './image', '5426075_C.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826049010000', '5426075', 'D', './image', '5426075_D.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826050010000', '5426075', 'E', './image', '5426075_E.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826051010000', '5426075', 'F', './image', '5426075_F.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826051010001', '5426075', 'G', './image', '5426075_G.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826052010000', '5426075', 'H', './image', '5426075_H.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826053010000', '5426075', 'I', './image', '5426075_I.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826054010000', '5426075', 'J', './image', '5426075_J.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826055010000', '5426075', 'K', './image', '5426075_K.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826056010000', '5426075', 'L', './image', '5426075_L.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743058826058010000', '5426075', 'M', './image', '5426075_M.PNG', '', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193008010000', '9T8991', 'A', './image', '9T8991_A.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193010010000', '9T8991', 'B', './image', '9T8991_B.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193011010000', '9T8991', 'D', './image', '9T8991_D.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193012010000', '9T8991', 'E', './image', '9T8991_E.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193013010000', '9T8991', 'G', './image', '9T8991_G.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193014010000', '9T8991', 'H', './image', '9T8991_H.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148193016010000', '9T8991', 'I', './image', '9T8991_I.PNG', '', 1, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211594010000', '2714969', 'A', './image', '2714969_A.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211595010000', '2714969', 'B', './image', '2714969_B.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211596010000', '2714969', 'C', './image', '2714969_C.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211597010000', '2714969', 'D', './image', '2714969_D.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211598010000', '2714969', 'E', './image', '2714969_E.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211599010000', '2714969', 'F', './image', '2714969_F.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211600010000', '2714969', '预装配1', './image', '2714969_预装配1.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211601010000', '2714969', '预装配2', './image', '2714969_预装配2.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211602010000', '2714969', '预装配3', './image', '2714969_预装配3.PNG', '', 1, '2025-03-28 15:50:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227387010000', '6E1359', 'A', './image', '6E1359_A.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227388010000', '6E1359', 'B', './image', '6E1359_B.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227391010000', '6E1359', 'D', './image', '6E1359_D.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227392010000', '6E1359', 'E', './image', '6E1359_E.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227394010000', '6E1359', 'F', './image', '6E1359_F.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227395010000', '6E1359', 'G', './image', '6E1359_G.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227397010000', '6E1359', '预装配1', './image', '6E1359_预装配1.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227405010000', '6E1359', '预装配2', './image', '6E1359_预装配2.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227407010000', '6E1359', '预装配3', './image', '6E1359_预装配3.PNG', '', 1, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244290010000', '2350404', 'A', './image', '2350404_A.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244292010000', '2350404', 'B', './image', '2350404_B.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244293010000', '2350404', 'C', './image', '2350404_C.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244295010000', '2350404', 'D', './image', '2350404_D.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244296010000', '2350404', 'E', './image', '2350404_E.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244297010000', '2350404', 'F', './image', '2350404_F.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244298010000', '2350404', '预装配1', './image', '2350404_预装配1.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244300010000', '2350404', '预装配2', './image', '2350404_预装配2.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244301010000', '2350404', '预装配3', './image', '2350404_预装配3.PNG', '', 1, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046276010000', '6128271', 'A', './image', '6128271_A.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046290010000', '6128271', 'B', './image', '6128271_B.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046291010000', '6128271', 'C', './image', '6128271_C.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046292010000', '6128271', 'D', './image', '6128271_D.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046293010000', '6128271', 'D1', './image', '6128271_D1.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046294010000', '6128271', 'D2', './image', '6128271_D2.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046295010000', '6128271', 'E', './image', '6128271_E.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046296010000', '6128271', 'F', './image', '6128271_F.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046297010000', '6128271', 'G', './image', '6128271_G.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046298010000', '6128271', 'H', './image', '6128271_H.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046299010000', '6128271', 'I', './image', '6128271_I.PNG', '', 1, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112874010000', '2549238', 'A', './image', '2549238_A.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112876010000', '2549238', 'B', './image', '2549238_B.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112877010000', '2549238', 'C', './image', '2549238_C.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112878010000', '2549238', 'D', './image', '2549238_D.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112879010000', '2549238', 'E', './image', '2549238_E.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112880010000', '2549238', 'F', './image', '2549238_F.PNG', '', 1, '2025-03-31 12:41:53', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286833010000', '2224744', 'A', './image', '2224744_A.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286835010000', '2224744', 'B', './image', '2224744_B.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286838010000', '2224744', 'C', './image', '2224744_C.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286840010000', '2224744', 'D', './image', '2224744_D.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286841010000', '2224744', 'D1', './image', '2224744_D1.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286842010000', '2224744', 'D2', './image', '2224744_D2.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286843010000', '2224744', 'E', './image', '2224744_E.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286844010000', '2224744', 'F', './image', '2224744_F.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286845010000', '2224744', 'G', './image', '2224744_G.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286847010000', '2224744', 'H', './image', '2224744_H.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286848010000', '2224744', 'I', './image', '2224744_I.PNG', '', 1, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568752010000', '6I9514', 'A', './image', '6I9514_A.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568754010000', '6I9514', 'B', './image', '6I9514_B.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568755010000', '6I9514', 'C', './image', '6I9514_C.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568755010001', '6I9514', 'D', './image', '6I9514_D.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568756010000', '6I9514', 'E', './image', '6I9514_E.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568757010000', '6I9514', 'F', './image', '6I9514_F.PNG', '', 1, '2025-03-31 12:49:29', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010000', '3844615', 'A', './image', '3844615_A.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010001', '3844615', 'B', './image', '3844615_B.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010002', '3844615', 'C', './image', '3844615_C.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010003', '3844615', 'D', './image', '3844615_D.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010004', '3844615', 'E', './image', '3844615_E.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657408010005', '3844615', 'F', './image', '3844615_F.PNG', '', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759960010000', '1199620', 'A', './image', '1199620_A.PNG', '', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396778608010000', '6T7533', 'A', './image', '6T7533_A.PNG', '', 1, '2025-03-31 12:52:59', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396794226010000', '6005905', 'A', './image', '6005905_A.PNG', '', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396794227010000', '6005905', 'B', './image', '6005905_B.PNG', '', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014779010000', '1878636', 'A', './image', '1878636_A.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014779010001', '1878636', 'B', './image', '1878636_B.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014794010000', '1878636', 'C', './image', '1878636_C.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014797010000', '1878636', 'D', './image', '1878636_D.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014798010000', '1878636', 'E', './image', '1878636_E.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014799010000', '1878636', 'F', './image', '1878636_F.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014800010000', '1878636', 'G', './image', '1878636_G.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014801010000', '1878636', 'H', './image', '1878636_H.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014802010000', '1878636', 'I', './image', '1878636_I.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743404014803010000', '1878636', 'J', './image', '1878636_J.PNG', '', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470117010000', '3773677', 'A', './image', '3773677_A.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470121010000', '3773677', 'B', './image', '3773677_B.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470123010000', '3773677', 'C', './image', '3773677_C.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470124010000', '3773677', 'D', './image', '3773677_D.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470125010000', '3773677', 'E', './image', '3773677_E.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470126010000', '3773677', 'F', './image', '3773677_F.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470127010000', '3773677', 'G', './image', '3773677_G.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470128010000', '3773677', 'H', './image', '3773677_H.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470129010000', '3773677', 'I', './image', '3773677_I.PNG', '', 1, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534530010000', '3773676', 'A', './image', '3773676_A.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534530010001', '3773676', 'B', './image', '3773676_B.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534530010002', '3773676', 'C', './image', '3773676_C.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010000', '3773676', 'D', './image', '3773676_D.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010001', '3773676', 'E', './image', '3773676_E.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010002', '3773676', 'F', './image', '3773676_F.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010003', '3773676', 'G', './image', '3773676_G.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010004', '3773676', 'H', './image', '3773676_H.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534546010005', '3773676', 'I', './image', '3773676_I.PNG', '', 1, '2025-03-31 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807360010000', '4204712', 'A', './image', '4204712_A.PNG', '', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680528010000', '3872116', 'A', './image', '3872116_A.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680530010000', '3872116', 'B', './image', '3872116_B.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680530010001', '3872116', 'C', './image', '3872116_C.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680530010002', '3872116', 'D', './image', '3872116_D.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680538010000', '3872116', 'E', './image', '3872116_E.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680541010000', '3872116', 'F', './image', '3872116_F.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680543010000', '3872116', '预装配1', './image', '3872116_预装配1.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680544010000', '3872116', '预装配2', './image', '3872116_预装配2.PNG', '', 1, '2025-04-01 10:48:01', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273503010000', '5786299', 'A', './image', '5786299_A.PNG', '', 1, '2025-04-01 10:57:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273504010000', '5786299', 'B', './image', '5786299_B.PNG', '', 1, '2025-04-01 10:57:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273505010000', '5786299', 'C', './image', '5786299_C.PNG', '', 1, '2025-04-01 10:57:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273506010000', '5786299', 'D', './image', '5786299_D.PNG', '', 1, '2025-04-01 10:57:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273507010000', '5786299', 'E', './image', '5786299_E.PNG', '', 1, '2025-04-01 10:57:54', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671853010000', '5243712', 'A', './image', '5243712_A.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671860010000', '5243712', 'B', './image', '5243712_B.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671861010000', '5243712', 'C', './image', '5243712_C.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671862010000', '5243712', 'D', './image', '5243712_D.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671863010000', '5243712', 'E', './image', '5243712_E.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671864010000', '5243712', 'F', './image', '5243712_F.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671865010000', '5243712', 'G', './image', '5243712_G.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671866010000', '5243712', 'H', './image', '5243712_H.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671867010000', '5243712', 'H1', './image', '5243712_H1.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476671868010000', '5243712', 'I', './image', '5243712_I.PNG', '', 1, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937032010000', '4938509', 'A', './image', '4938509_A.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010000', '4938509', 'B', './image', '4938509_B.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010001', '4938509', 'C', './image', '4938509_C.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010002', '4938509', 'D', './image', '4938509_D.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010003', '4938509', 'E', './image', '4938509_E.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010004', '4938509', 'F', './image', '4938509_F.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010005', '4938509', 'G', './image', '4938509_G.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937048010006', '4938509', 'H', './image', '4938509_H.PNG', '', 1, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271568010000', '1628040', 'A', './image', '1628040_A.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271570010000', '1628040', 'B', './image', '1628040_B.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271571010000', '1628040', 'C', './image', '1628040_C.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271572010000', '1628040', 'D', './image', '1628040_D.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271572010001', '1628040', 'E', './image', '1628040_E.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271573010000', '1628040', 'F', './image', '1628040_F.PNG', '', 1, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314977010000', '2698153', 'A', './image', '2698153_A.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314978010000', '2698153', 'B', './image', '2698153_B.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314979010000', '2698153', 'C', './image', '2698153_C.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314980010000', '2698153', 'D', './image', '2698153_D.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314981010000', '2698153', 'E', './image', '2698153_E.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314982010000', '2698153', '预装配1', './image', '2698153_预装配1.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314983010000', '2698153', '预装配2', './image', '2698153_预装配2.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314983010001', '2698153', '预装配3', './image', '2698153_预装配3.PNG', '', 1, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044405010000', '1628314', 'A', './image', '1628314_A.PNG', '', 1, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044407010000', '1628314', 'B', './image', '1628314_B.PNG', '', 1, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044408010000', '1628314', 'C', './image', '1628314_C.PNG', '', 1, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044409010000', '1628314', 'D', './image', '1628314_D.PNG', '', 1, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044409010001', '1628314', 'E', './image', '1628314_E.PNG', '', 1, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477052010000', '1628041', 'A', './image', '1628041_A.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477054010000', '1628041', 'B', './image', '1628041_B.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477054010001', '1628041', 'D', './image', '1628041_D.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477055010000', '1628041', 'E', './image', '1628041_E.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477057010000', '1628041', 'G', './image', '1628041_G.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477058010000', '1628041', 'H', './image', '1628041_H.PNG', '', 1, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878432010000', '3251766', 'A', './image', '3251766_A.PNG', '', 1, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878433010000', '3251766', 'B', './image', '3251766_B.PNG', '', 1, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878434010000', '3251766', 'C', './image', '3251766_C.PNG', '', 1, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914257010000', '3250383', 'A', './image', '3250383_A.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914258010000', '3250383', 'B', './image', '3250383_B.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914259010000', '3250383', 'C', './image', '3250383_C.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914260010000', '3250383', 'E', './image', '3250383_E.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914261010000', '3250383', 'F', './image', '3250383_F.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914261010001', '3250383', 'G', './image', '3250383_G.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914262010000', '3250383', 'H', './image', '3250383_H.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914263010000', '3250383', 'I', './image', '3250383_I.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914265010000', '3250383', 'J', './image', '3250383_J.PNG', '', 1, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007289010000', '1648913', 'A', './image', '1648913_A.PNG', '', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050397010000', '1878637', 'A', './image', '1878637_A.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050399010000', '1878637', 'B', './image', '1878637_B.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050400010000', '1878637', 'C', './image', '1878637_C.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050400010001', '1878637', 'D', './image', '1878637_D.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050401010000', '1878637', 'E', './image', '1878637_E.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050402010000', '1878637', 'F', './image', '1878637_F.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050403010000', '1878637', 'G', './image', '1878637_G.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743493050404010000', '1878637', 'H', './image', '1878637_H.PNG', '', 1, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319574010000', '3275267', 'A', './image', '3275267_A.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319576010000', '3275267', 'B', './image', '3275267_B.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319577010000', '3275267', 'C', './image', '3275267_C.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319578010000', '3275267', 'D', './image', '3275267_D.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319579010000', '3275267', 'E', './image', '3275267_E.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319580010000', '3275267', 'F', './image', '3275267_F.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319581010000', '3275267', 'G', './image', '3275267_G.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319582010000', '3275267', 'H', './image', '3275267_H.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319583010000', '3275267', 'I', './image', '3275267_I.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319584010000', '3275267', 'J', './image', '3275267_J.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319585010000', '3275267', 'K', './image', '3275267_K.PNG', '', 1, '2025-04-02 10:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637992010000', '3365713', 'A', './image', '3365713_A.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637994010000', '3365713', 'B', './image', '3365713_B.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637996010000', '3365713', 'D', './image', '3365713_D.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637997010000', '3365713', 'E', './image', '3365713_E.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637998010000', '3365713', 'F', './image', '3365713_F.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637999010000', '3365713', 'G', './image', '3365713_G.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561638000010000', '3365713', 'I', './image', '3365713_I.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561638001010000', '3365713', 'J', './image', '3365713_J.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561638003010000', '3365713', 'K', './image', '3365713_K.PNG', '', 1, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581947010000', '3623313', 'A', './image', '3623313_A.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581948010000', '3623313', 'B', './image', '3623313_B.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581949010000', '3623313', 'D', './image', '3623313_D.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581950010000', '3623313', 'F', './image', '3623313_F.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581951010000', '3623313', 'G', './image', '3623313_G.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581952010000', '3623313', 'H', './image', '3623313_H.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581953010000', '3623313', 'I', './image', '3623313_I.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581954010000', '3623313', 'J', './image', '3623313_J.PNG', '', 1, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120176010000', '3623319', 'A', './image', '3623319_A.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120177010000', '3623319', 'B', './image', '3623319_B.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120178010000', '3623319', 'C', './image', '3623319_C.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120179010000', '3623319', 'E', './image', '3623319_E.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120180010000', '3623319', 'F', './image', '3623319_F.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120181010000', '3623319', 'G', './image', '3623319_G.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120182010000', '3623319', 'H', './image', '3623319_H.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120183010000', '3623319', 'I', './image', '3623319_I.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120183010001', '3623319', 'J', './image', '3623319_J.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120184010000', '3623319', 'K', './image', '3623319_K.PNG', '', 1, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757857010000', '3623315', 'A', './image', '3623315_A.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757858010000', '3623315', 'B', './image', '3623315_B.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757860010000', '3623315', 'D', './image', '3623315_D.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757860010001', '3623315', 'E', './image', '3623315_E.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757861010000', '3623315', 'F', './image', '3623315_F.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757862010000', '3623315', 'H', './image', '3623315_H.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757863010000', '3623315', 'I', './image', '3623315_I.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757864010000', '3623315', 'K', './image', '3623315_K.PNG', '', 1, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956963010000', '3661352', 'B', './image', '3661352_B.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956965010000', '3661352', 'C', './image', '3661352_C.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956966010000', '3661352', 'E', './image', '3661352_E.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956967010000', '3661352', 'F', './image', '3661352_F.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956968010000', '3661352', 'G', './image', '3661352_G.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956969010000', '3661352', 'H', './image', '3661352_H.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956970010000', '3661352', 'I', './image', '3661352_I.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956971010000', '3661352', 'J', './image', '3661352_J.PNG', '', 1, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373725010000', '1693323', 'A', './image', '1693323_A.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373727010000', '1693323', 'B', './image', '1693323_B.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373728010000', '1693323', 'C', './image', '1693323_C.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373728010001', '1693323', 'D', './image', '1693323_D.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373729010000', '1693323', 'E', './image', '1693323_E.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373730010000', '1693323', 'G', './image', '1693323_G.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373731010000', '1693323', '预装配1', './image', '1693323_预装配1.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373732010000', '1693323', '预装配2', './image', '1693323_预装配2.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373733010000', '1693323', '预装配3', './image', '1693323_预装配3.PNG', '', 1, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615391010000', '6E5138', 'A', './image', '6E5138_A.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615393010000', '6E5138', 'B', './image', '6E5138_B.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615394010000', '6E5138', 'C', './image', '6E5138_C.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615395010000', '6E5138', 'D', './image', '6E5138_D.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615396010000', '6E5138', 'D1', './image', '6E5138_D1.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615397010000', '6E5138', 'E', './image', '6E5138_E.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615398010000', '6E5138', 'F', './image', '6E5138_F.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615399010000', '6E5138', 'G', './image', '6E5138_G.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615399010001', '6E5138', 'H', './image', '6E5138_H.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615400010000', '6E5138', 'I', './image', '6E5138_I.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615401010000', '6E5138', 'J', './image', '6E5138_J.PNG', '', 1, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147780010000', '5256743', 'A', './image', '5256743_A.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147782010000', '5256743', 'B', './image', '5256743_B.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147783010000', '5256743', 'D', './image', '5256743_D.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147784010000', '5256743', 'E', './image', '5256743_E.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147784010001', '5256743', 'F', './image', '5256743_F.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147785010000', '5256743', 'G', './image', '5256743_G.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_image` (`image_id`, `product_id`, `box_no`, `image_path`, `image_name`, `image_detail`, `image_type`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147786010000', '5256743', 'H', './image', '5256743_H.PNG', '', 1, '2025-04-02 16:55:48', '管理员', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_inventory --- ---------------------------- -DROP TABLE IF EXISTS `t_app_inventory`; -CREATE TABLE `t_app_inventory` ( - `inventory_id` varchar(64) NOT NULL COMMENT '盘点任务id', - `goods_id` varchar(64) NOT NULL COMMENT '料号', - `vehicle_id` varchar(64) NOT NULL COMMENT '载具号', - `stock_num` int DEFAULT NULL COMMENT '库存数量', - `confirm_num` int DEFAULT NULL COMMENT '确认数量', - `inv_stand` varchar(64) NOT NULL COMMENT '盘点站台', - `inv_user` varchar(64) DEFAULT NULL COMMENT '盘点用户', - `inv_type` int NOT NULL COMMENT '盘点类型', - `inv_status` int NOT NULL COMMENT '盘点状态', - `inv_result` int DEFAULT NULL COMMENT '盘点结果', - `inv_create_time` datetime NOT NULL COMMENT '盘点创建时间', - `inv_confirm_time` datetime DEFAULT NULL COMMENT '盘点确认时间', - `inv_order_id` varchar(255) NOT NULL COMMENT '盘点单号', - PRIMARY KEY (`inventory_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - --- ---------------------------- --- Records of t_app_inventory --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_app_inventory_record --- ---------------------------- -DROP TABLE IF EXISTS `t_app_inventory_record`; -CREATE TABLE `t_app_inventory_record` ( - `inventory_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '盘点任务id', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料号', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `stock_num` int DEFAULT NULL COMMENT '库存数量', - `confirm_num` int DEFAULT NULL COMMENT '确认数量', - `inv_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '盘点站台', - `inv_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '盘点用户', - `inv_type` int NOT NULL COMMENT '盘点类型', - `inv_status` int NOT NULL COMMENT '盘点状态', - `inv_result` int DEFAULT NULL COMMENT '盘点结果', - `inv_create_time` datetime NOT NULL COMMENT '盘点创建时间', - `inv_confirm_time` datetime DEFAULT NULL COMMENT '盘点确认时间', - `inv_order_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '盘点单号', - PRIMARY KEY (`inventory_id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - --- ---------------------------- --- Records of t_app_inventory_record --- ---------------------------- -BEGIN; -INSERT INTO `t_app_inventory_record` (`inventory_id`, `goods_id`, `vehicle_id`, `stock_num`, `confirm_num`, `inv_stand`, `inv_user`, `inv_type`, `inv_status`, `inv_result`, `inv_create_time`, `inv_confirm_time`, `inv_order_id`) VALUES ('1744535455291010000', '7X0448', 'ASRS-0326', 310, 320, 'P1', '管理员', 1, 2, 1, '2025-04-13 17:10:55', '2025-04-13 17:17:21', '1744535455291010000'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_jobs --- ---------------------------- -DROP TABLE IF EXISTS `t_app_jobs`; -CREATE TABLE `t_app_jobs` ( - `job_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'jobName', - `job_class` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'jobClass', - `cron_expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'cron', - `timer` int DEFAULT NULL COMMENT 'timer', - `timer_type` int NOT NULL COMMENT '定时器类型', - `job_status` int NOT NULL COMMENT '定时器是否可用', - PRIMARY KEY (`job_name`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_jobs --- ---------------------------- -BEGIN; -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('DataSolver', 'com.wms_main.service.quartz_job.job_executor.DataSolver', '0/2 * * * * ? *', 2000, 1, 0); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('OutsExecutor', 'com.wms_main.service.quartz_job.job_executor.OutsExecutor', '0/1 * * * * ? *', 1000, 1, 1); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('OutsRepair', 'com.wms_main.service.quartz_job.job_executor.OutsRepair', '0/5 * * * * ? *', 5000, 1, 0); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('WcsPickTaskSender', 'com.wms_main.service.quartz_job.job_executor.WcsPickTaskSender', '0/1 * * * * ? *', 1000, 1, 0); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('WcsStackerTaskSender', 'com.wms_main.service.quartz_job.job_executor.WcsStackerTaskSender', '0/1 * * * * ? *', 1000, 1, 0); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('WmsTaskExecutor', 'com.wms_main.service.quartz_job.job_executor.WmsTaskExecutor', '0/1 * * * * ? *', 1000, 1, 0); -INSERT INTO `t_app_jobs` (`job_name`, `job_class`, `cron_expression`, `timer`, `timer_type`, `job_status`) VALUES ('WmsTaskFinisher', 'com.wms_main.service.quartz_job.job_executor.WmsTaskFinisher', '0/1 * * * * ? *', 1000, 1, 1); -COMMIT; - --- ---------------------------- --- Table structure for t_app_kanban --- ---------------------------- -DROP TABLE IF EXISTS `t_app_kanban`; -CREATE TABLE `t_app_kanban` ( - `record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '记录id:料号+看板id', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料号', - `kanban_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '看板', - `kanban_status` int NOT NULL COMMENT '看板状态。0:空,1:满。', - `last_full_time` datetime NOT NULL COMMENT '上次补满时间', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - `first_import_time` datetime DEFAULT NULL COMMENT '初次导入时间', - `first_import_user` varchar(64) 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_kanban --- ---------------------------- -BEGIN; -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010000', '3J1907', '2997747', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010001', '0304605', '2997749', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010002', '3K0360', '2997751', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010003', '0304606', '2997753', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010004', '3613549', '2997755', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010005', '4J7533', '2997757', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010006', '8M4437', '2997759', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010007', '6E4502', '2997761', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010008', '3J7354', '2997763', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010009', '6E5153', '2997765', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010010', '1082187', '2997767', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010011', '5B9318', '2997769', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010012', '0951599/HE', '2997771', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223938010013', '6E3007', '2997773', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010000', '1011973', '2997775', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010001', '1027412', '2997777', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010002', '4J5309', '2997779', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010003', '2K8199', '2997781', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010004', '8C3206', '2997783', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010005', '4D9986', '2997785', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010006', '4B4158', '2997787', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010007', '2828827', '2997789', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010008', '1007000', '2997791', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010009', '1P3702', '2997793', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010010', '1010509', '2997795', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010011', '3603679', '2997797', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010012', '1118233', '2997799', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010013', '2660531', '2997801', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010014', '4J0520', '2997803', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010015', '6V3965', '2997805', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010016', '1012862', '2997807', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223939010017', '2147568', '2997809', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010000', '1014845', '2997811', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010001', '2976291', '2997813', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010002', '2M9780', '2997815', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010003', '2965987', '2997817', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010004', '5A3604', '2997819', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010005', '1061791', '2997821', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010006', '4533451/HE', '2997823', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010007', '5H4019', '2997825', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010008', '6V9829', '2997827', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010009', '1118234', '2997829', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010010', '1919247', '2997831', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010011', '1982914', '2997833', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010012', '3161438', '2997868', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010013', '7M8485', '2997870', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010014', '5P2566', '2997872', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010015', '1483483', '2997874', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010016', '2521631', '2997876', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010017', '6V8200', '2997878', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010018', '3D2824', '2997880', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223940010019', '8J6815', '2997882', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010000', '7J9933', '2997884', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010001', '3603692', '2997886', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010002', '1081847', '2997888', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010003', '8F9206', '2997890', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010004', '1089402', '2997892', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010005', '6V5555', '2997894', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010006', '3676002', '2997896', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010007', '2191891', '2997993', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010008', '4B9782', '2997995', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010009', '6V8653', '2997997', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010010', '3341673', '2998004', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010011', '1159977', '2998006', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010012', '1160014', '2998113', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010013', '3267680', '2998115', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010014', '4J0522', '2998117', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010015', '1488336', '2998119', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010016', '1185086', '2998121', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010017', '1185087', '2998198', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223941010018', '1P4579', '2998200', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010000', '1212051', '2998202', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010001', '6V0852', '2998204', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010002', '5H3193', '2998206', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010003', '4K1388', '2998208', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010004', '3676001', '2998210', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010005', '7S0530', '2998212', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010006', '3385495', '2998214', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010007', '7K0734', '2998216', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010008', '1266104', '2998218', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010009', '1268473', '2998220', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010010', '2S4078', '2998222', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010011', '1298222', '2998224', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010012', '3J5553', '2998226', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010013', '8J5893', '2998331', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010014', '5H6005', '2998333', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010015', '3J5554', '2998335', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010016', '8J4398', '2998337', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010017', '1J9671', '2998339', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010018', '6K6307', '2998341', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010019', '1442894', '2998343', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010020', '6V8398', '2998345', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010021', '1488356', '2998347', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223942010022', '7J0204', '2998349', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010000', '2D0094', '2998351', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010001', '2458472/X', '2998353', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010002', '5S7383', '2998355', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010003', '7X0272', '2998357', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010004', '3133966', '2998359', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010005', '4J0524', '2998434', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010006', '1H1023', '2998436', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010007', '2608590', '2998438', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010008', '3294603', '2998440', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010009', '4J8997', '2998442', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010010', '6K0806', '2998444', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010011', '1P3706', '2998446', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010012', '3603690', '2998448', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010013', '1749194', '2998450', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010014', '3603681', '2998452', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010015', '1771405', '2998454', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010016', '1P3703', '2998456', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010017', '5H4020', '2998458', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010018', '2191893', '2998460', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010019', '2J2668', '2998462', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010020', '6J4568', '2998464', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010021', '6V9830', '2998466', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010022', '2935263', '2998468', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010023', '5J2974', '2998470', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223943010024', '6E5289', '2998472', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010000', '6E5291', '2998474', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010001', '1D4566', '2998476', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010002', '7J1089', '2998478', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010003', '6V8676', '2998480', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010004', '4J2506', '2998482', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010005', '6J3380', '2998484', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010006', '7X5308', '2998486', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010007', '7X5315', '2998488', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010008', '1P3709', '2998490', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010009', '1P4578', '2998492', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010010', '7X2535', '2998494', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010011', '1P4582', '2998496', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010012', '1P6744', '2998498', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010013', '5M2057', '2998505', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010014', '3331701', '2998507', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010015', '4M8239', '2998509', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010016', '4H5232', '2998511', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010017', '7X2546', '2998513', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010018', '2304011', '2998515', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010019', '3278527', '2998517', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010020', '4932479', '2998519', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010021', '4932480', '2998521', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010022', '4J0519', '2998523', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010023', '2D6648', '2998525', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010024', '7M1297', '2998527', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010025', '7X0352', '2998529', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010026', '6J5899', '2998531', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010027', '2N7029', '2998533', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223944010028', '7X0448', '2998535', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010000', '4J9780', '2998537', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010001', '2R1256', '2998539', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010002', '3D4603', '2998541', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010003', '3979397', '2998543', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010004', '5J4664', '2998545', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010005', '7D8048', '2998547', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010006', '7X0326', '2998549', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010007', '7X7888', '2998551', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010008', '6V4432', '2998553', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010009', '7X0293', '2998555', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010010', '7X0301', '2998557', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010011', '7X0339', '2998559', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010012', '4829841', '2998561', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010013', '2855628', '2998563', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010014', '2J5608', '2998565', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010015', '4J0527', '2998567', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010016', '6Y4638', '2998569', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010017', '3P1979', '2998571', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010018', '2P5755', '2998573', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010019', '8C5176', '2998575', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010020', '4T4207', '2998577', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010021', '4F4097', '2998579', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010022', '6V1849', '2998581', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010023', '2Y2347', '2998583', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010024', '6V5195', '2998585', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010025', '6V5230', '2998587', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223945010026', '6V8647', '2998594', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010000', '8M3175', '2998596', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010001', '7T8797', '2998598', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010002', '3603693', '2998600', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010003', '4D0514', '2998602', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010004', '6Y2584', '2998604', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010005', '4681135', '2998606', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010006', '6V0400', '2998608', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010007', '6Y2522', '2998610', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010008', '7T8810', '2998612', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010009', '8P0346', '2998614', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010010', '3P9498', '2998616', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010011', '3603697', '2998618', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010012', '3E3882', '2998620', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010013', '6J4694', '2998622', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010014', '7B8194', '2998624', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010015', '3T8236', '2998626', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010016', '6E1924', '2998628', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010017', '6E1925', '2998630', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010018', '6E1923', '2998632', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010019', '6V9834', '2998634', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010020', '4T0993', '2998636', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010021', '6V9833', '2998638', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010022', '4T5795', '2998640', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010023', '6V5391', '2998642', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010024', '4564624', '2998644', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010025', '4564633', '2998646', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010026', '5P0047', '2998648', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223946010027', '4681136', '2998650', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010000', '4T1021', '2998652', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010001', '4681133', '2998654', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010002', '4681134', '2998656', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010003', '8T0151', '2998658', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010004', '8T2396', '2998660', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010005', '8T4121', '2998662', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010006', '8T4172', '2998664', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010007', '8T4182', '2998666', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010008', '8T4189', '2998668', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010009', '8T4194', '2998670', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010010', '8T4196', '2998672', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010011', '8T4223', '2998674', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010012', '8T4224', '2998676', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010013', '8T4776', '2998678', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010014', '8T4896', '2998680', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010015', '8T5005', '2998682', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010016', '8T6408', '2998684', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010017', '8T8737', '2998686', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010018', '8T8987', '2998688', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010019', '8T9383', '2998690', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010020', '8T9535', '2998692', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010021', '9F6705', '2998694', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010022', '9J0403', '2998696', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010023', '9J0477', '2998698', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010024', '9J8126', '2998700', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010025', '9L9068', '2998702', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010026', '9P8217', '2998704', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010027', '9S4180', '2998706', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010028', '9S4182', '2998708', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010029', '9S4183', '2998710', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223947010030', '9S4185', '2998712', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010000', '9S4188', '2998714', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010001', '9S4189', '2998716', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010002', '9S4191', '2998718', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010003', '9S8001', '2998720', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010004', '9S8002', '2998722', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010005', '9S8003', '2998724', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010006', '9S8004', '2998726', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010007', '9S8005', '2998728', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010008', '9S8006', '2998730', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010009', '9S8009', '2998732', 0, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010010', '9T4685', '2998734', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010011', '9T4697', '2998736', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010012', '9T7418', '2998738', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010013', '9T7419', '2998740', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -INSERT INTO `t_app_kanban` (`record_id`, `goods_id`, `kanban_id`, `kanban_status`, `last_full_time`, `last_update_time`, `last_update_user`, `first_import_time`, `first_import_user`) VALUES ('1743063223948010014', '9X8256', '2998742', 1, '2025-03-27 16:13:44', '2025-04-07 14:09:11', '管理员', '2025-03-27 16:13:44', '管理员'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_location --- ---------------------------- -DROP TABLE IF EXISTS `t_app_location`; -CREATE TABLE `t_app_location` ( - `location_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '库位id', - `outer_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '外部库位编号', - `location_type` int NOT NULL COMMENT '库位类型', - `is_lock` int NOT NULL COMMENT '锁定', - `is_occupy` int NOT NULL COMMENT '占用', - `is_working` int NOT NULL COMMENT '是否在工作中', - `equipment_id` int NOT NULL COMMENT '设备号', - `tunnel_id` int NOT NULL COMMENT '巷道号', - `l_row` int NOT NULL COMMENT '排', - `l_col` int NOT NULL COMMENT '列', - `l_layer` int NOT NULL COMMENT '层', - `l_depth` int NOT NULL COMMENT '深度', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '载具号', - `area_id` int NOT NULL COMMENT '区域号', - `sub_area` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '子区域', - PRIMARY KEY (`location_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_location --- ---------------------------- -BEGIN; -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-01', '', 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 'ASRS-1706', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-02', '', 1, 0, 1, 0, 1, 1, 1, 1, 2, 1, 'ASRS-1891', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-03', '', 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 'ASRS-1636', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-04', '', 1, 0, 1, 0, 1, 1, 1, 1, 4, 1, 'ASRS-1791', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-05', '', 1, 0, 1, 0, 1, 1, 1, 1, 5, 1, 'ASRS-0122', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-06', '', 1, 0, 1, 0, 1, 1, 1, 1, 6, 1, 'ASRS-1191', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-07', '', 1, 0, 1, 0, 1, 1, 1, 1, 7, 1, 'ASRS-0030', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-08', '', 1, 0, 1, 0, 1, 1, 1, 1, 8, 1, 'ASRS-0927', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-09', '', 1, 0, 1, 0, 1, 1, 1, 1, 9, 1, 'ASRS-1744', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-10', '', 1, 0, 1, 0, 1, 1, 1, 1, 10, 1, 'ASRS-0964', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-11', '', 1, 0, 1, 0, 1, 1, 1, 1, 11, 1, 'ASRS-1151', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-01-12', '', 1, 1, 0, 0, 1, 1, 1, 1, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-01', '', 1, 0, 1, 0, 1, 1, 1, 2, 1, 1, 'ASRS-0282', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-02', '', 1, 0, 1, 0, 1, 1, 1, 2, 2, 1, 'ASRS-0610', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-03', '', 1, 0, 1, 0, 1, 1, 1, 2, 3, 1, 'ASRS-1648', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-04', '', 1, 0, 1, 0, 1, 1, 1, 2, 4, 1, 'ASRS-0914', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-05', '', 1, 0, 1, 0, 1, 1, 1, 2, 5, 1, 'ASRS-1190', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-06', '', 1, 0, 1, 0, 1, 1, 1, 2, 6, 1, 'ASRS-1155', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-07', '', 1, 0, 1, 0, 1, 1, 1, 2, 7, 1, 'ASRS-0624', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-08', '', 1, 0, 1, 0, 1, 1, 1, 2, 8, 1, 'ASRS-0963', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-09', '', 1, 0, 1, 0, 1, 1, 1, 2, 9, 1, 'ASRS-0872', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-10', '', 1, 0, 1, 0, 1, 1, 1, 2, 10, 1, 'ASRS-1187', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-11', '', 1, 0, 1, 0, 1, 1, 1, 2, 11, 1, 'ASRS-1544', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-02-12', '', 1, 1, 1, 0, 1, 1, 1, 2, 12, 1, 'ASRS-1425', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-01', '', 1, 0, 1, 0, 1, 1, 1, 3, 1, 1, 'ASRS-1098', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-02', '', 1, 0, 1, 0, 1, 1, 1, 3, 2, 1, 'ASRS-1299', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-03', '', 1, 0, 1, 0, 1, 1, 1, 3, 3, 1, 'ASRS-1684', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-04', '', 1, 0, 1, 0, 1, 1, 1, 3, 4, 1, 'ASRS-1390', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-05', '', 1, 0, 1, 0, 1, 1, 1, 3, 5, 1, 'ASRS-0887', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-06', '', 1, 0, 1, 0, 1, 1, 1, 3, 6, 1, 'ASRS-0875', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-07', '', 1, 0, 1, 0, 1, 1, 1, 3, 7, 1, 'ASRS-0971', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-08', '', 1, 0, 1, 0, 1, 1, 1, 3, 8, 1, 'ASRS-0955', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-09', '', 1, 0, 1, 0, 1, 1, 1, 3, 9, 1, 'ASRS-0959', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-10', '', 1, 0, 1, 0, 1, 1, 1, 3, 10, 1, 'ASRS-1235', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-11', '', 1, 0, 1, 0, 1, 1, 1, 3, 11, 1, 'ASRS-0920', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-03-12', '', 1, 1, 1, 0, 1, 1, 1, 3, 12, 1, 'ASRS-1409', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-01', '', 1, 0, 1, 0, 1, 1, 1, 4, 1, 1, 'ASRS-0911', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-02', '', 1, 0, 1, 0, 1, 1, 1, 4, 2, 1, 'ASRS-1281', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-03', '', 1, 0, 1, 0, 1, 1, 1, 4, 3, 1, 'ASRS-0915', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-04', '', 1, 0, 1, 0, 1, 1, 1, 4, 4, 1, 'ASRS-1662', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-05', '', 1, 0, 1, 0, 1, 1, 1, 4, 5, 1, 'ASRS-1836', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-06', '', 1, 0, 1, 0, 1, 1, 1, 4, 6, 1, 'ASRS-1391', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-07', '', 1, 0, 1, 0, 1, 1, 1, 4, 7, 1, 'ASRS-0949', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-08', '', 1, 0, 1, 0, 1, 1, 1, 4, 8, 1, 'ASRS-0876', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-09', '', 1, 0, 1, 0, 1, 1, 1, 4, 9, 1, 'ASRS-0171', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-10', '', 1, 0, 1, 0, 1, 1, 1, 4, 10, 1, 'ASRS-0975', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-11', '', 1, 0, 1, 0, 1, 1, 1, 4, 11, 1, 'ASRS-0979', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-04-12', '', 1, 1, 1, 0, 1, 1, 1, 4, 12, 1, 'ASRS-0755', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-01', '', 1, 0, 1, 0, 1, 1, 1, 5, 1, 1, 'ASRS-0945', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-02', '', 1, 0, 1, 0, 1, 1, 1, 5, 2, 1, 'ASRS-1292', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-03', '', 1, 0, 1, 0, 1, 1, 1, 5, 3, 1, 'ASRS-0928', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-04', '', 1, 0, 1, 0, 1, 1, 1, 5, 4, 1, 'ASRS-0954', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-05', '', 1, 0, 1, 0, 1, 1, 1, 5, 5, 1, 'ASRS-0956', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-06', '', 1, 0, 1, 0, 1, 1, 1, 5, 6, 1, 'ASRS-1198', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-07', '', 1, 0, 1, 0, 1, 1, 1, 5, 7, 1, 'ASRS-1238', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-08', '', 1, 0, 1, 0, 1, 1, 1, 5, 8, 1, 'ASRS-1217', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-09', '', 1, 0, 1, 0, 1, 1, 1, 5, 9, 1, 'ASRS-1175', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-10', '', 1, 0, 1, 0, 1, 1, 1, 5, 10, 1, 'ASRS-0933', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-11', '', 1, 0, 1, 0, 1, 1, 1, 5, 11, 1, 'ASRS-1205', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-05-12', '', 1, 1, 1, 0, 1, 1, 1, 5, 12, 1, 'ASRS-1439', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-01', '', 1, 0, 1, 0, 1, 1, 1, 6, 1, 1, 'ASRS-1210', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-02', '', 1, 0, 1, 0, 1, 1, 1, 6, 2, 1, 'ASRS-1017', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-03', '', 1, 0, 1, 0, 1, 1, 1, 6, 3, 1, 'ASRS-1179', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-04', '', 1, 0, 1, 0, 1, 1, 1, 6, 4, 1, 'ASRS-0962', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-05', '', 1, 0, 1, 0, 1, 1, 1, 6, 5, 1, 'ASRS-1200', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-06', '', 1, 0, 1, 0, 1, 1, 1, 6, 6, 1, 'ASRS-1213', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-07', '', 1, 0, 1, 0, 1, 1, 1, 6, 7, 1, 'ASRS-1228', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-08', '', 1, 0, 1, 0, 1, 1, 1, 6, 8, 1, 'ASRS-1230', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-09', '', 1, 0, 1, 0, 1, 1, 1, 6, 9, 1, 'ASRS-0008', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-10', '', 1, 0, 1, 0, 1, 1, 1, 6, 10, 1, 'ASRS-0757', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-11', '', 1, 0, 1, 0, 1, 1, 1, 6, 11, 1, 'ASRS-0845', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-06-12', '', 1, 1, 1, 0, 1, 1, 1, 6, 12, 1, 'ASRS-0803', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-01', '', 1, 0, 1, 0, 1, 1, 1, 7, 1, 1, 'ASRS-0621', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-02', '', 1, 0, 1, 0, 1, 1, 1, 7, 2, 1, 'ASRS-1773', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-03', '', 1, 0, 1, 0, 1, 1, 1, 7, 3, 1, 'ASRS-1300', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-04', '', 1, 0, 1, 0, 1, 1, 1, 7, 4, 1, 'ASRS-1282', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-05', '', 1, 0, 1, 0, 1, 1, 1, 7, 5, 1, 'ASRS-1269', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-06', '', 1, 0, 1, 0, 1, 1, 1, 7, 6, 1, 'ASRS-0622', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-07', '', 1, 0, 1, 0, 1, 1, 1, 7, 7, 1, 'ASRS-0882', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-08', '', 1, 0, 1, 0, 1, 1, 1, 7, 8, 1, 'ASRS-0777', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-09', '', 1, 0, 1, 0, 1, 1, 1, 7, 9, 1, 'ASRS-0753', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-10', '', 1, 0, 1, 0, 1, 1, 1, 7, 10, 1, 'ASRS-1438', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-11', '', 1, 0, 1, 0, 1, 1, 1, 7, 11, 1, 'ASRS-0852', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-07-12', '', 1, 1, 1, 0, 1, 1, 1, 7, 12, 1, 'ASRS-1313', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-01', '', 1, 0, 1, 0, 1, 1, 1, 8, 1, 1, 'ASRS-0620', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-02', '', 1, 0, 1, 0, 1, 1, 1, 8, 2, 1, 'ASRS-1297', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-03', '', 1, 0, 1, 0, 1, 1, 1, 8, 3, 1, 'ASRS-0841', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-04', '', 1, 0, 1, 0, 1, 1, 1, 8, 4, 1, 'ASRS-1735', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-05', '', 1, 0, 1, 0, 1, 1, 1, 8, 5, 1, 'ASRS-1000', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-06', '', 1, 0, 1, 0, 1, 1, 1, 8, 6, 1, 'ASRS-1421', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-07', '', 1, 0, 1, 0, 1, 1, 1, 8, 7, 1, 'ASRS-0780', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-08', '', 1, 0, 1, 0, 1, 1, 1, 8, 8, 1, 'ASRS-0827', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-09', '', 1, 0, 1, 0, 1, 1, 1, 8, 9, 1, 'ASRS-1393', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-10', '', 1, 0, 1, 0, 1, 1, 1, 8, 10, 1, 'ASRS-0871', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-11', '', 1, 0, 1, 0, 1, 1, 1, 8, 11, 1, 'ASRS-1339', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-08-12', '', 1, 1, 0, 0, 1, 1, 1, 8, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-01', '', 1, 0, 1, 0, 1, 1, 1, 9, 1, 1, 'ASRS-1286', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-02', '', 1, 0, 1, 0, 1, 1, 1, 9, 2, 1, 'ASRS-0663', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-03', '', 1, 0, 1, 0, 1, 1, 1, 9, 3, 1, 'ASRS-0952', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-04', '', 1, 0, 1, 0, 1, 1, 1, 9, 4, 1, 'ASRS-1164', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-05', '', 1, 0, 1, 0, 1, 1, 1, 9, 5, 1, 'ASRS-1279', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-06', '', 1, 0, 1, 0, 1, 1, 1, 9, 6, 1, 'ASRS-0765', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-07', '', 1, 0, 1, 0, 1, 1, 1, 9, 7, 1, 'ASRS-0810', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-08', '', 1, 0, 1, 0, 1, 1, 1, 9, 8, 1, 'ASRS-0805', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-09', '', 1, 0, 1, 0, 1, 1, 1, 9, 9, 1, 'ASRS-0853', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-10', '', 1, 0, 1, 0, 1, 1, 1, 9, 10, 1, 'ASRS-1384', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-11', '', 1, 0, 1, 0, 1, 1, 1, 9, 11, 1, 'ASRS-1547', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-09-12', '', 1, 1, 0, 0, 1, 1, 1, 9, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-01', '', 1, 0, 1, 0, 1, 1, 1, 10, 1, 1, 'ASRS-1321', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-02', '', 1, 0, 1, 0, 1, 1, 1, 10, 2, 1, 'ASRS-1358', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-03', '', 1, 0, 1, 0, 1, 1, 1, 10, 3, 1, 'ASRS-0513', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-04', '', 1, 0, 1, 0, 1, 1, 1, 10, 4, 1, 'ASRS-1803', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-05', '', 1, 0, 1, 0, 1, 1, 1, 10, 5, 1, 'ASRS-0802', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-06', '', 1, 0, 1, 0, 1, 1, 1, 10, 6, 1, 'ASRS-0835', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-07', '', 1, 0, 1, 0, 1, 1, 1, 10, 7, 1, 'ASRS-0824', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-08', '', 1, 0, 1, 0, 1, 1, 1, 10, 8, 1, 'ASRS-0863', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-09', '', 1, 0, 1, 0, 1, 1, 1, 10, 9, 1, 'ASRS-1373', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-10', '', 1, 0, 1, 0, 1, 1, 1, 10, 10, 1, 'ASRS-1482', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-11', '', 1, 0, 1, 0, 1, 1, 1, 10, 11, 1, 'ASRS-0618', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-10-12', '', 1, 1, 0, 0, 1, 1, 1, 10, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-01', '', 1, 0, 1, 0, 1, 1, 1, 11, 1, 1, 'ASRS-1368', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-02', '', 1, 0, 1, 0, 1, 1, 1, 11, 2, 1, 'ASRS-1357', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-03', '', 1, 0, 1, 0, 1, 1, 1, 11, 3, 1, 'ASRS-1402', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-04', '', 1, 0, 1, 0, 1, 1, 1, 11, 4, 1, 'ASRS-0786', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-05', '', 1, 0, 1, 0, 1, 1, 1, 11, 5, 1, 'ASRS-1481', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-06', '', 1, 0, 1, 0, 1, 1, 1, 11, 6, 1, 'ASRS-0799', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-07', '', 1, 0, 1, 0, 1, 1, 1, 11, 7, 1, 'ASRS-0867', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-08', '', 1, 0, 1, 0, 1, 1, 1, 11, 8, 1, 'ASRS-1346', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-09', '', 1, 0, 1, 0, 1, 1, 1, 11, 9, 1, 'ASRS-1546', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-10', '', 1, 0, 1, 0, 1, 1, 1, 11, 10, 1, 'ASRS-1718', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-11', '', 1, 0, 1, 0, 1, 1, 1, 11, 11, 1, 'ASRS-1676', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-11-12', '', 1, 1, 0, 0, 1, 1, 1, 11, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-01', '', 1, 0, 1, 0, 1, 1, 1, 12, 1, 1, 'ASRS-1632', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-02', '', 1, 0, 1, 0, 1, 1, 1, 12, 2, 1, 'ASRS-0986', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-03', '', 1, 0, 1, 0, 1, 1, 1, 12, 3, 1, 'ASRS-0783', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-04', '', 1, 0, 1, 0, 1, 1, 1, 12, 4, 1, 'ASRS-0811', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-05', '', 1, 0, 1, 0, 1, 1, 1, 12, 5, 1, 'ASRS-0743', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-06', '', 1, 0, 1, 0, 1, 1, 1, 12, 6, 1, 'ASRS-0868', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-07', '', 1, 0, 1, 0, 1, 1, 1, 12, 7, 1, 'ASRS-1347', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-08', '', 1, 0, 1, 0, 1, 1, 1, 12, 8, 1, 'ASRS-1480', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-09', '', 1, 0, 1, 0, 1, 1, 1, 12, 9, 1, 'ASRS-0908', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-10', '', 1, 0, 1, 0, 1, 1, 1, 12, 10, 1, 'ASRS-0657', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-11', '', 1, 0, 1, 0, 1, 1, 1, 12, 11, 1, 'ASRS-0548', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-12-12', '', 1, 1, 0, 0, 1, 1, 1, 12, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-01', '', 1, 0, 1, 0, 1, 1, 1, 13, 1, 1, 'ASRS-1401', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-02', '', 1, 0, 1, 0, 1, 1, 1, 13, 2, 1, 'ASRS-0764', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-03', '', 1, 0, 1, 0, 1, 1, 1, 13, 3, 1, 'ASRS-0818', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-04', '', 1, 0, 1, 0, 1, 1, 1, 13, 4, 1, 'ASRS-0846', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-05', '', 1, 0, 1, 0, 1, 1, 1, 13, 5, 1, 'ASRS-1458', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-06', '', 1, 0, 1, 0, 1, 1, 1, 13, 6, 1, 'ASRS-1334', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-07', '', 1, 0, 1, 0, 1, 1, 1, 13, 7, 1, 'ASRS-1478', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-08', '', 1, 0, 1, 0, 1, 1, 1, 13, 8, 1, 'ASRS-1610', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-09', '', 1, 0, 1, 0, 1, 1, 1, 13, 9, 1, 'ASRS-0236', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-10', '', 1, 0, 1, 0, 1, 1, 1, 13, 10, 1, 'ASRS-0072', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-11', '', 1, 0, 1, 0, 1, 1, 1, 13, 11, 1, 'ASRS-1843', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-13-12', '', 1, 1, 0, 0, 1, 1, 1, 13, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-01', '', 1, 0, 1, 0, 1, 1, 1, 14, 1, 1, 'ASRS-0774', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-02', '', 1, 0, 1, 0, 1, 1, 1, 14, 2, 1, 'ASRS-0798', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-03', '', 1, 0, 1, 0, 1, 1, 1, 14, 3, 1, 'ASRS-1429', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-04', '', 1, 0, 1, 0, 1, 1, 1, 14, 4, 1, 'ASRS-1455', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-05', '', 1, 0, 1, 0, 1, 1, 1, 14, 5, 1, 'ASRS-1006', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-06', '', 1, 0, 1, 0, 1, 1, 1, 14, 6, 1, 'ASRS-1451', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-07', '', 1, 0, 1, 0, 1, 1, 1, 14, 7, 1, 'ASRS-1131', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-08', '', 1, 0, 1, 0, 1, 1, 1, 14, 8, 1, 'ASRS-1364', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-09', '', 1, 0, 1, 0, 1, 1, 1, 14, 9, 1, 'ASRS-1661', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-10', '', 1, 0, 1, 0, 1, 1, 1, 14, 10, 1, 'ASRS-0532', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-11', '', 1, 0, 1, 0, 1, 1, 1, 14, 11, 1, 'ASRS-1256', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-14-12', '', 1, 1, 0, 0, 1, 1, 1, 14, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-01', '', 1, 0, 1, 0, 1, 1, 1, 15, 1, 1, 'ASRS-0833', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-02', '', 1, 0, 1, 0, 1, 1, 1, 15, 2, 1, 'ASRS-0826', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-03', '', 1, 0, 1, 0, 1, 1, 1, 15, 3, 1, 'ASRS-1454', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-04', '', 1, 0, 1, 0, 1, 1, 1, 15, 4, 1, 'ASRS-1007', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-05', '', 1, 0, 1, 0, 1, 1, 1, 15, 5, 1, 'ASRS-1473', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-06', '', 1, 0, 1, 0, 1, 1, 1, 15, 6, 1, 'ASRS-0629', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-07', '', 1, 0, 1, 0, 1, 1, 1, 15, 7, 1, 'ASRS-1671', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-08', '', 1, 0, 1, 0, 1, 1, 1, 15, 8, 1, 'ASRS-1624', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-09', '', 1, 0, 1, 0, 1, 1, 1, 15, 9, 1, 'ASRS-1628', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-10', '', 1, 0, 1, 0, 1, 1, 1, 15, 10, 1, 'ASRS-1785', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-11', '', 1, 0, 1, 0, 1, 1, 1, 15, 11, 1, 'ASRS-1613', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-15-12', '', 1, 1, 0, 0, 1, 1, 1, 15, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-01', '', 1, 0, 1, 0, 1, 1, 1, 16, 1, 1, 'ASRS-0742', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-02', '', 1, 0, 1, 0, 1, 1, 1, 16, 2, 1, 'ASRS-1471', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-03', '', 1, 0, 1, 0, 1, 1, 1, 16, 3, 1, 'ASRS-0988', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-04', '', 1, 0, 1, 0, 1, 1, 1, 16, 4, 1, 'ASRS-1474', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-05', '', 1, 0, 1, 0, 1, 1, 1, 16, 5, 1, 'ASRS-1587', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-06', '', 1, 0, 1, 0, 1, 1, 1, 16, 6, 1, 'ASRS-1854', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-07', '', 1, 0, 1, 0, 1, 1, 1, 16, 7, 1, 'ASRS-0234', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-08', '', 1, 0, 1, 0, 1, 1, 1, 16, 8, 1, 'ASRS-0232', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-09', '', 1, 0, 1, 0, 1, 1, 1, 16, 9, 1, 'ASRS-0041', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-10', '', 1, 0, 1, 0, 1, 1, 1, 16, 10, 1, 'ASRS-0878', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-11', '', 1, 0, 1, 0, 1, 1, 1, 16, 11, 1, 'ASRS-1867', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-16-12', '', 1, 1, 0, 0, 1, 1, 1, 16, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-01', '', 1, 0, 1, 0, 1, 1, 1, 17, 1, 1, 'ASRS-1469', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-02', '', 1, 0, 1, 0, 1, 1, 1, 17, 2, 1, 'ASRS-1009', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-03', '', 1, 0, 1, 0, 1, 1, 1, 17, 3, 1, 'ASRS-1495', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-04', '', 1, 0, 1, 0, 1, 1, 1, 17, 4, 1, 'ASRS-1533', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-05', '', 1, 0, 1, 0, 1, 1, 1, 17, 5, 1, 'ASRS-1737', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-06', '', 1, 0, 1, 0, 1, 1, 1, 17, 6, 1, 'ASRS-1597', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-07', '', 1, 0, 1, 0, 1, 1, 1, 17, 7, 1, 'ASRS-0132', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-08', '', 1, 0, 1, 0, 1, 1, 1, 17, 8, 1, 'ASRS-0947', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-09', '', 1, 0, 1, 0, 1, 1, 1, 17, 9, 1, 'ASRS-1631', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-10', '', 1, 0, 1, 0, 1, 1, 1, 17, 10, 1, 'ASRS-1004', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-11', '', 1, 0, 1, 0, 1, 1, 1, 17, 11, 1, 'ASRS-1806', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-17-12', '', 1, 1, 0, 0, 1, 1, 1, 17, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-01', '', 1, 0, 1, 0, 1, 1, 1, 18, 1, 1, 'ASRS-1551', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-02', '', 1, 0, 1, 0, 1, 1, 1, 18, 2, 1, 'ASRS-1487', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-03', '', 1, 0, 1, 0, 1, 1, 1, 18, 3, 1, 'ASRS-1714', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-04', '', 1, 0, 1, 0, 1, 1, 1, 18, 4, 1, 'ASRS-0966', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-05', '', 1, 0, 1, 0, 1, 1, 1, 18, 5, 1, 'ASRS-0115', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-06', '', 1, 0, 1, 0, 1, 1, 1, 18, 6, 1, 'ASRS-1386', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-07', '', 1, 0, 1, 0, 1, 1, 1, 18, 7, 1, 'ASRS-0141', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-08', '', 1, 0, 1, 0, 1, 1, 1, 18, 8, 1, 'ASRS-0639', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-09', '', 1, 0, 1, 0, 1, 1, 1, 18, 9, 1, 'ASRS-1796', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-10', '', 1, 0, 1, 0, 1, 1, 1, 18, 10, 1, 'ASRS-1817', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-11', '', 1, 0, 1, 0, 1, 1, 1, 18, 11, 1, 'ASRS-1115', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-18-12', '', 1, 1, 0, 0, 1, 1, 1, 18, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-01', '', 1, 0, 1, 0, 1, 1, 1, 19, 1, 1, 'ASRS-1484', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-02', '', 1, 0, 1, 0, 1, 1, 1, 19, 2, 1, 'ASRS-1568', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-03', '', 1, 0, 1, 0, 1, 1, 1, 19, 3, 1, 'ASRS-1657', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-04', '', 1, 0, 1, 0, 1, 1, 1, 19, 4, 1, 'ASRS-0103', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-05', '', 1, 0, 1, 0, 1, 1, 1, 19, 5, 1, 'ASRS-1717', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-06', '', 1, 0, 1, 0, 1, 1, 1, 19, 6, 1, 'ASRS-1757', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-07', '', 1, 0, 1, 0, 1, 1, 1, 19, 7, 1, 'ASRS-1723', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-08', '', 1, 0, 1, 0, 1, 1, 1, 19, 8, 1, 'ASRS-1640', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-09', '', 1, 0, 1, 0, 1, 1, 1, 19, 9, 1, 'ASRS-1816', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-10', '', 1, 0, 1, 0, 1, 1, 1, 19, 10, 1, 'ASRS-1852', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-11', '', 1, 0, 1, 0, 1, 1, 1, 19, 11, 1, 'ASRS-0111', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-19-12', '', 1, 1, 0, 0, 1, 1, 1, 19, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-01', '', 1, 0, 1, 0, 1, 1, 1, 20, 1, 1, 'ASRS-1673', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-02', '', 1, 0, 1, 0, 1, 1, 1, 20, 2, 1, 'ASRS-1655', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-03', '', 1, 0, 1, 0, 1, 1, 1, 20, 3, 1, 'ASRS-1608', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-04', '', 1, 0, 1, 0, 1, 1, 1, 20, 4, 1, 'ASRS-0989', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-05', '', 1, 0, 1, 0, 1, 1, 1, 20, 5, 1, 'ASRS-0685', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-06', '', 1, 0, 1, 0, 1, 1, 1, 20, 6, 1, 'ASRS-1287', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-07', '', 1, 0, 1, 0, 1, 1, 1, 20, 7, 1, 'ASRS-1786', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-08', '', 1, 0, 1, 0, 1, 1, 1, 20, 8, 1, 'ASRS-1815', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-09', '', 1, 0, 1, 0, 1, 1, 1, 20, 9, 1, 'ASRS-1607', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-10', '', 1, 0, 1, 0, 1, 1, 1, 20, 10, 1, 'ASRS-1016', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-11', '', 1, 0, 1, 0, 1, 1, 1, 20, 11, 1, 'ASRS-1596', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-20-12', '', 1, 1, 0, 0, 1, 1, 1, 20, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-01', '', 1, 0, 1, 0, 1, 1, 1, 21, 1, 1, 'ASRS-1668', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-02', '', 1, 0, 1, 0, 1, 1, 1, 21, 2, 1, 'ASRS-1645', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-03', '', 1, 0, 1, 0, 1, 1, 1, 21, 3, 1, 'ASRS-1576', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-04', '', 1, 0, 1, 0, 1, 1, 1, 21, 4, 1, 'ASRS-1752', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-05', '', 1, 0, 1, 0, 1, 1, 1, 21, 5, 1, 'ASRS-1846', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-06', '', 1, 0, 1, 0, 1, 1, 1, 21, 6, 1, 'ASRS-1038', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-07', '', 1, 0, 1, 0, 1, 1, 1, 21, 7, 1, 'ASRS-1826', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-08', '', 1, 0, 1, 0, 1, 1, 1, 21, 8, 1, 'ASRS-1692', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-09', '', 1, 0, 1, 0, 1, 1, 1, 21, 9, 1, 'ASRS-1831', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-10', '', 1, 0, 1, 0, 1, 1, 1, 21, 10, 1, 'ASRS-0692', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-11', '', 1, 0, 1, 0, 1, 1, 1, 21, 11, 1, 'ASRS-0632', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-21-12', '', 1, 1, 0, 0, 1, 1, 1, 21, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-01', '', 1, 0, 1, 0, 1, 1, 1, 22, 1, 1, 'ASRS-0874', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-02', '', 1, 0, 1, 0, 1, 1, 1, 22, 2, 1, 'ASRS-1602', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-03', '', 1, 0, 1, 0, 1, 1, 1, 22, 3, 1, 'ASRS-1774', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-04', '', 1, 0, 1, 0, 1, 1, 1, 22, 4, 1, 'ASRS-0667', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-05', '', 1, 0, 1, 0, 1, 1, 1, 22, 5, 1, 'ASRS-1801', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-06', '', 1, 0, 1, 0, 1, 1, 1, 22, 6, 1, 'ASRS-1761', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-07', '', 1, 0, 1, 0, 1, 1, 1, 22, 7, 1, 'ASRS-0023', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-08', '', 1, 0, 1, 0, 1, 1, 1, 22, 8, 1, 'ASRS-0012', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-09', '', 1, 0, 1, 0, 1, 1, 1, 22, 9, 1, 'ASRS-0066', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-10', '', 1, 0, 1, 0, 1, 1, 1, 22, 10, 1, 'ASRS-1136', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-11', '', 1, 0, 1, 0, 1, 1, 1, 22, 11, 1, 'ASRS-0050', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-22-12', '', 1, 1, 0, 0, 1, 1, 1, 22, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-01', '', 1, 0, 1, 0, 1, 1, 1, 23, 1, 1, 'ASRS-1670', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-02', '', 1, 0, 1, 0, 1, 1, 1, 23, 2, 1, 'ASRS-0694', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-03', '', 1, 0, 1, 0, 1, 1, 1, 23, 3, 1, 'ASRS-1583', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-04', '', 1, 0, 1, 0, 1, 1, 1, 23, 4, 1, 'ASRS-1792', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-05', '', 1, 0, 1, 0, 1, 1, 1, 23, 5, 1, 'ASRS-1779', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-06', '', 1, 0, 1, 0, 1, 1, 1, 23, 6, 1, 'ASRS-1736', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-07', '', 1, 0, 1, 0, 1, 1, 1, 23, 7, 1, 'ASRS-1241', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-08', '', 1, 0, 1, 0, 1, 1, 1, 23, 8, 1, 'ASRS-1127', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-09', '', 1, 0, 1, 0, 1, 1, 1, 23, 9, 1, 'ASRS-0085', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-10', '', 1, 0, 1, 0, 1, 1, 1, 23, 10, 1, 'ASRS-0049', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-11', '', 1, 0, 1, 0, 1, 1, 1, 23, 11, 1, 'ASRS-1042', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-23-12', '', 1, 1, 0, 0, 1, 1, 1, 23, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-01', '', 1, 0, 1, 0, 1, 1, 1, 24, 1, 1, 'ASRS-1703', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-02', '', 1, 0, 1, 0, 1, 1, 1, 24, 2, 1, 'ASRS-1789', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-03', '', 1, 0, 1, 0, 1, 1, 1, 24, 3, 1, 'ASRS-0529', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-04', '', 1, 0, 1, 0, 1, 1, 1, 24, 4, 1, 'ASRS-1225', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-05', '', 1, 0, 1, 0, 1, 1, 1, 24, 5, 1, 'ASRS-1828', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-06', '', 1, 0, 1, 0, 1, 1, 1, 24, 6, 1, 'ASRS-1896', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-07', '', 1, 0, 1, 0, 1, 1, 1, 24, 7, 1, 'ASRS-1302', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-08', '', 1, 0, 1, 0, 1, 1, 1, 24, 8, 1, 'ASRS-0028', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-09', '', 1, 0, 1, 0, 1, 1, 1, 24, 9, 1, 'ASRS-0061', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-10', '', 1, 0, 1, 0, 1, 1, 1, 24, 10, 1, 'ASRS-0543', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-11', '', 1, 0, 1, 0, 1, 1, 1, 24, 11, 1, 'ASRS-1043', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-24-12', '', 1, 1, 0, 0, 1, 1, 1, 24, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-01', '', 1, 0, 1, 0, 1, 1, 1, 25, 1, 1, 'ASRS-0057', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-02', '', 1, 0, 1, 0, 1, 1, 1, 25, 2, 1, 'ASRS-1809', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-03', '', 1, 0, 1, 0, 1, 1, 1, 25, 3, 1, 'ASRS-1150', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-04', '', 1, 0, 1, 0, 1, 1, 1, 25, 4, 1, 'ASRS-1827', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-05', '', 1, 0, 1, 0, 1, 1, 1, 25, 5, 1, 'ASRS-0014', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-06', '', 1, 0, 1, 0, 1, 1, 1, 25, 6, 1, 'ASRS-0099', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-07', '', 1, 0, 1, 0, 1, 1, 1, 25, 7, 1, 'ASRS-0202', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-08', '', 1, 0, 1, 0, 1, 1, 1, 25, 8, 1, 'ASRS-0059', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-09', '', 1, 0, 1, 0, 1, 1, 1, 25, 9, 1, 'ASRS-1060', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-10', '', 1, 0, 1, 0, 1, 1, 1, 25, 10, 1, 'ASRS-0536', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-11', '', 1, 0, 1, 0, 1, 1, 1, 25, 11, 1, 'ASRS-1887', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-25-12', '', 1, 1, 0, 0, 1, 1, 1, 25, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-01', '', 1, 0, 1, 0, 1, 1, 1, 26, 1, 1, 'ASRS-1778', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-02', '', 1, 0, 1, 0, 1, 1, 1, 26, 2, 1, 'ASRS-1819', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-03', '', 1, 0, 1, 0, 1, 1, 1, 26, 3, 1, 'ASRS-0152', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-04', '', 1, 0, 1, 0, 1, 1, 1, 26, 4, 1, 'ASRS-0951', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-05', '', 1, 0, 1, 0, 1, 1, 1, 26, 5, 1, 'ASRS-0281', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-06', '', 1, 0, 1, 0, 1, 1, 1, 26, 6, 1, 'ASRS-1794', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-07', '', 1, 0, 1, 0, 1, 1, 1, 26, 7, 1, 'ASRS-0119', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-08', '', 1, 0, 1, 0, 1, 1, 1, 26, 8, 1, 'ASRS-1541', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-09', '', 1, 0, 1, 0, 1, 1, 1, 26, 9, 1, 'ASRS-1538', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-10', '', 1, 0, 1, 0, 1, 1, 1, 26, 10, 1, 'ASRS-0114', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-11', '', 1, 0, 1, 0, 1, 1, 1, 26, 11, 1, 'ASRS-0322', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-26-12', '', 1, 1, 0, 0, 1, 1, 1, 26, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-01', '', 1, 0, 1, 0, 1, 1, 1, 27, 1, 1, 'ASRS-1822', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-02', '', 1, 0, 1, 0, 1, 1, 1, 27, 2, 1, 'ASRS-0096', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-03', '', 1, 0, 1, 0, 1, 1, 1, 27, 3, 1, 'ASRS-1112', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-04', '', 1, 0, 1, 0, 1, 1, 1, 27, 4, 1, 'ASRS-0515', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-05', '', 1, 0, 1, 0, 1, 1, 1, 27, 5, 1, 'ASRS-1766', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-06', '', 1, 0, 1, 0, 1, 1, 1, 27, 6, 1, 'ASRS-0055', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-07', '', 1, 0, 1, 0, 1, 1, 1, 27, 7, 1, 'ASRS-0542', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-08', '', 1, 0, 1, 0, 1, 1, 1, 27, 8, 1, 'ASRS-0156', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-09', '', 1, 0, 1, 0, 1, 1, 1, 27, 9, 1, 'ASRS-0067', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-10', '', 1, 0, 1, 0, 1, 1, 1, 27, 10, 1, 'ASRS-1876', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-11', '', 1, 0, 1, 0, 1, 1, 1, 27, 11, 1, 'ASRS-1754', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-27-12', '', 1, 1, 0, 0, 1, 1, 1, 27, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-01', '', 1, 0, 1, 0, 1, 1, 1, 28, 1, 1, 'ASRS-1567', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-02', '', 1, 0, 1, 0, 1, 1, 1, 28, 2, 1, 'ASRS-0681', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-03', '', 1, 0, 1, 0, 1, 1, 1, 28, 3, 1, 'ASRS-1641', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-04', '', 1, 0, 1, 0, 1, 1, 1, 28, 4, 1, 'ASRS-1100', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-05', '', 1, 0, 1, 0, 1, 1, 1, 28, 5, 1, 'ASRS-0155', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-06', '', 1, 0, 1, 0, 1, 1, 1, 28, 6, 1, 'ASRS-1061', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-07', '', 1, 0, 1, 0, 1, 1, 1, 28, 7, 1, 'ASRS-0684', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-08', '', 1, 0, 1, 0, 1, 1, 1, 28, 8, 1, 'ASRS-1881', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-09', '', 1, 0, 1, 0, 1, 1, 1, 28, 9, 1, 'ASRS-0089', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-10', '', 1, 0, 1, 0, 1, 1, 1, 28, 10, 1, 'ASRS-1234', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-11', '', 1, 0, 1, 0, 1, 1, 1, 28, 11, 1, 'ASRS-0047', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-28-12', '', 1, 1, 0, 0, 1, 1, 1, 28, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-01', '', 1, 0, 1, 0, 1, 1, 1, 29, 1, 1, 'ASRS-1107', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-02', '', 1, 0, 1, 0, 1, 1, 1, 29, 2, 1, 'ASRS-0139', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-03', '', 1, 0, 1, 0, 1, 1, 1, 29, 3, 1, 'ASRS-1743', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-04', '', 1, 0, 1, 0, 1, 1, 1, 29, 4, 1, 'ASRS-1041', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-05', '', 1, 0, 1, 0, 1, 1, 1, 29, 5, 1, 'ASRS-0549', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-06', '', 1, 0, 1, 0, 1, 1, 1, 29, 6, 1, 'ASRS-1865', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-07', '', 1, 0, 1, 0, 1, 1, 1, 29, 7, 1, 'ASRS-0305', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-08', '', 1, 0, 1, 0, 1, 1, 1, 29, 8, 1, 'ASRS-0087', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-09', '', 1, 0, 1, 0, 1, 1, 1, 29, 9, 1, 'ASRS-0165', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-10', '', 1, 0, 1, 0, 1, 1, 1, 29, 10, 1, 'ASRS-1012', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-11', '', 1, 0, 1, 0, 1, 1, 1, 29, 11, 1, 'ASRS-0509', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-29-12', '', 1, 1, 0, 0, 1, 1, 1, 29, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-01', '', 1, 0, 1, 0, 1, 1, 1, 30, 1, 1, 'ASRS-1802', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-02', '', 1, 0, 1, 0, 1, 1, 1, 30, 2, 1, 'ASRS-0890', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-03', '', 1, 0, 1, 0, 1, 1, 1, 30, 3, 1, 'ASRS-0073', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-04', '', 1, 0, 1, 0, 1, 1, 1, 30, 4, 1, 'ASRS-0149', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-05', '', 1, 0, 1, 0, 1, 1, 1, 30, 5, 1, 'ASRS-1521', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-06', '', 1, 0, 1, 0, 1, 1, 1, 30, 6, 1, 'ASRS-1886', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-07', '', 1, 0, 1, 0, 1, 1, 1, 30, 7, 1, 'ASRS-0626', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-08', '', 1, 0, 1, 0, 1, 1, 1, 30, 8, 1, 'ASRS-0020', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-09', '', 1, 0, 1, 0, 1, 1, 1, 30, 9, 1, 'ASRS-0074', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-10', '', 1, 0, 1, 0, 1, 1, 1, 30, 10, 1, 'ASRS-1511', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-11', '', 1, 0, 1, 0, 1, 1, 1, 30, 11, 1, 'ASRS-0741', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-30-12', '', 1, 1, 0, 0, 1, 1, 1, 30, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-01', '', 1, 0, 1, 0, 1, 1, 1, 31, 1, 1, 'ASRS-0037', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-02', '', 1, 0, 1, 0, 1, 1, 1, 31, 2, 1, 'ASRS-0065', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-03', '', 1, 0, 1, 0, 1, 1, 1, 31, 3, 1, 'ASRS-1870', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-04', '', 1, 0, 1, 0, 1, 1, 1, 31, 4, 1, 'ASRS-1893', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-05', '', 1, 0, 1, 0, 1, 1, 1, 31, 5, 1, 'ASRS-1884', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-06', '', 1, 0, 1, 0, 1, 1, 1, 31, 6, 1, 'ASRS-0311', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-07', '', 1, 0, 1, 0, 1, 1, 1, 31, 7, 1, 'ASRS-0162', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-08', '', 1, 0, 1, 0, 1, 1, 1, 31, 8, 1, 'ASRS-1524', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-09', '', 1, 0, 1, 0, 1, 1, 1, 31, 9, 1, 'ASRS-0192', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-10', '', 1, 0, 1, 0, 1, 1, 1, 31, 10, 1, 'ASRS-0206', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-11', '', 1, 0, 1, 0, 1, 1, 1, 31, 11, 1, 'ASRS-0259', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-31-12', '', 1, 1, 0, 0, 1, 1, 1, 31, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-01', '', 1, 0, 1, 0, 1, 1, 1, 32, 1, 1, 'ASRS-0547', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-02', '', 1, 0, 1, 0, 1, 1, 1, 32, 2, 1, 'ASRS-0997', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-03', '', 1, 0, 1, 0, 1, 1, 1, 32, 3, 1, 'ASRS-1539', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-04', '', 1, 0, 1, 0, 1, 1, 1, 32, 4, 1, 'ASRS-0558', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-05', '', 1, 0, 1, 0, 1, 1, 1, 32, 5, 1, 'ASRS-0309', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-06', '', 1, 0, 1, 0, 1, 1, 1, 32, 6, 1, 'ASRS-0505', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-07', '', 1, 0, 1, 0, 1, 1, 1, 32, 7, 1, 'ASRS-1728', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-08', '', 1, 0, 1, 0, 1, 1, 1, 32, 8, 1, 'ASRS-1152', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-09', '', 1, 0, 1, 0, 1, 1, 1, 32, 9, 1, 'ASRS-0207', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-10', '', 1, 0, 1, 0, 1, 1, 1, 32, 10, 1, 'ASRS-0238', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-11', '', 1, 0, 1, 0, 1, 1, 1, 32, 11, 1, 'ASRS-0332', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-32-12', '', 1, 1, 0, 0, 1, 1, 1, 32, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-01', '', 1, 0, 1, 0, 1, 1, 1, 33, 1, 1, 'ASRS-0120', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-02', '', 1, 0, 1, 0, 1, 1, 1, 33, 2, 1, 'ASRS-0526', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-03', '', 1, 0, 1, 0, 1, 1, 1, 33, 3, 1, 'ASRS-1466', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-04', '', 1, 0, 1, 0, 1, 1, 1, 33, 4, 1, 'ASRS-1015', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-05', '', 1, 0, 1, 0, 1, 1, 1, 33, 5, 1, 'ASRS-0064', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-06', '', 1, 0, 1, 0, 1, 1, 1, 33, 6, 1, 'ASRS-0273', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-07', '', 1, 0, 1, 0, 1, 1, 1, 33, 7, 1, 'ASRS-1759', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-08', '', 1, 0, 1, 0, 1, 1, 1, 33, 8, 1, 'ASRS-1162', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-09', '', 1, 0, 1, 0, 1, 1, 1, 33, 9, 1, 'ASRS-0237', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-10', '', 1, 0, 1, 0, 1, 1, 1, 33, 10, 1, 'ASRS-0335', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-11', '', 1, 0, 1, 0, 1, 1, 1, 33, 11, 1, 'ASRS-0381', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-33-12', '', 1, 1, 0, 0, 1, 1, 1, 33, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-01', '', 1, 0, 1, 0, 1, 1, 1, 34, 1, 1, 'ASRS-0640', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-02', '', 1, 0, 1, 0, 1, 1, 1, 34, 2, 1, 'ASRS-1892', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-03', '', 1, 0, 1, 0, 1, 1, 1, 34, 3, 1, 'ASRS-0619', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-04', '', 1, 0, 1, 0, 1, 1, 1, 34, 4, 1, 'ASRS-0172', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-05', '', 1, 0, 1, 0, 1, 1, 1, 34, 5, 1, 'ASRS-0507', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-06', '', 1, 0, 1, 0, 1, 1, 1, 34, 6, 1, 'ASRS-0315', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-07', '', 1, 0, 1, 0, 1, 1, 1, 34, 7, 1, 'ASRS-1161', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-08', '', 1, 0, 1, 0, 1, 1, 1, 34, 8, 1, 'ASRS-0288', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-09', '', 1, 0, 1, 0, 1, 1, 1, 34, 9, 1, 'ASRS-1823', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-10', '', 1, 0, 1, 0, 1, 1, 1, 34, 10, 1, 'ASRS-0379', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-11', '', 1, 0, 1, 0, 1, 1, 1, 34, 11, 1, 'ASRS-0329', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-34-12', '', 1, 1, 0, 0, 1, 1, 1, 34, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-01', '', 1, 0, 1, 0, 1, 1, 1, 35, 1, 1, 'ASRS-1054', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-02', '', 1, 0, 1, 0, 1, 1, 1, 35, 2, 1, 'ASRS-0126', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-03', '', 1, 0, 1, 0, 1, 1, 1, 35, 3, 1, 'ASRS-0018', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-04', '', 1, 0, 1, 0, 1, 1, 1, 35, 4, 1, 'ASRS-1529', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-05', '', 1, 0, 1, 0, 1, 1, 1, 35, 5, 1, 'ASRS-1652', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-06', '', 1, 0, 1, 0, 1, 1, 1, 35, 6, 1, 'ASRS-0707', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-07', '', 1, 0, 1, 0, 1, 1, 1, 35, 7, 1, 'ASRS-0285', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-08', '', 1, 0, 1, 0, 1, 1, 1, 35, 8, 1, 'ASRS-1125', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-09', '', 1, 0, 1, 0, 1, 1, 1, 35, 9, 1, 'ASRS-0377', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-10', '', 1, 0, 1, 0, 1, 1, 1, 35, 10, 1, 'ASRS-1683', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-11', '', 1, 0, 1, 0, 1, 1, 1, 35, 11, 1, 'ASRS-1223', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-35-12', '', 1, 1, 0, 0, 1, 1, 1, 35, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-01', '', 1, 0, 1, 0, 1, 1, 1, 36, 1, 1, 'ASRS-0124', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-02', '', 1, 0, 1, 0, 1, 1, 1, 36, 2, 1, 'ASRS-0173', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-03', '', 1, 0, 1, 0, 1, 1, 1, 36, 3, 1, 'ASRS-0364', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-04', '', 1, 0, 1, 0, 1, 1, 1, 36, 4, 1, 'ASRS-0722', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-05', '', 1, 0, 1, 0, 1, 1, 1, 36, 5, 1, 'ASRS-0704', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-06', '', 1, 0, 1, 0, 1, 1, 1, 36, 6, 1, 'ASRS-0222', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-07', '', 1, 0, 1, 0, 1, 1, 1, 36, 7, 1, 'ASRS-0269', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-08', '', 1, 0, 1, 0, 1, 1, 1, 36, 8, 1, 'ASRS-0346', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-09', '', 1, 0, 1, 0, 1, 1, 1, 36, 9, 1, 'ASRS-1088', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-10', '', 1, 0, 1, 0, 1, 1, 1, 36, 10, 1, 'ASRS-1244', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-11', '', 1, 0, 1, 0, 1, 1, 1, 36, 11, 1, 'ASRS-0967', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-36-12', '', 1, 1, 0, 0, 1, 1, 1, 36, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-01', '', 1, 0, 1, 0, 1, 1, 1, 37, 1, 1, 'ASRS-0174', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-02', '', 1, 0, 1, 0, 1, 1, 1, 37, 2, 1, 'ASRS-0506', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-03', '', 1, 0, 1, 0, 1, 1, 1, 37, 3, 1, 'ASRS-1153', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-04', '', 1, 0, 1, 0, 1, 1, 1, 37, 4, 1, 'ASRS-0898', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-05', '', 1, 0, 1, 0, 1, 1, 1, 37, 5, 1, 'ASRS-0213', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-06', '', 1, 0, 1, 0, 1, 1, 1, 37, 6, 1, 'ASRS-0298', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-07', '', 1, 0, 1, 0, 1, 1, 1, 37, 7, 1, 'ASRS-0345', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-08', '', 1, 0, 1, 0, 1, 1, 1, 37, 8, 1, 'ASRS-0386', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-09', '', 1, 0, 1, 0, 1, 1, 1, 37, 9, 1, 'ASRS-1031', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-10', '', 1, 0, 1, 0, 1, 1, 1, 37, 10, 1, 'ASRS-0301', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-11', '', 1, 0, 0, 0, 1, 1, 1, 37, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-37-12', '', 1, 1, 0, 0, 1, 1, 1, 37, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-01', '', 1, 0, 1, 0, 1, 1, 1, 38, 1, 1, 'ASRS-0188', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-02', '', 1, 0, 1, 0, 1, 1, 1, 38, 2, 1, 'ASRS-0735', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-03', '', 1, 0, 1, 0, 1, 1, 1, 38, 3, 1, 'ASRS-1170', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-04', '', 1, 0, 1, 0, 1, 1, 1, 38, 4, 1, 'ASRS-0211', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-05', '', 1, 0, 1, 0, 1, 1, 1, 38, 5, 1, 'ASRS-1814', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-06', '', 1, 0, 1, 0, 1, 1, 1, 38, 6, 1, 'ASRS-0372', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-07', '', 1, 0, 1, 0, 1, 1, 1, 38, 7, 1, 'ASRS-1528', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-08', '', 1, 0, 1, 0, 1, 1, 1, 38, 8, 1, 'ASRS-0313', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-09', '', 1, 0, 1, 0, 1, 1, 1, 38, 9, 1, 'ASRS-1035', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-10', '', 1, 0, 0, 0, 1, 1, 1, 38, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-11', '', 1, 0, 0, 0, 1, 1, 1, 38, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-38-12', '', 1, 1, 0, 0, 1, 1, 1, 38, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-01', '', 1, 0, 1, 0, 1, 1, 1, 39, 1, 1, 'ASRS-0733', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-02', '', 1, 0, 1, 0, 1, 1, 1, 39, 2, 1, 'ASRS-1900', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-03', '', 1, 0, 1, 0, 1, 1, 1, 39, 3, 1, 'ASRS-0210', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-04', '', 1, 0, 1, 0, 1, 1, 1, 39, 4, 1, 'ASRS-1051', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-05', '', 1, 0, 1, 0, 1, 1, 1, 39, 5, 1, 'ASRS-0387', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-06', '', 1, 0, 1, 0, 1, 1, 1, 39, 6, 1, 'ASRS-0340', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-07', '', 1, 0, 1, 0, 1, 1, 1, 39, 7, 1, 'ASRS-0999', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-08', '', 1, 0, 1, 0, 1, 1, 1, 39, 8, 1, 'ASRS-1027', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-09', '', 1, 0, 0, 0, 1, 1, 1, 39, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-10', '', 1, 0, 0, 0, 1, 1, 1, 39, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-11', '', 1, 0, 0, 0, 1, 1, 1, 39, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-39-12', '', 1, 1, 0, 0, 1, 1, 1, 39, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-01', '', 1, 0, 1, 0, 1, 1, 1, 40, 1, 1, 'ASRS-1168', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-02', '', 1, 0, 1, 0, 1, 1, 1, 40, 2, 1, 'ASRS-0219', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-03', '', 1, 0, 1, 0, 1, 1, 1, 40, 3, 1, 'ASRS-0276', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-04', '', 1, 0, 1, 0, 1, 1, 1, 40, 4, 1, 'ASRS-0391', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-05', '', 1, 0, 1, 0, 1, 1, 1, 40, 5, 1, 'ASRS-1885', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-06', '', 1, 0, 1, 0, 1, 1, 1, 40, 6, 1, 'ASRS-0347', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-07', '', 1, 0, 1, 0, 1, 1, 1, 40, 7, 1, 'ASRS-1032', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-08', '', 1, 0, 0, 0, 1, 1, 1, 40, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-09', '', 1, 0, 0, 0, 1, 1, 1, 40, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-10', '', 1, 0, 0, 0, 1, 1, 1, 40, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-11', '', 1, 0, 0, 0, 1, 1, 1, 40, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-40-12', '', 1, 1, 0, 0, 1, 1, 1, 40, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-01', '', 1, 0, 1, 0, 1, 1, 1, 41, 1, 1, 'ASRS-0217', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-02', '', 1, 0, 1, 0, 1, 1, 1, 41, 2, 1, 'ASRS-0300', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-03', '', 1, 0, 1, 0, 1, 1, 1, 41, 3, 1, 'ASRS-1531', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-04', '', 1, 0, 1, 0, 1, 1, 1, 41, 4, 1, 'ASRS-0316', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-05', '', 1, 0, 1, 0, 1, 1, 1, 41, 5, 1, 'ASRS-0371', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-06', '', 1, 0, 1, 0, 1, 1, 1, 41, 6, 1, 'ASRS-0303', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-07', '', 1, 0, 0, 0, 1, 1, 1, 41, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-08', '', 1, 0, 0, 0, 1, 1, 1, 41, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-09', '', 1, 0, 0, 0, 1, 1, 1, 41, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-10', '', 1, 0, 0, 0, 1, 1, 1, 41, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-11', '', 1, 0, 0, 0, 1, 1, 1, 41, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-41-12', '', 1, 1, 0, 0, 1, 1, 1, 41, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-01', '', 1, 0, 1, 0, 1, 1, 1, 42, 1, 1, 'ASRS-0247', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-02', '', 1, 0, 1, 0, 1, 1, 1, 42, 2, 1, 'ASRS-0336', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-03', '', 1, 0, 1, 0, 1, 1, 1, 42, 3, 1, 'ASRS-0271', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-04', '', 1, 0, 1, 0, 1, 1, 1, 42, 4, 1, 'ASRS-0889', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-05', '', 1, 0, 1, 0, 1, 1, 1, 42, 5, 1, 'ASRS-0337', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-06', '', 1, 0, 0, 0, 1, 1, 1, 42, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-07', '', 1, 0, 0, 0, 1, 1, 1, 42, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-08', '', 1, 0, 0, 0, 1, 1, 1, 42, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-09', '', 1, 0, 0, 0, 1, 1, 1, 42, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-10', '', 1, 0, 0, 0, 1, 1, 1, 42, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-11', '', 1, 0, 0, 0, 1, 1, 1, 42, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A01-42-12', '', 1, 1, 0, 0, 1, 1, 1, 42, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-01', '', 1, 0, 1, 0, 1, 1, 2, 1, 1, 1, 'ASRS-1116', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-02', '', 1, 0, 1, 0, 1, 1, 2, 1, 2, 1, 'ASRS-0991', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-03', '', 1, 0, 1, 0, 1, 1, 2, 1, 3, 1, 'ASRS-0909', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-04', '', 1, 0, 1, 0, 1, 1, 2, 1, 4, 1, 'ASRS-0687', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-05', '', 1, 0, 1, 0, 1, 1, 2, 1, 5, 1, 'ASRS-1554', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-06', '', 1, 0, 1, 0, 1, 1, 2, 1, 6, 1, 'ASRS-0958', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-07', '', 1, 0, 1, 0, 1, 1, 2, 1, 7, 1, 'ASRS-1729', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-08', '', 1, 0, 1, 0, 1, 1, 2, 1, 8, 1, 'ASRS-0533', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-09', '', 1, 0, 1, 0, 1, 1, 2, 1, 9, 1, 'ASRS-1665', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-10', '', 1, 0, 1, 0, 1, 1, 2, 1, 10, 1, 'ASRS-0197', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-11', '', 1, 0, 1, 0, 1, 1, 2, 1, 11, 1, 'ASRS-0675', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-01-12', '', 1, 1, 0, 0, 1, 1, 2, 1, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-01', '', 1, 0, 1, 0, 1, 1, 2, 2, 1, 1, 'ASRS-1427', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-02', '', 1, 0, 1, 0, 1, 1, 2, 2, 2, 1, 'ASRS-1444', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-03', '', 1, 0, 1, 0, 1, 1, 2, 2, 3, 1, 'ASRS-1675', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-04', '', 1, 0, 1, 0, 1, 1, 2, 2, 4, 1, 'ASRS-0944', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-05', '', 1, 0, 1, 0, 1, 1, 2, 2, 5, 1, 'ASRS-0881', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-06', '', 1, 0, 1, 0, 1, 1, 2, 2, 6, 1, 'ASRS-1167', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-07', '', 1, 0, 1, 0, 1, 1, 2, 2, 7, 1, 'ASRS-0892', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-08', '', 1, 0, 1, 0, 1, 1, 2, 2, 8, 1, 'ASRS-0905', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-09', '', 1, 0, 1, 0, 1, 1, 2, 2, 9, 1, 'ASRS-1780', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-10', '', 1, 0, 1, 0, 1, 1, 2, 2, 10, 1, 'ASRS-1093', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-11', '', 1, 0, 1, 0, 1, 1, 2, 2, 11, 1, 'ASRS-0879', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-02-12', '', 1, 1, 1, 0, 1, 1, 2, 2, 12, 1, 'ASRS-1422', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-01', '', 1, 0, 1, 0, 1, 1, 2, 3, 1, 1, 'ASRS-1266', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-02', '', 1, 0, 1, 0, 1, 1, 2, 3, 2, 1, 'ASRS-1288', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-03', '', 1, 0, 1, 0, 1, 1, 2, 3, 3, 1, 'ASRS-0900', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-04', '', 1, 0, 1, 0, 1, 1, 2, 3, 4, 1, 'ASRS-1873', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-05', '', 1, 0, 1, 0, 1, 1, 2, 3, 5, 1, 'ASRS-0894', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-06', '', 1, 0, 1, 0, 1, 1, 2, 3, 6, 1, 'ASRS-0502', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-07', '', 1, 0, 1, 0, 1, 1, 2, 3, 7, 1, 'ASRS-0633', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-08', '', 1, 0, 1, 0, 1, 1, 2, 3, 8, 1, 'ASRS-0957', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-09', '', 1, 0, 1, 0, 1, 1, 2, 3, 9, 1, 'ASRS-0922', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-10', '', 1, 0, 1, 0, 1, 1, 2, 3, 10, 1, 'ASRS-0918', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-11', '', 1, 0, 1, 0, 1, 1, 2, 3, 11, 1, 'ASRS-0913', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-03-12', '', 1, 1, 1, 0, 1, 1, 2, 3, 12, 1, 'ASRS-0773', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-01', '', 1, 0, 1, 0, 1, 1, 2, 4, 1, 1, 'ASRS-0960', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-02', '', 1, 0, 1, 0, 1, 1, 2, 4, 2, 1, 'ASRS-1441', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-03', '', 1, 0, 1, 0, 1, 1, 2, 4, 3, 1, 'ASRS-1165', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-04', '', 1, 0, 1, 0, 1, 1, 2, 4, 4, 1, 'ASRS-0953', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-05', '', 1, 0, 1, 0, 1, 1, 2, 4, 5, 1, 'ASRS-1345', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-06', '', 1, 0, 1, 0, 1, 1, 2, 4, 6, 1, 'ASRS-0948', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-07', '', 1, 0, 1, 0, 1, 1, 2, 4, 7, 1, 'ASRS-0934', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-08', '', 1, 0, 1, 0, 1, 1, 2, 4, 8, 1, 'ASRS-0936', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-09', '', 1, 0, 1, 0, 1, 1, 2, 4, 9, 1, 'ASRS-0939', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-10', '', 1, 0, 1, 0, 1, 1, 2, 4, 10, 1, 'ASRS-0978', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-11', '', 1, 0, 1, 0, 1, 1, 2, 4, 11, 1, 'ASRS-0969', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-04-12', '', 1, 1, 1, 0, 1, 1, 2, 4, 12, 1, 'ASRS-0828', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-01', '', 1, 0, 1, 0, 1, 1, 2, 5, 1, 1, 'ASRS-0965', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-02', '', 1, 0, 1, 0, 1, 1, 2, 5, 2, 1, 'ASRS-0019', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-03', '', 1, 0, 1, 0, 1, 1, 2, 5, 3, 1, 'ASRS-0930', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-04', '', 1, 0, 1, 0, 1, 1, 2, 5, 4, 1, 'ASRS-0062', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-05', '', 1, 0, 1, 0, 1, 1, 2, 5, 5, 1, 'ASRS-1177', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-06', '', 1, 0, 1, 0, 1, 1, 2, 5, 6, 1, 'ASRS-1888', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-07', '', 1, 0, 1, 0, 1, 1, 2, 5, 7, 1, 'ASRS-1211', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-08', '', 1, 0, 1, 0, 1, 1, 2, 5, 8, 1, 'ASRS-0002', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-09', '', 1, 0, 1, 0, 1, 1, 2, 5, 9, 1, 'ASRS-1184', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-10', '', 1, 0, 1, 0, 1, 1, 2, 5, 10, 1, 'ASRS-1186', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-11', '', 1, 0, 1, 0, 1, 1, 2, 5, 11, 1, 'ASRS-1772', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-05-12', '', 1, 1, 1, 0, 1, 1, 2, 5, 12, 1, 'ASRS-0797', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-01', '', 1, 0, 1, 0, 1, 1, 2, 6, 1, 1, 'ASRS-1820', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-02', '', 1, 0, 1, 0, 1, 1, 2, 6, 2, 1, 'ASRS-0679', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-03', '', 1, 0, 1, 0, 1, 1, 2, 6, 3, 1, 'ASRS-1218', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-04', '', 1, 0, 1, 0, 1, 1, 2, 6, 4, 1, 'ASRS-1192', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-05', '', 1, 0, 1, 0, 1, 1, 2, 6, 5, 1, 'ASRS-1203', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-06', '', 1, 0, 1, 0, 1, 1, 2, 6, 6, 1, 'ASRS-1216', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-07', '', 1, 0, 1, 0, 1, 1, 2, 6, 7, 1, 'ASRS-0690', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-08', '', 1, 0, 1, 0, 1, 1, 2, 6, 8, 1, 'ASRS-1276', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-09', '', 1, 0, 1, 0, 1, 1, 2, 6, 9, 1, 'ASRS-0678', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-10', '', 1, 0, 1, 0, 1, 1, 2, 6, 10, 1, 'ASRS-0817', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-11', '', 1, 0, 1, 0, 1, 1, 2, 6, 11, 1, 'ASRS-0745', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-06-12', '', 1, 1, 1, 0, 1, 1, 2, 6, 12, 1, 'ASRS-1467', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-01', '', 1, 0, 1, 0, 1, 1, 2, 7, 1, 1, 'ASRS-1057', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-02', '', 1, 0, 1, 0, 1, 1, 2, 7, 2, 1, 'ASRS-1296', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-03', '', 1, 0, 1, 0, 1, 1, 2, 7, 3, 1, 'ASRS-0838', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-04', '', 1, 0, 1, 0, 1, 1, 2, 7, 4, 1, 'ASRS-1331', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-05', '', 1, 0, 1, 0, 1, 1, 2, 7, 5, 1, 'ASRS-1352', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-06', '', 1, 0, 1, 0, 1, 1, 2, 7, 6, 1, 'ASRS-1716', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-07', '', 1, 0, 1, 0, 1, 1, 2, 7, 7, 1, 'ASRS-1419', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-08', '', 1, 0, 1, 0, 1, 1, 2, 7, 8, 1, 'ASRS-0767', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-09', '', 1, 0, 1, 0, 1, 1, 2, 7, 9, 1, 'ASRS-0795', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-10', '', 1, 0, 1, 0, 1, 1, 2, 7, 10, 1, 'ASRS-0836', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-11', '', 1, 0, 1, 0, 1, 1, 2, 7, 11, 1, 'ASRS-1465', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-07-12', '', 1, 1, 0, 0, 1, 1, 2, 7, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-01', '', 1, 0, 1, 0, 1, 1, 2, 8, 1, 1, 'ASRS-0981', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-02', '', 1, 0, 1, 0, 1, 1, 2, 8, 2, 1, 'ASRS-1278', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-03', '', 1, 0, 1, 0, 1, 1, 2, 8, 3, 1, 'ASRS-1319', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-04', '', 1, 0, 1, 0, 1, 1, 2, 8, 4, 1, 'ASRS-1349', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-05', '', 1, 0, 1, 0, 1, 1, 2, 8, 5, 1, 'ASRS-1688', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-06', '', 1, 0, 1, 0, 1, 1, 2, 8, 6, 1, 'ASRS-1411', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-07', '', 1, 0, 1, 0, 1, 1, 2, 8, 7, 1, 'ASRS-0782', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-08', '', 1, 0, 1, 0, 1, 1, 2, 8, 8, 1, 'ASRS-0800', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-09', '', 1, 0, 1, 0, 1, 1, 2, 8, 9, 1, 'ASRS-1555', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-10', '', 1, 0, 1, 0, 1, 1, 2, 8, 10, 1, 'ASRS-1087', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-11', '', 1, 0, 1, 0, 1, 1, 2, 8, 11, 1, 'ASRS-1508', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-08-12', '', 1, 1, 0, 0, 1, 1, 2, 8, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-01', '', 1, 0, 1, 0, 1, 1, 2, 9, 1, 1, 'ASRS-1336', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-02', '', 1, 0, 1, 0, 1, 1, 2, 9, 2, 1, 'ASRS-1412', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-03', '', 1, 0, 1, 0, 1, 1, 2, 9, 3, 1, 'ASRS-1324', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-04', '', 1, 0, 1, 0, 1, 1, 2, 9, 4, 1, 'ASRS-0084', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-05', '', 1, 0, 1, 0, 1, 1, 2, 9, 5, 1, 'ASRS-1400', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-06', '', 1, 0, 1, 0, 1, 1, 2, 9, 6, 1, 'ASRS-0781', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-07', '', 1, 0, 1, 0, 1, 1, 2, 9, 7, 1, 'ASRS-0754', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-08', '', 1, 0, 1, 0, 1, 1, 2, 9, 8, 1, 'ASRS-0789', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-09', '', 1, 0, 1, 0, 1, 1, 2, 9, 9, 1, 'ASRS-1461', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-10', '', 1, 0, 1, 0, 1, 1, 2, 9, 10, 1, 'ASRS-1507', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-11', '', 1, 0, 1, 0, 1, 1, 2, 9, 11, 1, 'ASRS-1483', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-09-12', '', 1, 1, 0, 0, 1, 1, 2, 9, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-01', '', 1, 0, 1, 0, 1, 1, 2, 10, 1, 1, 'ASRS-0995', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-02', '', 1, 0, 1, 0, 1, 1, 2, 10, 2, 1, 'ASRS-1428', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-03', '', 1, 0, 1, 0, 1, 1, 2, 10, 3, 1, 'ASRS-1376', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-04', '', 1, 0, 1, 0, 1, 1, 2, 10, 4, 1, 'ASRS-1399', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-05', '', 1, 0, 1, 0, 1, 1, 2, 10, 5, 1, 'ASRS-1442', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-06', '', 1, 0, 1, 0, 1, 1, 2, 10, 6, 1, 'ASRS-0847', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-07', '', 1, 0, 1, 0, 1, 1, 2, 10, 7, 1, 'ASRS-0792', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-08', '', 1, 0, 1, 0, 1, 1, 2, 10, 8, 1, 'ASRS-1459', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-09', '', 1, 0, 1, 0, 1, 1, 2, 10, 9, 1, 'ASRS-1498', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-10', '', 1, 0, 1, 0, 1, 1, 2, 10, 10, 1, 'ASRS-1557', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-11', '', 1, 0, 1, 0, 1, 1, 2, 10, 11, 1, 'ASRS-0628', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-10-12', '', 1, 1, 0, 0, 1, 1, 2, 10, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-01', '', 1, 0, 1, 0, 1, 1, 2, 11, 1, 1, 'ASRS-1332', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-02', '', 1, 0, 1, 0, 1, 1, 2, 11, 2, 1, 'ASRS-0557', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-03', '', 1, 0, 1, 0, 1, 1, 2, 11, 3, 1, 'ASRS-1369', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-04', '', 1, 0, 1, 0, 1, 1, 2, 11, 4, 1, 'ASRS-1370', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-05', '', 1, 0, 1, 0, 1, 1, 2, 11, 5, 1, 'ASRS-1435', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-06', '', 1, 0, 1, 0, 1, 1, 2, 11, 6, 1, 'ASRS-0869', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-07', '', 1, 0, 1, 0, 1, 1, 2, 11, 7, 1, 'ASRS-1356', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-08', '', 1, 0, 1, 0, 1, 1, 2, 11, 8, 1, 'ASRS-1497', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-09', '', 1, 0, 1, 0, 1, 1, 2, 11, 9, 1, 'ASRS-1277', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-10', '', 1, 0, 1, 0, 1, 1, 2, 11, 10, 1, 'ASRS-1426', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-11', '', 1, 0, 1, 0, 1, 1, 2, 11, 11, 1, 'ASRS-1705', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-11-12', '', 1, 1, 0, 0, 1, 1, 2, 11, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-01', '', 1, 0, 1, 0, 1, 1, 2, 12, 1, 1, 'ASRS-1377', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-02', '', 1, 0, 1, 0, 1, 1, 2, 12, 2, 1, 'ASRS-1413', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-03', '', 1, 0, 1, 0, 1, 1, 2, 12, 3, 1, 'ASRS-0769', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-04', '', 1, 0, 1, 0, 1, 1, 2, 12, 4, 1, 'ASRS-0749', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-05', '', 1, 0, 1, 0, 1, 1, 2, 12, 5, 1, 'ASRS-0870', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-06', '', 1, 0, 1, 0, 1, 1, 2, 12, 6, 1, 'ASRS-1304', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-07', '', 1, 0, 1, 0, 1, 1, 2, 12, 7, 1, 'ASRS-1756', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-08', '', 1, 0, 1, 0, 1, 1, 2, 12, 8, 1, 'ASRS-1577', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-09', '', 1, 0, 1, 0, 1, 1, 2, 12, 9, 1, 'ASRS-1588', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-10', '', 1, 0, 1, 0, 1, 1, 2, 12, 10, 1, 'ASRS-1697', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-11', '', 1, 0, 1, 0, 1, 1, 2, 12, 11, 1, 'ASRS-0994', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-12-12', '', 1, 1, 0, 0, 1, 1, 2, 12, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-01', '', 1, 0, 1, 0, 1, 1, 2, 13, 1, 1, 'ASRS-1397', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-02', '', 1, 0, 1, 0, 1, 1, 2, 13, 2, 1, 'ASRS-0762', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-03', '', 1, 0, 1, 0, 1, 1, 2, 13, 3, 1, 'ASRS-0830', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-04', '', 1, 0, 1, 0, 1, 1, 2, 13, 4, 1, 'ASRS-0858', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-05', '', 1, 0, 1, 0, 1, 1, 2, 13, 5, 1, 'ASRS-0923', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-06', '', 1, 0, 1, 0, 1, 1, 2, 13, 6, 1, 'ASRS-1552', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-07', '', 1, 0, 1, 0, 1, 1, 2, 13, 7, 1, 'ASRS-1160', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-08', '', 1, 0, 1, 0, 1, 1, 2, 13, 8, 1, 'ASRS-1795', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-09', '', 1, 0, 1, 0, 1, 1, 2, 13, 9, 1, 'ASRS-1696', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-10', '', 1, 0, 1, 0, 1, 1, 2, 13, 10, 1, 'ASRS-1627', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-11', '', 1, 0, 1, 0, 1, 1, 2, 13, 11, 1, 'ASRS-1629', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-13-12', '', 1, 1, 0, 0, 1, 1, 2, 13, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-01', '', 1, 0, 1, 0, 1, 1, 2, 14, 1, 1, 'ASRS-0761', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-02', '', 1, 0, 1, 0, 1, 1, 2, 14, 2, 1, 'ASRS-0751', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-03', '', 1, 0, 1, 0, 1, 1, 2, 14, 3, 1, 'ASRS-0791', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-04', '', 1, 0, 1, 0, 1, 1, 2, 14, 4, 1, 'ASRS-1307', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-05', '', 1, 0, 1, 0, 1, 1, 2, 14, 5, 1, 'ASRS-1510', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-06', '', 1, 0, 1, 0, 1, 1, 2, 14, 6, 1, 'ASRS-1690', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-07', '', 1, 0, 1, 0, 1, 1, 2, 14, 7, 1, 'ASRS-1575', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-08', '', 1, 0, 1, 0, 1, 1, 2, 14, 8, 1, 'ASRS-1699', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-09', '', 1, 0, 1, 0, 1, 1, 2, 14, 9, 1, 'ASRS-1623', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-10', '', 1, 0, 1, 0, 1, 1, 2, 14, 10, 1, 'ASRS-1719', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-11', '', 1, 0, 1, 0, 1, 1, 2, 14, 11, 1, 'ASRS-1430', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-14-12', '', 1, 1, 0, 0, 1, 1, 2, 14, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-01', '', 1, 0, 1, 0, 1, 1, 2, 15, 1, 1, 'ASRS-0844', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-02', '', 1, 0, 1, 0, 1, 1, 2, 15, 2, 1, 'ASRS-0790', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-03', '', 1, 0, 1, 0, 1, 1, 2, 15, 3, 1, 'ASRS-1350', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-04', '', 1, 0, 1, 0, 1, 1, 2, 15, 4, 1, 'ASRS-1502', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-05', '', 1, 0, 1, 0, 1, 1, 2, 15, 5, 1, 'ASRS-1749', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-06', '', 1, 0, 1, 0, 1, 1, 2, 15, 6, 1, 'ASRS-1563', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-07', '', 1, 0, 1, 0, 1, 1, 2, 15, 7, 1, 'ASRS-0648', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-08', '', 1, 0, 1, 0, 1, 1, 2, 15, 8, 1, 'ASRS-1621', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-09', '', 1, 0, 1, 0, 1, 1, 2, 15, 9, 1, 'ASRS-1493', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-10', '', 1, 0, 1, 0, 1, 1, 2, 15, 10, 1, 'ASRS-0647', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-11', '', 1, 0, 1, 0, 1, 1, 2, 15, 11, 1, 'ASRS-0680', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-15-12', '', 1, 1, 0, 0, 1, 1, 2, 15, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-01', '', 1, 0, 1, 0, 1, 1, 2, 16, 1, 1, 'ASRS-0857', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-02', '', 1, 0, 1, 0, 1, 1, 2, 16, 2, 1, 'ASRS-1335', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-03', '', 1, 0, 1, 0, 1, 1, 2, 16, 3, 1, 'ASRS-1504', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-04', '', 1, 0, 1, 0, 1, 1, 2, 16, 4, 1, 'ASRS-1578', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-05', '', 1, 0, 1, 0, 1, 1, 2, 16, 5, 1, 'ASRS-1562', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-06', '', 1, 0, 1, 0, 1, 1, 2, 16, 6, 1, 'ASRS-1237', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-07', '', 1, 0, 1, 0, 1, 1, 2, 16, 7, 1, 'ASRS-1599', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-08', '', 1, 0, 1, 0, 1, 1, 2, 16, 8, 1, 'ASRS-0612', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-09', '', 1, 0, 1, 0, 1, 1, 2, 16, 9, 1, 'ASRS-0686', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-10', '', 1, 0, 1, 0, 1, 1, 2, 16, 10, 1, 'ASRS-1128', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-11', '', 1, 0, 1, 0, 1, 1, 2, 16, 11, 1, 'ASRS-1810', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-16-12', '', 1, 1, 0, 0, 1, 1, 2, 16, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-01', '', 1, 0, 1, 0, 1, 1, 2, 17, 1, 1, 'ASRS-1320', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-02', '', 1, 0, 1, 0, 1, 1, 2, 17, 2, 1, 'ASRS-1499', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-03', '', 1, 0, 1, 0, 1, 1, 2, 17, 3, 1, 'ASRS-1695', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-04', '', 1, 0, 1, 0, 1, 1, 2, 17, 4, 1, 'ASRS-0164', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-05', '', 1, 0, 1, 0, 1, 1, 2, 17, 5, 1, 'ASRS-1601', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-06', '', 1, 0, 1, 0, 1, 1, 2, 17, 6, 1, 'ASRS-1654', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-07', '', 1, 0, 1, 0, 1, 1, 2, 17, 7, 1, 'ASRS-1600', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-08', '', 1, 0, 1, 0, 1, 1, 2, 17, 8, 1, 'ASRS-1605', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-09', '', 1, 0, 1, 0, 1, 1, 2, 17, 9, 1, 'ASRS-0113', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-10', '', 1, 0, 1, 0, 1, 1, 2, 17, 10, 1, 'ASRS-1590', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-11', '', 1, 0, 1, 0, 1, 1, 2, 17, 11, 1, 'ASRS-1807', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-17-12', '', 1, 1, 0, 0, 1, 1, 2, 17, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-01', '', 1, 0, 1, 0, 1, 1, 2, 18, 1, 1, 'ASRS-1550', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-02', '', 1, 0, 1, 0, 1, 1, 2, 18, 2, 1, 'ASRS-1571', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-03', '', 1, 0, 1, 0, 1, 1, 2, 18, 3, 1, 'ASRS-1664', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-04', '', 1, 0, 1, 0, 1, 1, 2, 18, 4, 1, 'ASRS-0021', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-05', '', 1, 0, 1, 0, 1, 1, 2, 18, 5, 1, 'ASRS-1882', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-06', '', 1, 0, 1, 0, 1, 1, 2, 18, 6, 1, 'ASRS-1777', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-07', '', 1, 0, 1, 0, 1, 1, 2, 18, 7, 1, 'ASRS-1291', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-08', '', 1, 0, 1, 0, 1, 1, 2, 18, 8, 1, 'ASRS-1119', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-09', '', 1, 0, 1, 0, 1, 1, 2, 18, 9, 1, 'ASRS-1606', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-10', '', 1, 0, 1, 0, 1, 1, 2, 18, 10, 1, 'ASRS-1860', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-11', '', 1, 0, 1, 0, 1, 1, 2, 18, 11, 1, 'ASRS-0697', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-18-12', '', 1, 1, 0, 0, 1, 1, 2, 18, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-01', '', 1, 0, 1, 0, 1, 1, 2, 19, 1, 1, 'ASRS-1569', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-02', '', 1, 0, 1, 0, 1, 1, 2, 19, 2, 1, 'ASRS-0075', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-03', '', 1, 0, 1, 0, 1, 1, 2, 19, 3, 1, 'ASRS-0891', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-04', '', 1, 0, 1, 0, 1, 1, 2, 19, 4, 1, 'ASRS-1104', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-05', '', 1, 0, 1, 0, 1, 1, 2, 19, 5, 1, 'ASRS-1715', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-06', '', 1, 0, 1, 0, 1, 1, 2, 19, 6, 1, 'ASRS-0696', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-07', '', 1, 0, 1, 0, 1, 1, 2, 19, 7, 1, 'ASRS-0658', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-08', '', 1, 0, 1, 0, 1, 1, 2, 19, 8, 1, 'ASRS-0651', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-09', '', 1, 0, 1, 0, 1, 1, 2, 19, 9, 1, 'ASRS-0703', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-10', '', 1, 0, 1, 0, 1, 1, 2, 19, 10, 1, 'ASRS-1581', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-11', '', 1, 0, 1, 0, 1, 1, 2, 19, 11, 1, 'ASRS-1446', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-19-12', '', 1, 1, 0, 0, 1, 1, 2, 19, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-01', '', 1, 0, 1, 0, 1, 1, 2, 20, 1, 1, 'ASRS-1658', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-02', '', 1, 0, 1, 0, 1, 1, 2, 20, 2, 1, 'ASRS-1383', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-03', '', 1, 0, 1, 0, 1, 1, 2, 20, 3, 1, 'ASRS-1653', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-04', '', 1, 0, 1, 0, 1, 1, 2, 20, 4, 1, 'ASRS-1746', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-05', '', 1, 0, 1, 0, 1, 1, 2, 20, 5, 1, 'ASRS-0984', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-06', '', 1, 0, 1, 0, 1, 1, 2, 20, 6, 1, 'ASRS-0009', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-07', '', 1, 0, 1, 0, 1, 1, 2, 20, 7, 1, 'ASRS-1775', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-08', '', 1, 0, 1, 0, 1, 1, 2, 20, 8, 1, 'ASRS-1343', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-09', '', 1, 0, 1, 0, 1, 1, 2, 20, 9, 1, 'ASRS-1833', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-10', '', 1, 0, 1, 0, 1, 1, 2, 20, 10, 1, 'ASRS-0695', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-11', '', 1, 0, 1, 0, 1, 1, 2, 20, 11, 1, 'ASRS-0052', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-20-12', '', 1, 1, 0, 0, 1, 1, 2, 20, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-01', '', 1, 0, 1, 0, 1, 1, 2, 21, 1, 1, 'ASRS-1701', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-02', '', 1, 0, 1, 0, 1, 1, 2, 21, 2, 1, 'ASRS-1644', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-03', '', 1, 0, 1, 0, 1, 1, 2, 21, 3, 1, 'ASRS-1745', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-04', '', 1, 0, 1, 0, 1, 1, 2, 21, 4, 1, 'ASRS-1285', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-05', '', 1, 0, 1, 0, 1, 1, 2, 21, 5, 1, 'ASRS-1857', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-06', '', 1, 0, 1, 0, 1, 1, 2, 21, 6, 1, 'ASRS-1272', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-07', '', 1, 0, 1, 0, 1, 1, 2, 21, 7, 1, 'ASRS-1389', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-08', '', 1, 0, 1, 0, 1, 1, 2, 21, 8, 1, 'ASRS-1109', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-09', '', 1, 0, 1, 0, 1, 1, 2, 21, 9, 1, 'ASRS-1110', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-10', '', 1, 0, 1, 0, 1, 1, 2, 21, 10, 1, 'ASRS-1090', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-11', '', 1, 0, 1, 0, 1, 1, 2, 21, 11, 1, 'ASRS-0035', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-21-12', '', 1, 1, 0, 0, 1, 1, 2, 21, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-01', '', 1, 0, 1, 0, 1, 1, 2, 22, 1, 1, 'ASRS-1643', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-02', '', 1, 0, 1, 0, 1, 1, 2, 22, 2, 1, 'ASRS-1092', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-03', '', 1, 0, 1, 0, 1, 1, 2, 22, 3, 1, 'ASRS-0688', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-04', '', 1, 0, 1, 0, 1, 1, 2, 22, 4, 1, 'ASRS-0625', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-05', '', 1, 0, 1, 0, 1, 1, 2, 22, 5, 1, 'ASRS-1647', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-06', '', 1, 0, 1, 0, 1, 1, 2, 22, 6, 1, 'ASRS-0771', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-07', '', 1, 0, 1, 0, 1, 1, 2, 22, 7, 1, 'ASRS-0005', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-08', '', 1, 0, 1, 0, 1, 1, 2, 22, 8, 1, 'ASRS-1681', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-09', '', 1, 0, 1, 0, 1, 1, 2, 22, 9, 1, 'ASRS-0701', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-10', '', 1, 0, 1, 0, 1, 1, 2, 22, 10, 1, 'ASRS-0033', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-11', '', 1, 0, 1, 0, 1, 1, 2, 22, 11, 1, 'ASRS-0038', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-22-12', '', 1, 1, 0, 0, 1, 1, 2, 22, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-01', '', 1, 0, 1, 0, 1, 1, 2, 23, 1, 1, 'ASRS-1740', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-02', '', 1, 0, 1, 0, 1, 1, 2, 23, 2, 1, 'ASRS-0665', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-03', '', 1, 0, 1, 0, 1, 1, 2, 23, 3, 1, 'ASRS-1858', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-04', '', 1, 0, 1, 0, 1, 1, 2, 23, 4, 1, 'ASRS-1758', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-05', '', 1, 0, 1, 0, 1, 1, 2, 23, 5, 1, 'ASRS-0231', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-06', '', 1, 0, 1, 0, 1, 1, 2, 23, 6, 1, 'ASRS-0147', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-07', '', 1, 0, 1, 0, 1, 1, 2, 23, 7, 1, 'ASRS-1755', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-08', '', 1, 0, 1, 0, 1, 1, 2, 23, 8, 1, 'ASRS-1824', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-09', '', 1, 0, 0, 0, 1, 1, 2, 23, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-10', '', 1, 0, 1, 0, 1, 1, 2, 23, 10, 1, 'ASRS-0567', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-11', '', 1, 0, 1, 0, 1, 1, 2, 23, 11, 1, 'ASRS-1048', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-23-12', '', 1, 1, 0, 0, 1, 1, 2, 23, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-01', '', 1, 0, 1, 0, 1, 1, 2, 24, 1, 1, 'ASRS-1395', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-02', '', 1, 0, 1, 0, 1, 1, 2, 24, 2, 1, 'ASRS-1682', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-03', '', 1, 0, 1, 0, 1, 1, 2, 24, 3, 1, 'ASRS-1787', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-04', '', 1, 0, 1, 0, 1, 1, 2, 24, 4, 1, 'ASRS-1838', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-05', '', 1, 0, 1, 0, 1, 1, 2, 24, 5, 1, 'ASRS-0070', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-06', '', 1, 0, 1, 0, 1, 1, 2, 24, 6, 1, 'ASRS-1133', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-07', '', 1, 0, 1, 0, 1, 1, 2, 24, 7, 1, 'ASRS-1382', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-08', '', 1, 0, 1, 0, 1, 1, 2, 24, 8, 1, 'ASRS-0040', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-09', '', 1, 0, 1, 0, 1, 1, 2, 24, 9, 1, 'ASRS-0617', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-10', '', 1, 0, 1, 0, 1, 1, 2, 24, 10, 1, 'ASRS-0534', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-11', '', 1, 0, 1, 0, 1, 1, 2, 24, 11, 1, 'ASRS-1871', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-24-12', '', 1, 1, 0, 0, 1, 1, 2, 24, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-01', '', 1, 0, 1, 0, 1, 1, 2, 25, 1, 1, 'ASRS-1798', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-02', '', 1, 0, 1, 0, 1, 1, 2, 25, 2, 1, 'ASRS-1811', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-03', '', 1, 0, 1, 0, 1, 1, 2, 25, 3, 1, 'ASRS-0649', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-04', '', 1, 0, 1, 0, 1, 1, 2, 25, 4, 1, 'ASRS-0670', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-05', '', 1, 0, 1, 0, 1, 1, 2, 25, 5, 1, 'ASRS-0904', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-06', '', 1, 0, 1, 0, 1, 1, 2, 25, 6, 1, 'ASRS-0683', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-07', '', 1, 0, 1, 0, 1, 1, 2, 25, 7, 1, 'ASRS-0537', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-08', '', 1, 0, 1, 0, 1, 1, 2, 25, 8, 1, 'ASRS-0093', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-09', '', 1, 0, 1, 0, 1, 1, 2, 25, 9, 1, 'ASRS-1039', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-10', '', 1, 0, 1, 0, 1, 1, 2, 25, 10, 1, 'ASRS-0160', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-11', '', 1, 0, 1, 0, 1, 1, 2, 25, 11, 1, 'ASRS-0538', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-25-12', '', 1, 1, 0, 0, 1, 1, 2, 25, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-01', '', 1, 0, 1, 0, 1, 1, 2, 26, 1, 1, 'ASRS-1808', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-02', '', 1, 0, 1, 0, 1, 1, 2, 26, 2, 1, 'ASRS-1105', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-03', '', 1, 0, 1, 0, 1, 1, 2, 26, 3, 1, 'ASRS-0230', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-04', '', 1, 0, 1, 0, 1, 1, 2, 26, 4, 1, 'ASRS-0024', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-05', '', 1, 0, 1, 0, 1, 1, 2, 26, 5, 1, 'ASRS-1659', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-06', '', 1, 0, 1, 0, 1, 1, 2, 26, 6, 1, 'ASRS-1894', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-07', '', 1, 0, 1, 0, 1, 1, 2, 26, 7, 1, 'ASRS-1897', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-08', '', 1, 0, 1, 0, 1, 1, 2, 26, 8, 1, 'ASRS-0992', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-09', '', 1, 0, 1, 0, 1, 1, 2, 26, 9, 1, 'ASRS-0940', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-10', '', 1, 0, 1, 0, 1, 1, 2, 26, 10, 1, 'ASRS-0127', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-11', '', 1, 0, 1, 0, 1, 1, 2, 26, 11, 1, 'ASRS-1516', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-26-12', '', 1, 1, 0, 0, 1, 1, 2, 26, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-01', '', 1, 0, 1, 0, 1, 1, 2, 27, 1, 1, 'ASRS-1842', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-02', '', 1, 0, 1, 0, 1, 1, 2, 27, 2, 1, 'ASRS-0880', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-03', '', 1, 0, 1, 0, 1, 1, 2, 27, 3, 1, 'ASRS-0702', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-04', '', 1, 0, 1, 0, 1, 1, 2, 27, 4, 1, 'ASRS-1731', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-05', '', 1, 0, 1, 0, 1, 1, 2, 27, 5, 1, 'ASRS-0635', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-06', '', 1, 0, 1, 0, 1, 1, 2, 27, 6, 1, 'ASRS-1059', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-07', '', 1, 0, 1, 0, 1, 1, 2, 27, 7, 1, 'ASRS-1837', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-08', '', 1, 0, 1, 0, 1, 1, 2, 27, 8, 1, 'ASRS-0104', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-09', '', 1, 0, 1, 0, 1, 1, 2, 27, 9, 1, 'ASRS-0098', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-10', '', 1, 0, 1, 0, 1, 1, 2, 27, 10, 1, 'ASRS-0123', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-11', '', 1, 0, 1, 0, 1, 1, 2, 27, 11, 1, 'ASRS-0166', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-27-12', '', 1, 1, 0, 0, 1, 1, 2, 27, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-01', '', 1, 0, 1, 0, 1, 1, 2, 28, 1, 1, 'ASRS-1874', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-02', '', 1, 0, 1, 0, 1, 1, 2, 28, 2, 1, 'ASRS-1290', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-03', '', 1, 0, 1, 0, 1, 1, 2, 28, 3, 1, 'ASRS-0682', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-04', '', 1, 0, 1, 0, 1, 1, 2, 28, 4, 1, 'ASRS-0615', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-05', '', 1, 0, 1, 0, 1, 1, 2, 28, 5, 1, 'ASRS-0083', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-06', '', 1, 0, 1, 0, 1, 1, 2, 28, 6, 1, 'ASRS-0158', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-07', '', 1, 0, 1, 0, 1, 1, 2, 28, 7, 1, 'ASRS-0102', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-08', '', 1, 0, 1, 0, 1, 1, 2, 28, 8, 1, 'ASRS-1635', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-09', '', 1, 0, 1, 0, 1, 1, 2, 28, 9, 1, 'ASRS-1725', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-10', '', 1, 0, 1, 0, 1, 1, 2, 28, 10, 1, 'ASRS-0143', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-11', '', 1, 0, 1, 0, 1, 1, 2, 28, 11, 1, 'ASRS-0185', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-28-12', '', 1, 1, 0, 0, 1, 1, 2, 28, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-01', '', 1, 0, 1, 0, 1, 1, 2, 29, 1, 1, 'ASRS-0264', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-02', '', 1, 0, 1, 0, 1, 1, 2, 29, 2, 1, 'ASRS-0167', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-03', '', 1, 0, 1, 0, 1, 1, 2, 29, 3, 1, 'ASRS-0045', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-04', '', 1, 0, 1, 0, 1, 1, 2, 29, 4, 1, 'ASRS-0552', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-05', '', 1, 0, 1, 0, 1, 1, 2, 29, 5, 1, 'ASRS-1040', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-06', '', 1, 0, 1, 0, 1, 1, 2, 29, 6, 1, 'ASRS-0100', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-07', '', 1, 0, 1, 0, 1, 1, 2, 29, 7, 1, 'ASRS-0568', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-08', '', 1, 0, 1, 0, 1, 1, 2, 29, 8, 1, 'ASRS-0129', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-09', '', 1, 0, 1, 0, 1, 1, 2, 29, 9, 1, 'ASRS-1046', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-10', '', 1, 0, 1, 0, 1, 1, 2, 29, 10, 1, 'ASRS-0182', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-11', '', 1, 0, 1, 0, 1, 1, 2, 29, 11, 1, 'ASRS-0195', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-29-12', '', 1, 1, 0, 0, 1, 1, 2, 29, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-01', '', 1, 0, 1, 0, 1, 1, 2, 30, 1, 1, 'ASRS-1818', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-02', '', 1, 0, 1, 0, 1, 1, 2, 30, 2, 1, 'ASRS-1137', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-03', '', 1, 0, 1, 0, 1, 1, 2, 30, 3, 1, 'ASRS-0546', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-04', '', 1, 0, 1, 0, 1, 1, 2, 30, 4, 1, 'ASRS-0010', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-05', '', 1, 0, 1, 0, 1, 1, 2, 30, 5, 1, 'ASRS-1519', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-06', '', 1, 0, 1, 0, 1, 1, 2, 30, 6, 1, 'ASRS-1625', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-07', '', 1, 0, 1, 0, 1, 1, 2, 30, 7, 1, 'ASRS-1580', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-08', '', 1, 0, 1, 0, 1, 1, 2, 30, 8, 1, 'ASRS-1095', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-09', '', 1, 0, 1, 0, 1, 1, 2, 30, 9, 1, 'ASRS-1020', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-10', '', 1, 0, 1, 0, 1, 1, 2, 30, 10, 1, 'ASRS-0199', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-11', '', 1, 0, 1, 0, 1, 1, 2, 30, 11, 1, 'ASRS-0278', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-30-12', '', 1, 1, 0, 0, 1, 1, 2, 30, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-01', '', 1, 0, 1, 0, 1, 1, 2, 31, 1, 1, 'ASRS-0053', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-02', '', 1, 0, 1, 0, 1, 1, 2, 31, 2, 1, 'ASRS-0661', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-03', '', 1, 0, 1, 0, 1, 1, 2, 31, 3, 1, 'ASRS-1049', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-04', '', 1, 0, 1, 0, 1, 1, 2, 31, 4, 1, 'ASRS-1859', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-05', '', 1, 0, 1, 0, 1, 1, 2, 31, 5, 1, 'ASRS-1560', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-06', '', 1, 0, 1, 0, 1, 1, 2, 31, 6, 1, 'ASRS-0091', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-07', '', 1, 0, 1, 0, 1, 1, 2, 31, 7, 1, 'ASRS-0899', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-08', '', 1, 0, 1, 0, 1, 1, 2, 31, 8, 1, 'ASRS-1013', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-09', '', 1, 0, 1, 0, 1, 1, 2, 31, 9, 1, 'ASRS-1767', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-10', '', 1, 0, 1, 0, 1, 1, 2, 31, 10, 1, 'ASRS-1154', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-11', '', 1, 0, 1, 0, 1, 1, 2, 31, 11, 1, 'ASRS-0216', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-31-12', '', 1, 1, 0, 0, 1, 1, 2, 31, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-01', '', 1, 0, 1, 0, 1, 1, 2, 32, 1, 1, 'ASRS-0107', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-02', '', 1, 0, 1, 0, 1, 1, 2, 32, 2, 1, 'ASRS-1536', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-03', '', 1, 0, 1, 0, 1, 1, 2, 32, 3, 1, 'ASRS-0108', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-04', '', 1, 0, 1, 0, 1, 1, 2, 32, 4, 1, 'ASRS-0689', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-05', '', 1, 0, 1, 0, 1, 1, 2, 32, 5, 1, 'ASRS-1561', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-06', '', 1, 0, 1, 0, 1, 1, 2, 32, 6, 1, 'ASRS-1686', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-07', '', 1, 0, 1, 0, 1, 1, 2, 32, 7, 1, 'ASRS-0508', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-08', '', 1, 0, 1, 0, 1, 1, 2, 32, 8, 1, 'ASRS-0203', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-09', '', 1, 0, 1, 0, 1, 1, 2, 32, 9, 1, 'ASRS-1245', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-10', '', 1, 0, 1, 0, 1, 1, 2, 32, 10, 1, 'ASRS-0229', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-11', '', 1, 0, 1, 0, 1, 1, 2, 32, 11, 1, 'ASRS-0318', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-32-12', '', 1, 1, 0, 0, 1, 1, 2, 32, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-01', '', 1, 0, 1, 0, 1, 1, 2, 33, 1, 1, 'ASRS-0530', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-02', '', 1, 0, 1, 0, 1, 1, 2, 33, 2, 1, 'ASRS-1096', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-03', '', 1, 0, 1, 0, 1, 1, 2, 33, 3, 1, 'ASRS-0092', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-04', '', 1, 0, 1, 0, 1, 1, 2, 33, 4, 1, 'ASRS-0321', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-05', '', 1, 0, 1, 0, 1, 1, 2, 33, 5, 1, 'ASRS-1086', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-06', '', 1, 0, 1, 0, 1, 1, 2, 33, 6, 1, 'ASRS-1512', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-07', '', 1, 0, 1, 0, 1, 1, 2, 33, 7, 1, 'ASRS-1169', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-08', '', 1, 0, 1, 0, 1, 1, 2, 33, 8, 1, 'ASRS-1374', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-09', '', 1, 0, 1, 0, 1, 1, 2, 33, 9, 1, 'ASRS-0227', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-10', '', 1, 0, 1, 0, 1, 1, 2, 33, 10, 1, 'ASRS-1034', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-11', '', 1, 0, 1, 0, 1, 1, 2, 33, 11, 1, 'ASRS-0376', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-33-12', '', 1, 1, 0, 0, 1, 1, 2, 33, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-01', '', 1, 0, 1, 0, 1, 1, 2, 34, 1, 1, 'ASRS-0105', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-02', '', 1, 0, 1, 0, 1, 1, 2, 34, 2, 1, 'ASRS-0121', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-03', '', 1, 0, 1, 0, 1, 1, 2, 34, 3, 1, 'ASRS-0153', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-04', '', 1, 0, 1, 0, 1, 1, 2, 34, 4, 1, 'ASRS-0320', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-05', '', 1, 0, 1, 0, 1, 1, 2, 34, 5, 1, 'ASRS-0190', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-06', '', 1, 0, 1, 0, 1, 1, 2, 34, 6, 1, 'ASRS-0200', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-07', '', 1, 0, 1, 0, 1, 1, 2, 34, 7, 1, 'ASRS-1722', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-08', '', 1, 0, 1, 0, 1, 1, 2, 34, 8, 1, 'ASRS-0225', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-09', '', 1, 0, 1, 0, 1, 1, 2, 34, 9, 1, 'ASRS-0244', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-10', '', 1, 0, 1, 0, 1, 1, 2, 34, 10, 1, 'ASRS-0344', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-11', '', 1, 0, 1, 0, 1, 1, 2, 34, 11, 1, 'ASRS-0299', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-34-12', '', 1, 1, 0, 0, 1, 1, 2, 34, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-01', '', 1, 0, 1, 0, 1, 1, 2, 35, 1, 1, 'ASRS-0081', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-02', '', 1, 0, 1, 0, 1, 1, 2, 35, 2, 1, 'ASRS-0137', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-03', '', 1, 0, 1, 0, 1, 1, 2, 35, 3, 1, 'ASRS-1666', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-04', '', 1, 0, 1, 0, 1, 1, 2, 35, 4, 1, 'ASRS-0191', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-05', '', 1, 0, 1, 0, 1, 1, 2, 35, 5, 1, 'ASRS-1158', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-06', '', 1, 0, 1, 0, 1, 1, 2, 35, 6, 1, 'ASRS-1799', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-07', '', 1, 0, 1, 0, 1, 1, 2, 35, 7, 1, 'ASRS-0223', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-08', '', 1, 0, 1, 0, 1, 1, 2, 35, 8, 1, 'ASRS-0352', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-09', '', 1, 0, 1, 0, 1, 1, 2, 35, 9, 1, 'ASRS-0525', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-10', '', 1, 0, 1, 0, 1, 1, 2, 35, 10, 1, 'ASRS-0250', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-11', '', 1, 0, 1, 0, 1, 1, 2, 35, 11, 1, 'ASRS-1261', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-35-12', '', 1, 1, 0, 0, 1, 1, 2, 35, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-01', '', 1, 0, 1, 0, 1, 1, 2, 36, 1, 1, 'ASRS-0136', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-02', '', 1, 0, 1, 0, 1, 1, 2, 36, 2, 1, 'ASRS-0179', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-03', '', 1, 0, 1, 0, 1, 1, 2, 36, 3, 1, 'ASRS-0516', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-04', '', 1, 0, 1, 0, 1, 1, 2, 36, 4, 1, 'ASRS-0204', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-05', '', 1, 0, 1, 0, 1, 1, 2, 36, 5, 1, 'ASRS-0243', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-06', '', 1, 0, 1, 0, 1, 1, 2, 36, 6, 1, 'ASRS-0296', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-07', '', 1, 0, 1, 0, 1, 1, 2, 36, 7, 1, 'ASRS-0369', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-08', '', 1, 0, 1, 0, 1, 1, 2, 36, 8, 1, 'ASRS-0334', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-09', '', 1, 0, 1, 0, 1, 1, 2, 36, 9, 1, 'ASRS-1221', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-10', '', 1, 0, 1, 0, 1, 1, 2, 36, 10, 1, 'ASRS-0302', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-11', '', 1, 0, 1, 0, 1, 1, 2, 36, 11, 1, 'ASRS-0501', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-36-12', '', 1, 1, 0, 0, 1, 1, 2, 36, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-01', '', 1, 0, 1, 0, 1, 1, 2, 37, 1, 1, 'ASRS-0541', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-02', '', 1, 0, 1, 0, 1, 1, 2, 37, 2, 1, 'ASRS-0512', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-03', '', 1, 0, 1, 0, 1, 1, 2, 37, 3, 1, 'ASRS-1025', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-04', '', 1, 0, 1, 0, 1, 1, 2, 37, 4, 1, 'ASRS-0888', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-05', '', 1, 0, 1, 0, 1, 1, 2, 37, 5, 1, 'ASRS-0293', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-06', '', 1, 0, 1, 0, 1, 1, 2, 37, 6, 1, 'ASRS-0367', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-07', '', 1, 0, 1, 0, 1, 1, 2, 37, 7, 1, 'ASRS-1443', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-08', '', 1, 0, 1, 0, 1, 1, 2, 37, 8, 1, 'ASRS-0519', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-09', '', 1, 0, 1, 0, 1, 1, 2, 37, 9, 1, 'ASRS-0327', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-10', '', 1, 0, 0, 0, 1, 1, 2, 37, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-11', '', 1, 0, 0, 0, 1, 1, 2, 37, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-37-12', '', 1, 1, 0, 0, 1, 1, 2, 37, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-01', '', 1, 0, 1, 0, 1, 1, 2, 38, 1, 1, 'ASRS-1362', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-02', '', 1, 0, 1, 0, 1, 1, 2, 38, 2, 1, 'ASRS-1907', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-03', '', 1, 0, 1, 0, 1, 1, 2, 38, 3, 1, 'ASRS-0242', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-04', '', 1, 0, 1, 0, 1, 1, 2, 38, 4, 1, 'ASRS-0292', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-05', '', 1, 0, 1, 0, 1, 1, 2, 38, 5, 1, 'ASRS-0365', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-06', '', 1, 0, 1, 0, 1, 1, 2, 38, 6, 1, 'ASRS-1713', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-07', '', 1, 0, 1, 0, 1, 1, 2, 38, 7, 1, 'ASRS-1254', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-08', '', 1, 0, 1, 0, 1, 1, 2, 38, 8, 1, 'ASRS-1257', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-09', '', 1, 0, 0, 0, 1, 1, 2, 38, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-10', '', 1, 0, 0, 0, 1, 1, 2, 38, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-11', '', 1, 0, 0, 0, 1, 1, 2, 38, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-38-12', '', 1, 1, 0, 0, 1, 1, 2, 38, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-01', '', 1, 0, 1, 0, 1, 1, 2, 39, 1, 1, 'ASRS-0328', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-02', '', 1, 0, 1, 0, 1, 1, 2, 39, 2, 1, 'ASRS-0261', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-03', '', 1, 0, 1, 0, 1, 1, 2, 39, 3, 1, 'ASRS-0277', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-04', '', 1, 0, 1, 0, 1, 1, 2, 39, 4, 1, 'ASRS-0361', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-05', '', 1, 0, 1, 0, 1, 1, 2, 39, 5, 1, 'ASRS-0330', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-06', '', 1, 0, 1, 0, 1, 1, 2, 39, 6, 1, 'ASRS-1258', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-07', '', 1, 0, 1, 0, 1, 1, 2, 39, 7, 1, 'ASRS-1530', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-08', '', 1, 0, 0, 0, 1, 1, 2, 39, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-09', '', 1, 0, 0, 0, 1, 1, 2, 39, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-10', '', 1, 0, 0, 0, 1, 1, 2, 39, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-11', '', 1, 0, 0, 0, 1, 1, 2, 39, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-39-12', '', 1, 1, 0, 0, 1, 1, 2, 39, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-01', '', 1, 0, 1, 0, 1, 1, 2, 40, 1, 1, 'ASRS-0240', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-02', '', 1, 0, 1, 0, 1, 1, 2, 40, 2, 1, 'ASRS-0245', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-03', '', 1, 0, 1, 0, 1, 1, 2, 40, 3, 1, 'ASRS-0267', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-04', '', 1, 0, 1, 0, 1, 1, 2, 40, 4, 1, 'ASRS-0317', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-05', '', 1, 0, 1, 0, 1, 1, 2, 40, 5, 1, 'ASRS-1667', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-06', '', 1, 0, 1, 0, 1, 1, 2, 40, 6, 1, 'ASRS-0524', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-07', '', 1, 0, 0, 0, 1, 1, 2, 40, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-08', '', 1, 0, 0, 0, 1, 1, 2, 40, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-09', '', 1, 0, 0, 0, 1, 1, 2, 40, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-10', '', 1, 0, 0, 0, 1, 1, 2, 40, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-11', '', 1, 0, 0, 0, 1, 1, 2, 40, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-40-12', '', 1, 1, 0, 0, 1, 1, 2, 40, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-01', '', 1, 0, 1, 0, 1, 1, 2, 41, 1, 1, 'ASRS-1526', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-02', '', 1, 0, 1, 0, 1, 1, 2, 41, 2, 1, 'ASRS-0268', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-03', '', 1, 0, 1, 0, 1, 1, 2, 41, 3, 1, 'ASRS-0385', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-04', '', 1, 0, 1, 0, 1, 1, 2, 41, 4, 1, 'ASRS-1222', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-05', '', 1, 0, 1, 0, 1, 1, 2, 41, 5, 1, 'ASRS-1904', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-06', '', 1, 0, 0, 0, 1, 1, 2, 41, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-07', '', 1, 0, 0, 0, 1, 1, 2, 41, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-08', '', 1, 0, 0, 0, 1, 1, 2, 41, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-09', '', 1, 0, 0, 0, 1, 1, 2, 41, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-10', '', 1, 0, 0, 0, 1, 1, 2, 41, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-11', '', 1, 0, 0, 0, 1, 1, 2, 41, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-41-12', '', 1, 1, 0, 0, 1, 1, 2, 41, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-01', '', 1, 0, 1, 0, 1, 1, 2, 42, 1, 1, 'ASRS-0265', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-02', '', 1, 0, 1, 0, 1, 1, 2, 42, 2, 1, 'ASRS-0333', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-03', '', 1, 0, 1, 0, 1, 1, 2, 42, 3, 1, 'ASRS-1220', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-04', '', 1, 0, 1, 0, 1, 1, 2, 42, 4, 1, 'ASRS-0970', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-05', '', 1, 0, 0, 0, 1, 1, 2, 42, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-06', '', 1, 0, 0, 0, 1, 1, 2, 42, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-07', '', 1, 0, 0, 0, 1, 1, 2, 42, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-08', '', 1, 0, 0, 0, 1, 1, 2, 42, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-09', '', 1, 0, 0, 0, 1, 1, 2, 42, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-10', '', 1, 0, 0, 0, 1, 1, 2, 42, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-11', '', 1, 0, 0, 0, 1, 1, 2, 42, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A02-42-12', '', 1, 1, 0, 0, 1, 1, 2, 42, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-01', '', 1, 0, 1, 0, 2, 2, 3, 1, 1, 1, 'ASRS-1548', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-02', '', 1, 0, 1, 0, 2, 2, 3, 1, 2, 1, 'ASRS-1171', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-03', '', 1, 0, 1, 0, 2, 2, 3, 1, 3, 1, 'ASRS-0732', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-04', '', 1, 0, 1, 0, 2, 2, 3, 1, 4, 1, 'ASRS-1387', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-05', '', 1, 0, 1, 0, 2, 2, 3, 1, 5, 1, 'ASRS-0086', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-06', '', 1, 0, 1, 0, 2, 2, 3, 1, 6, 1, 'ASRS-1242', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-07', '', 1, 0, 1, 0, 2, 2, 3, 1, 7, 1, 'ASRS-0942', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-08', '', 1, 0, 1, 0, 2, 2, 3, 1, 8, 1, 'ASRS-0198', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-09', '', 1, 0, 1, 0, 2, 2, 3, 1, 9, 1, 'ASRS-1727', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-10', '', 1, 0, 1, 0, 2, 2, 3, 1, 10, 1, 'ASRS-1830', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-11', '', 1, 0, 1, 0, 2, 2, 3, 1, 11, 1, 'ASRS-1341', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-01-12', '', 1, 1, 0, 0, 2, 2, 3, 1, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-01', '', 1, 0, 1, 0, 2, 2, 3, 2, 1, 1, 'ASRS-1895', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-02', '', 1, 0, 1, 0, 2, 2, 3, 2, 2, 1, 'ASRS-0993', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-03', '', 1, 0, 1, 0, 2, 2, 3, 2, 3, 1, 'ASRS-0907', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-04', '', 1, 0, 1, 0, 2, 2, 3, 2, 4, 1, 'ASRS-0884', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-05', '', 1, 0, 1, 0, 2, 2, 3, 2, 5, 1, 'ASRS-1572', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-06', '', 1, 0, 1, 0, 2, 2, 3, 2, 6, 1, 'ASRS-1784', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-07', '', 1, 0, 1, 0, 2, 2, 3, 2, 7, 1, 'ASRS-1804', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-08', '', 1, 0, 1, 0, 2, 2, 3, 2, 8, 1, 'ASRS-1117', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-09', '', 1, 0, 1, 0, 2, 2, 3, 2, 9, 1, 'ASRS-0897', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-10', '', 1, 0, 1, 0, 2, 2, 3, 2, 10, 1, 'ASRS-1270', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-11', '', 1, 0, 1, 0, 2, 2, 3, 2, 11, 1, 'ASRS-1579', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-02-12', '', 1, 1, 0, 0, 2, 2, 3, 2, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-01', '', 1, 0, 1, 0, 2, 2, 3, 3, 1, 1, 'ASRS-1251', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-02', '', 1, 0, 1, 0, 2, 2, 3, 3, 2, 1, 'ASRS-0906', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-03', '', 1, 0, 1, 0, 2, 2, 3, 3, 3, 1, 'ASRS-0170', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-04', '', 1, 0, 1, 0, 2, 2, 3, 3, 4, 1, 'ASRS-0919', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-05', '', 1, 0, 1, 0, 2, 2, 3, 3, 5, 1, 'ASRS-0912', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-06', '', 1, 0, 1, 0, 2, 2, 3, 3, 6, 1, 'ASRS-0931', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-07', '', 1, 0, 1, 0, 2, 2, 3, 3, 7, 1, 'ASRS-0916', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-08', '', 1, 0, 1, 0, 2, 2, 3, 3, 8, 1, 'ASRS-0968', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-09', '', 1, 0, 1, 0, 2, 2, 3, 3, 9, 1, 'ASRS-0910', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-10', '', 1, 0, 1, 0, 2, 2, 3, 3, 10, 1, 'ASRS-1559', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-11', '', 1, 0, 1, 0, 2, 2, 3, 3, 11, 1, 'ASRS-0980', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-03-12', '', 1, 1, 1, 0, 2, 2, 3, 3, 12, 1, 'ASRS-1416', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-01', '', 1, 0, 1, 0, 2, 2, 3, 4, 1, 1, 'ASRS-0937', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-02', '', 1, 0, 1, 0, 2, 2, 3, 4, 2, 1, 'ASRS-1448', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-03', '', 1, 0, 1, 0, 2, 2, 3, 4, 3, 1, 'ASRS-0976', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-04', '', 1, 0, 1, 0, 2, 2, 3, 4, 4, 1, 'ASRS-1267', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-05', '', 1, 0, 1, 0, 2, 2, 3, 4, 5, 1, 'ASRS-0961', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-06', '', 1, 0, 1, 0, 2, 2, 3, 4, 6, 1, 'ASRS-0998', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-07', '', 1, 0, 1, 0, 2, 2, 3, 4, 7, 1, 'ASRS-0929', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-08', '', 1, 0, 1, 0, 2, 2, 3, 4, 8, 1, 'ASRS-1094', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-09', '', 1, 0, 1, 0, 2, 2, 3, 4, 9, 1, 'ASRS-0550', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-10', '', 1, 0, 1, 0, 2, 2, 3, 4, 10, 1, 'ASRS-1212', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-11', '', 1, 0, 1, 0, 2, 2, 3, 4, 11, 1, 'ASRS-1172', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-04-12', '', 1, 1, 1, 0, 2, 2, 3, 4, 12, 1, 'ASRS-0778', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-01', '', 1, 0, 1, 0, 2, 2, 3, 5, 1, 1, 'ASRS-0932', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-02', '', 1, 0, 1, 0, 2, 2, 3, 5, 2, 1, 'ASRS-1445', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-03', '', 1, 0, 1, 0, 2, 2, 3, 5, 3, 1, 'ASRS-1240', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-04', '', 1, 0, 1, 0, 2, 2, 3, 5, 4, 1, 'ASRS-1615', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-05', '', 1, 0, 1, 0, 2, 2, 3, 5, 5, 1, 'ASRS-1182', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-06', '', 1, 0, 1, 0, 2, 2, 3, 5, 6, 1, 'ASRS-1208', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-07', '', 1, 0, 1, 0, 2, 2, 3, 5, 7, 1, 'ASRS-1231', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-08', '', 1, 0, 1, 0, 2, 2, 3, 5, 8, 1, 'ASRS-1201', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-09', '', 1, 0, 1, 0, 2, 2, 3, 5, 9, 1, 'ASRS-1215', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-10', '', 1, 0, 1, 0, 2, 2, 3, 5, 10, 1, 'ASRS-1229', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-11', '', 1, 0, 1, 0, 2, 2, 3, 5, 11, 1, 'ASRS-0886', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-05-12', '', 1, 1, 1, 0, 2, 2, 3, 5, 12, 1, 'ASRS-1432', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-01', '', 1, 0, 1, 0, 2, 2, 3, 6, 1, 1, 'ASRS-1275', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-02', '', 1, 0, 1, 0, 2, 2, 3, 6, 2, 1, 'ASRS-1452', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-03', '', 1, 0, 1, 0, 2, 2, 3, 6, 3, 1, 'ASRS-0982', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-04', '', 1, 0, 1, 0, 2, 2, 3, 6, 4, 1, 'ASRS-1338', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-05', '', 1, 0, 1, 0, 2, 2, 3, 6, 5, 1, 'ASRS-1330', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-06', '', 1, 0, 1, 0, 2, 2, 3, 6, 6, 1, 'ASRS-1348', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-07', '', 1, 0, 1, 0, 2, 2, 3, 6, 7, 1, 'ASRS-1862', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-08', '', 1, 0, 1, 0, 2, 2, 3, 6, 8, 1, 'ASRS-0044', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-09', '', 1, 0, 1, 0, 2, 2, 3, 6, 9, 1, 'ASRS-1417', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-10', '', 1, 0, 1, 0, 2, 2, 3, 6, 10, 1, 'ASRS-0760', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-11', '', 1, 0, 1, 0, 2, 2, 3, 6, 11, 1, 'ASRS-0823', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-06-12', '', 1, 1, 1, 0, 2, 2, 3, 6, 12, 1, 'ASRS-0850', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-01', '', 1, 0, 1, 0, 2, 2, 3, 7, 1, 1, 'ASRS-1089', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-02', '', 1, 0, 1, 0, 2, 2, 3, 7, 2, 1, 'ASRS-1305', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-03', '', 1, 0, 1, 0, 2, 2, 3, 7, 3, 1, 'ASRS-1322', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-04', '', 1, 0, 1, 0, 2, 2, 3, 7, 4, 1, 'ASRS-1317', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-05', '', 1, 0, 1, 0, 2, 2, 3, 7, 5, 1, 'ASRS-0676', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-06', '', 1, 0, 1, 0, 2, 2, 3, 7, 6, 1, 'ASRS-1003', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-07', '', 1, 0, 1, 0, 2, 2, 3, 7, 7, 1, 'ASRS-1265', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-08', '', 1, 0, 1, 0, 2, 2, 3, 7, 8, 1, 'ASRS-1404', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-09', '', 1, 0, 1, 0, 2, 2, 3, 7, 9, 1, 'ASRS-1437', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-10', '', 1, 0, 1, 0, 2, 2, 3, 7, 10, 1, 'ASRS-0812', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-11', '', 1, 0, 1, 0, 2, 2, 3, 7, 11, 1, 'ASRS-0856', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-07-12', '', 1, 1, 1, 0, 2, 2, 3, 7, 12, 1, 'ASRS-1460', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-01', '', 1, 0, 1, 0, 2, 2, 3, 8, 1, 1, 'ASRS-1298', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-02', '', 1, 0, 1, 0, 2, 2, 3, 8, 2, 1, 'ASRS-0630', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-03', '', 1, 0, 1, 0, 2, 2, 3, 8, 3, 1, 'ASRS-1326', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-04', '', 1, 0, 1, 0, 2, 2, 3, 8, 4, 1, 'ASRS-1353', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-05', '', 1, 0, 1, 0, 2, 2, 3, 8, 5, 1, 'ASRS-0032', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-06', '', 1, 0, 1, 0, 2, 2, 3, 8, 6, 1, 'ASRS-1019', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-07', '', 1, 0, 1, 0, 2, 2, 3, 8, 7, 1, 'ASRS-1423', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-08', '', 1, 0, 1, 0, 2, 2, 3, 8, 8, 1, 'ASRS-0759', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-09', '', 1, 0, 1, 0, 2, 2, 3, 8, 9, 1, 'ASRS-0819', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-10', '', 1, 0, 1, 0, 2, 2, 3, 8, 10, 1, 'ASRS-0862', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-11', '', 1, 0, 1, 0, 2, 2, 3, 8, 11, 1, 'ASRS-1337', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-08-12', '', 1, 1, 0, 0, 2, 2, 3, 8, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-01', '', 1, 0, 1, 0, 2, 2, 3, 9, 1, 1, 'ASRS-1280', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-02', '', 1, 0, 1, 0, 2, 2, 3, 9, 2, 1, 'ASRS-1289', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-03', '', 1, 0, 1, 0, 2, 2, 3, 9, 3, 1, 'ASRS-1327', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-04', '', 1, 0, 1, 0, 2, 2, 3, 9, 4, 1, 'ASRS-0645', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-05', '', 1, 0, 1, 0, 2, 2, 3, 9, 5, 1, 'ASRS-1642', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-06', '', 1, 0, 1, 0, 2, 2, 3, 9, 6, 1, 'ASRS-1407', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-07', '', 1, 0, 1, 0, 2, 2, 3, 9, 7, 1, 'ASRS-0756', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-08', '', 1, 0, 1, 0, 2, 2, 3, 9, 8, 1, 'ASRS-0748', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-09', '', 1, 0, 1, 0, 2, 2, 3, 9, 9, 1, 'ASRS-0854', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-10', '', 1, 0, 1, 0, 2, 2, 3, 9, 10, 1, 'ASRS-1306', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-11', '', 1, 0, 1, 0, 2, 2, 3, 9, 11, 1, 'ASRS-1505', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-09-12', '', 1, 1, 0, 0, 2, 2, 3, 9, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-01', '', 1, 0, 1, 0, 2, 2, 3, 10, 1, 1, 'ASRS-1325', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-02', '', 1, 0, 1, 0, 2, 2, 3, 10, 2, 1, 'ASRS-0656', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-03', '', 1, 0, 1, 0, 2, 2, 3, 10, 3, 1, 'ASRS-1260', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-04', '', 1, 0, 1, 0, 2, 2, 3, 10, 4, 1, 'ASRS-0664', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-05', '', 1, 0, 1, 0, 2, 2, 3, 10, 5, 1, 'ASRS-1396', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-06', '', 1, 0, 1, 0, 2, 2, 3, 10, 6, 1, 'ASRS-0758', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-07', '', 1, 0, 1, 0, 2, 2, 3, 10, 7, 1, 'ASRS-0832', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-08', '', 1, 0, 1, 0, 2, 2, 3, 10, 8, 1, 'ASRS-0860', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-09', '', 1, 0, 1, 0, 2, 2, 3, 10, 9, 1, 'ASRS-1394', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-10', '', 1, 0, 1, 0, 2, 2, 3, 10, 10, 1, 'ASRS-1494', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-11', '', 1, 0, 1, 0, 2, 2, 3, 10, 11, 1, 'ASRS-1698', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-10-12', '', 1, 1, 0, 0, 2, 2, 3, 10, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-01', '', 1, 0, 1, 0, 2, 2, 3, 11, 1, 1, 'ASRS-1693', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-02', '', 1, 0, 1, 0, 2, 2, 3, 11, 2, 1, 'ASRS-1367', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-03', '', 1, 0, 1, 0, 2, 2, 3, 11, 3, 1, 'ASRS-0504', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-04', '', 1, 0, 1, 0, 2, 2, 3, 11, 4, 1, 'ASRS-1398', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-05', '', 1, 0, 1, 0, 2, 2, 3, 11, 5, 1, 'ASRS-0834', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-06', '', 1, 0, 1, 0, 2, 2, 3, 11, 6, 1, 'ASRS-1433', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-07', '', 1, 0, 1, 0, 2, 2, 3, 11, 7, 1, 'ASRS-0865', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-08', '', 1, 0, 1, 0, 2, 2, 3, 11, 8, 1, 'ASRS-1309', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-09', '', 1, 0, 1, 0, 2, 2, 3, 11, 9, 1, 'ASRS-1492', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-10', '', 1, 0, 1, 0, 2, 2, 3, 11, 10, 1, 'ASRS-1542', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-11', '', 1, 0, 1, 0, 2, 2, 3, 11, 11, 1, 'ASRS-1585', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-11-12', '', 1, 1, 0, 0, 2, 2, 3, 11, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-01', '', 1, 0, 1, 0, 2, 2, 3, 12, 1, 1, 'ASRS-1252', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-02', '', 1, 0, 1, 0, 2, 2, 3, 12, 2, 1, 'ASRS-1156', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-03', '', 1, 0, 1, 0, 2, 2, 3, 12, 3, 1, 'ASRS-0779', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-04', '', 1, 0, 1, 0, 2, 2, 3, 12, 4, 1, 'ASRS-0821', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-05', '', 1, 0, 1, 0, 2, 2, 3, 12, 5, 1, 'ASRS-0750', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-06', '', 1, 0, 1, 0, 2, 2, 3, 12, 6, 1, 'ASRS-0848', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-07', '', 1, 0, 1, 0, 2, 2, 3, 12, 7, 1, 'ASRS-1342', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-08', '', 1, 0, 1, 0, 2, 2, 3, 12, 8, 1, 'ASRS-1491', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-09', '', 1, 0, 1, 0, 2, 2, 3, 12, 9, 1, 'ASRS-0540', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-10', '', 1, 0, 1, 0, 2, 2, 3, 12, 10, 1, 'ASRS-1764', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-11', '', 1, 0, 1, 0, 2, 2, 3, 12, 11, 1, 'ASRS-1700', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-12-12', '', 1, 1, 0, 0, 2, 2, 3, 12, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-01', '', 1, 0, 1, 0, 2, 2, 3, 13, 1, 1, 'ASRS-1622', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-02', '', 1, 0, 1, 0, 2, 2, 3, 13, 2, 1, 'ASRS-0776', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-03', '', 1, 0, 1, 0, 2, 2, 3, 13, 3, 1, 'ASRS-0816', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-04', '', 1, 0, 1, 0, 2, 2, 3, 13, 4, 1, 'ASRS-0752', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-05', '', 1, 0, 1, 0, 2, 2, 3, 13, 5, 1, 'ASRS-0851', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-06', '', 1, 0, 1, 0, 2, 2, 3, 13, 6, 1, 'ASRS-1315', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-07', '', 1, 0, 1, 0, 2, 2, 3, 13, 7, 1, 'ASRS-1503', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-08', '', 1, 0, 1, 0, 2, 2, 3, 13, 8, 1, 'ASRS-1726', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-09', '', 1, 0, 1, 0, 2, 2, 3, 13, 9, 1, 'ASRS-0003', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-10', '', 1, 0, 1, 0, 2, 2, 3, 13, 10, 1, 'ASRS-1130', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-11', '', 1, 0, 1, 0, 2, 2, 3, 13, 11, 1, 'ASRS-1591', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-13-12', '', 1, 1, 0, 0, 2, 2, 3, 13, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-01', '', 1, 0, 1, 0, 2, 2, 3, 14, 1, 1, 'ASRS-0766', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-02', '', 1, 0, 1, 0, 2, 2, 3, 14, 2, 1, 'ASRS-0829', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-03', '', 1, 0, 1, 0, 2, 2, 3, 14, 3, 1, 'ASRS-0820', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-04', '', 1, 0, 1, 0, 2, 2, 3, 14, 4, 1, 'ASRS-0861', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-05', '', 1, 0, 1, 0, 2, 2, 3, 14, 5, 1, 'ASRS-1340', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-06', '', 1, 0, 1, 0, 2, 2, 3, 14, 6, 1, 'ASRS-1501', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-07', '', 1, 0, 1, 0, 2, 2, 3, 14, 7, 1, 'ASRS-1889', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-08', '', 1, 0, 1, 0, 2, 2, 3, 14, 8, 1, 'ASRS-1616', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-09', '', 1, 0, 1, 0, 2, 2, 3, 14, 9, 1, 'ASRS-1765', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-10', '', 1, 0, 1, 0, 2, 2, 3, 14, 10, 1, 'ASRS-1619', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-11', '', 1, 0, 1, 0, 2, 2, 3, 14, 11, 1, 'ASRS-1378', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-14-12', '', 1, 1, 0, 0, 2, 2, 3, 14, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-01', '', 1, 0, 1, 0, 2, 2, 3, 15, 1, 1, 'ASRS-0825', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-02', '', 1, 0, 1, 0, 2, 2, 3, 15, 2, 1, 'ASRS-0843', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-03', '', 1, 0, 1, 0, 2, 2, 3, 15, 3, 1, 'ASRS-0794', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-04', '', 1, 0, 1, 0, 2, 2, 3, 15, 4, 1, 'ASRS-1318', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-05', '', 1, 0, 1, 0, 2, 2, 3, 15, 5, 1, 'ASRS-1500', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-06', '', 1, 0, 1, 0, 2, 2, 3, 15, 6, 1, 'ASRS-1188', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-07', '', 1, 0, 1, 0, 2, 2, 3, 15, 7, 1, 'ASRS-1788', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-08', '', 1, 0, 1, 0, 2, 2, 3, 15, 8, 1, 'ASRS-1687', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-09', '', 1, 0, 1, 0, 2, 2, 3, 15, 9, 1, 'ASRS-1385', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-10', '', 1, 0, 1, 0, 2, 2, 3, 15, 10, 1, 'ASRS-1742', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-11', '', 1, 0, 1, 0, 2, 2, 3, 15, 11, 1, 'ASRS-0646', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-15-12', '', 1, 1, 0, 0, 2, 2, 3, 15, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-01', '', 1, 0, 1, 0, 2, 2, 3, 16, 1, 1, 'ASRS-0837', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-02', '', 1, 0, 1, 0, 2, 2, 3, 16, 2, 1, 'ASRS-0849', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-03', '', 1, 0, 1, 0, 2, 2, 3, 16, 3, 1, 'ASRS-1355', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-04', '', 1, 0, 1, 0, 2, 2, 3, 16, 4, 1, 'ASRS-1490', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-05', '', 1, 0, 1, 0, 2, 2, 3, 16, 5, 1, 'ASRS-0616', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-06', '', 1, 0, 1, 0, 2, 2, 3, 16, 6, 1, 'ASRS-1609', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-07', '', 1, 0, 1, 0, 2, 2, 3, 16, 7, 1, 'ASRS-1603', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-08', '', 1, 0, 1, 0, 2, 2, 3, 16, 8, 1, 'ASRS-1565', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-09', '', 1, 0, 1, 0, 2, 2, 3, 16, 9, 1, 'ASRS-1614', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-10', '', 1, 0, 1, 0, 2, 2, 3, 16, 10, 1, 'ASRS-1014', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-11', '', 1, 0, 1, 0, 2, 2, 3, 16, 11, 1, 'ASRS-0691', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-16-12', '', 1, 1, 0, 0, 2, 2, 3, 16, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-01', '', 1, 0, 1, 0, 2, 2, 3, 17, 1, 1, 'ASRS-0788', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-02', '', 1, 0, 1, 0, 2, 2, 3, 17, 2, 1, 'ASRS-1323', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-03', '', 1, 0, 1, 0, 2, 2, 3, 17, 3, 1, 'ASRS-1549', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-04', '', 1, 0, 1, 0, 2, 2, 3, 17, 4, 1, 'ASRS-1173', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-05', '', 1, 0, 1, 0, 2, 2, 3, 17, 5, 1, 'ASRS-1380', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-06', '', 1, 0, 1, 0, 2, 2, 3, 17, 6, 1, 'ASRS-1582', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-07', '', 1, 0, 1, 0, 2, 2, 3, 17, 7, 1, 'ASRS-0060', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-08', '', 1, 0, 1, 0, 2, 2, 3, 17, 8, 1, 'ASRS-1108', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-09', '', 1, 0, 1, 0, 2, 2, 3, 17, 9, 1, 'ASRS-1637', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-10', '', 1, 0, 1, 0, 2, 2, 3, 17, 10, 1, 'ASRS-0672', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-11', '', 1, 0, 1, 0, 2, 2, 3, 17, 11, 1, 'ASRS-0110', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-17-12', '', 1, 1, 0, 0, 2, 2, 3, 17, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-01', '', 1, 0, 1, 0, 2, 2, 3, 18, 1, 1, 'ASRS-0613', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-02', '', 1, 0, 1, 0, 2, 2, 3, 18, 2, 1, 'ASRS-1488', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-03', '', 1, 0, 1, 0, 2, 2, 3, 18, 3, 1, 'ASRS-1869', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-04', '', 1, 0, 1, 0, 2, 2, 3, 18, 4, 1, 'ASRS-1721', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-05', '', 1, 0, 1, 0, 2, 2, 3, 18, 5, 1, 'ASRS-1053', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-06', '', 1, 0, 1, 0, 2, 2, 3, 18, 6, 1, 'ASRS-1207', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-07', '', 1, 0, 1, 0, 2, 2, 3, 18, 7, 1, 'ASRS-1864', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-08', '', 1, 0, 1, 0, 2, 2, 3, 18, 8, 1, 'ASRS-0011', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-09', '', 1, 0, 1, 0, 2, 2, 3, 18, 9, 1, 'ASRS-0069', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-10', '', 1, 0, 1, 0, 2, 2, 3, 18, 10, 1, 'ASRS-0642', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-11', '', 1, 0, 1, 0, 2, 2, 3, 18, 11, 1, 'ASRS-1678', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-18-12', '', 1, 1, 0, 0, 2, 2, 3, 18, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-01', '', 1, 0, 1, 0, 2, 2, 3, 19, 1, 1, 'ASRS-1489', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-02', '', 1, 0, 1, 0, 2, 2, 3, 19, 2, 1, 'ASRS-1564', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-03', '', 1, 0, 1, 0, 2, 2, 3, 19, 3, 1, 'ASRS-0168', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-04', '', 1, 0, 1, 0, 2, 2, 3, 19, 4, 1, 'ASRS-1738', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-05', '', 1, 0, 1, 0, 2, 2, 3, 19, 5, 1, 'ASRS-1650', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-06', '', 1, 0, 1, 0, 2, 2, 3, 19, 6, 1, 'ASRS-0671', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-07', '', 1, 0, 1, 0, 2, 2, 3, 19, 7, 1, 'ASRS-0641', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-08', '', 1, 0, 1, 0, 2, 2, 3, 19, 8, 1, 'ASRS-1825', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-09', '', 1, 0, 1, 0, 2, 2, 3, 19, 9, 1, 'ASRS-1694', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-10', '', 1, 0, 1, 0, 2, 2, 3, 19, 10, 1, 'ASRS-1113', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-11', '', 1, 0, 1, 0, 2, 2, 3, 19, 11, 1, 'ASRS-0029', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-19-12', '', 1, 1, 0, 0, 2, 2, 3, 19, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-01', '', 1, 0, 1, 0, 2, 2, 3, 20, 1, 1, 'ASRS-1570', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-02', '', 1, 0, 1, 0, 2, 2, 3, 20, 2, 1, 'ASRS-1649', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-03', '', 1, 0, 1, 0, 2, 2, 3, 20, 3, 1, 'ASRS-1710', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-04', '', 1, 0, 1, 0, 2, 2, 3, 20, 4, 1, 'ASRS-1762', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-05', '', 1, 0, 1, 0, 2, 2, 3, 20, 5, 1, 'ASRS-1388', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-06', '', 1, 0, 1, 0, 2, 2, 3, 20, 6, 1, 'ASRS-0673', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-07', '', 1, 0, 1, 0, 2, 2, 3, 20, 7, 1, 'ASRS-0634', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-08', '', 1, 0, 1, 0, 2, 2, 3, 20, 8, 1, 'ASRS-0539', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-09', '', 1, 0, 1, 0, 2, 2, 3, 20, 9, 1, 'ASRS-1656', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-10', '', 1, 0, 1, 0, 2, 2, 3, 20, 10, 1, 'ASRS-0026', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-11', '', 1, 0, 1, 0, 2, 2, 3, 20, 11, 1, 'ASRS-0068', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-20-12', '', 1, 1, 0, 0, 2, 2, 3, 20, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-01', '', 1, 0, 1, 0, 2, 2, 3, 21, 1, 1, 'ASRS-1677', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-02', '', 1, 0, 1, 0, 2, 2, 3, 21, 2, 1, 'ASRS-1431', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-03', '', 1, 0, 1, 0, 2, 2, 3, 21, 3, 1, 'ASRS-1097', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-04', '', 1, 0, 1, 0, 2, 2, 3, 21, 4, 1, 'ASRS-1850', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-05', '', 1, 0, 1, 0, 2, 2, 3, 21, 5, 1, 'ASRS-0677', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-06', '', 1, 0, 1, 0, 2, 2, 3, 21, 6, 1, 'ASRS-1797', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-07', '', 1, 0, 1, 0, 2, 2, 3, 21, 7, 1, 'ASRS-1821', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-08', '', 1, 0, 1, 0, 2, 2, 3, 21, 8, 1, 'ASRS-1135', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-09', '', 1, 0, 1, 0, 2, 2, 3, 21, 9, 1, 'ASRS-1790', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-10', '', 1, 0, 1, 0, 2, 2, 3, 21, 10, 1, 'ASRS-0027', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-11', '', 1, 0, 1, 0, 2, 2, 3, 21, 11, 1, 'ASRS-0076', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-21-12', '', 1, 1, 0, 0, 2, 2, 3, 21, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-01', '', 1, 0, 1, 0, 2, 2, 3, 22, 1, 1, 'ASRS-1598', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-02', '', 1, 0, 1, 0, 2, 2, 3, 22, 2, 1, 'ASRS-0655', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-03', '', 1, 0, 1, 0, 2, 2, 3, 22, 3, 1, 'ASRS-1295', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-04', '', 1, 0, 1, 0, 2, 2, 3, 22, 4, 1, 'ASRS-0013', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-05', '', 1, 0, 1, 0, 2, 2, 3, 22, 5, 1, 'ASRS-1829', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-06', '', 1, 0, 1, 0, 2, 2, 3, 22, 6, 1, 'ASRS-1748', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-07', '', 1, 0, 1, 0, 2, 2, 3, 22, 7, 1, 'ASRS-1308', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-08', '', 1, 0, 1, 0, 2, 2, 3, 22, 8, 1, 'ASRS-1101', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-09', '', 1, 0, 1, 0, 2, 2, 3, 22, 9, 1, 'ASRS-0078', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-10', '', 1, 0, 1, 0, 2, 2, 3, 22, 10, 1, 'ASRS-1543', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-11', '', 1, 0, 1, 0, 2, 2, 3, 22, 11, 1, 'ASRS-1037', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-22-12', '', 1, 1, 0, 0, 2, 2, 3, 22, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-01', '', 1, 0, 1, 0, 2, 2, 3, 23, 1, 1, 'ASRS-0693', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-02', '', 1, 0, 1, 0, 2, 2, 3, 23, 2, 1, 'ASRS-1834', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-03', '', 1, 0, 1, 0, 2, 2, 3, 23, 3, 1, 'ASRS-0668', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-04', '', 1, 0, 1, 0, 2, 2, 3, 23, 4, 1, 'ASRS-1243', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-05', '', 1, 0, 1, 0, 2, 2, 3, 23, 5, 1, 'ASRS-1001', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-06', '', 1, 0, 1, 0, 2, 2, 3, 23, 6, 1, 'ASRS-0652', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-07', '', 1, 0, 1, 0, 2, 2, 3, 23, 7, 1, 'ASRS-1618', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-08', '', 1, 0, 1, 0, 2, 2, 3, 23, 8, 1, 'ASRS-1058', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-09', '', 1, 0, 1, 0, 2, 2, 3, 23, 9, 1, 'ASRS-1126', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-10', '', 1, 0, 1, 0, 2, 2, 3, 23, 10, 1, 'ASRS-0082', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-11', '', 1, 0, 1, 0, 2, 2, 3, 23, 11, 1, 'ASRS-1878', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-23-12', '', 1, 1, 0, 0, 2, 2, 3, 23, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-01', '', 1, 0, 1, 0, 2, 2, 3, 24, 1, 1, 'ASRS-1691', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-02', '', 1, 0, 1, 0, 2, 2, 3, 24, 2, 1, 'ASRS-0662', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-03', '', 1, 0, 1, 0, 2, 2, 3, 24, 3, 1, 'ASRS-1121', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-04', '', 1, 0, 1, 0, 2, 2, 3, 24, 4, 1, 'ASRS-1050', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-05', '', 1, 0, 1, 0, 2, 2, 3, 24, 5, 1, 'ASRS-0117', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-06', '', 1, 0, 1, 0, 2, 2, 3, 24, 6, 1, 'ASRS-0056', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-07', '', 1, 0, 1, 0, 2, 2, 3, 24, 7, 1, 'ASRS-0031', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-08', '', 1, 0, 1, 0, 2, 2, 3, 24, 8, 1, 'ASRS-0559', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-09', '', 1, 0, 1, 0, 2, 2, 3, 24, 9, 1, 'ASRS-0131', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-10', '', 1, 0, 1, 0, 2, 2, 3, 24, 10, 1, 'ASRS-1753', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-11', '', 1, 0, 1, 0, 2, 2, 3, 24, 11, 1, 'ASRS-1760', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-24-12', '', 1, 1, 0, 0, 2, 2, 3, 24, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-01', '', 1, 0, 1, 0, 2, 2, 3, 25, 1, 1, 'ASRS-1747', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-02', '', 1, 0, 1, 0, 2, 2, 3, 25, 2, 1, 'ASRS-0063', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-03', '', 1, 0, 1, 0, 2, 2, 3, 25, 3, 1, 'ASRS-1793', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-04', '', 1, 0, 1, 0, 2, 2, 3, 25, 4, 1, 'ASRS-0016', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-05', '', 1, 0, 1, 0, 2, 2, 3, 25, 5, 1, 'ASRS-0036', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-06', '', 1, 0, 1, 0, 2, 2, 3, 25, 6, 1, 'ASRS-1099', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-07', '', 1, 0, 1, 0, 2, 2, 3, 25, 7, 1, 'ASRS-1611', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-08', '', 1, 0, 1, 0, 2, 2, 3, 25, 8, 1, 'ASRS-0169', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-09', '', 1, 0, 1, 0, 2, 2, 3, 25, 9, 1, 'ASRS-0094', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-10', '', 1, 0, 1, 0, 2, 2, 3, 25, 10, 1, 'ASRS-0161', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-11', '', 1, 0, 1, 0, 2, 2, 3, 25, 11, 1, 'ASRS-1593', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-25-12', '', 1, 1, 0, 0, 2, 2, 3, 25, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-01', '', 1, 0, 1, 0, 2, 2, 3, 26, 1, 1, 'ASRS-1424', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-02', '', 1, 0, 1, 0, 2, 2, 3, 26, 2, 1, 'ASRS-1047', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-03', '', 1, 0, 1, 0, 2, 2, 3, 26, 3, 1, 'ASRS-0943', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-04', '', 1, 0, 1, 0, 2, 2, 3, 26, 4, 1, 'ASRS-0034', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-05', '', 1, 0, 1, 0, 2, 2, 3, 26, 5, 1, 'ASRS-0042', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-06', '', 1, 0, 1, 0, 2, 2, 3, 26, 6, 1, 'ASRS-1890', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-07', '', 1, 0, 1, 0, 2, 2, 3, 26, 7, 1, 'ASRS-0531', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-08', '', 1, 0, 1, 0, 2, 2, 3, 26, 8, 1, 'ASRS-0046', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-09', '', 1, 0, 1, 0, 2, 2, 3, 26, 9, 1, 'ASRS-1586', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-10', '', 1, 0, 1, 0, 2, 2, 3, 26, 10, 1, 'ASRS-0917', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-11', '', 1, 0, 1, 0, 2, 2, 3, 26, 11, 1, 'ASRS-0194', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-26-12', '', 1, 1, 0, 0, 2, 2, 3, 26, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-01', '', 1, 0, 1, 0, 2, 2, 3, 27, 1, 1, 'ASRS-1410', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-02', '', 1, 0, 1, 0, 2, 2, 3, 27, 2, 1, 'ASRS-1835', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-03', '', 1, 0, 1, 0, 2, 2, 3, 27, 3, 1, 'ASRS-0631', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-04', '', 1, 0, 1, 0, 2, 2, 3, 27, 4, 1, 'ASRS-0569', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-05', '', 1, 0, 1, 0, 2, 2, 3, 27, 5, 1, 'ASRS-1118', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-06', '', 1, 0, 1, 0, 2, 2, 3, 27, 6, 1, 'ASRS-0079', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-07', '', 1, 0, 1, 0, 2, 2, 3, 27, 7, 1, 'ASRS-1689', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-08', '', 1, 0, 1, 0, 2, 2, 3, 27, 8, 1, 'ASRS-0307', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-09', '', 1, 0, 1, 0, 2, 2, 3, 27, 9, 1, 'ASRS-0510', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-10', '', 1, 0, 1, 0, 2, 2, 3, 27, 10, 1, 'ASRS-0134', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-11', '', 1, 0, 1, 0, 2, 2, 3, 27, 11, 1, 'ASRS-0251', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-27-12', '', 1, 1, 0, 0, 2, 2, 3, 27, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-01', '', 1, 0, 1, 0, 2, 2, 3, 28, 1, 1, 'ASRS-1134', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-02', '', 1, 0, 1, 0, 2, 2, 3, 28, 2, 1, 'ASRS-0608', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-03', '', 1, 0, 1, 0, 2, 2, 3, 28, 3, 1, 'ASRS-0154', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-04', '', 1, 0, 1, 0, 2, 2, 3, 28, 4, 1, 'ASRS-1877', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-05', '', 1, 0, 1, 0, 2, 2, 3, 28, 5, 1, 'ASRS-1463', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-06', '', 1, 0, 1, 0, 2, 2, 3, 28, 6, 1, 'ASRS-0080', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-07', '', 1, 0, 1, 0, 2, 2, 3, 28, 7, 1, 'ASRS-0319', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-08', '', 1, 0, 1, 0, 2, 2, 3, 28, 8, 1, 'ASRS-1515', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-09', '', 1, 0, 1, 0, 2, 2, 3, 28, 9, 1, 'ASRS-0205', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-10', '', 1, 0, 1, 0, 2, 2, 3, 28, 10, 1, 'ASRS-0283', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-11', '', 1, 0, 1, 0, 2, 2, 3, 28, 11, 1, 'ASRS-0224', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-28-12', '', 1, 1, 0, 0, 2, 2, 3, 28, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-01', '', 1, 0, 1, 0, 2, 2, 3, 29, 1, 1, 'ASRS-1879', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-02', '', 1, 0, 1, 0, 2, 2, 3, 29, 2, 1, 'ASRS-1620', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-03', '', 1, 0, 1, 0, 2, 2, 3, 29, 3, 1, 'ASRS-1537', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-04', '', 1, 0, 1, 0, 2, 2, 3, 29, 4, 1, 'ASRS-0544', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-05', '', 1, 0, 1, 0, 2, 2, 3, 29, 5, 1, 'ASRS-0157', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-06', '', 1, 0, 1, 0, 2, 2, 3, 29, 6, 1, 'ASRS-0304', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-07', '', 1, 0, 1, 0, 2, 2, 3, 29, 7, 1, 'ASRS-1011', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-08', '', 1, 0, 1, 0, 2, 2, 3, 29, 8, 1, 'ASRS-1159', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-09', '', 1, 0, 1, 0, 2, 2, 3, 29, 9, 1, 'ASRS-0280', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-10', '', 1, 0, 1, 0, 2, 2, 3, 29, 10, 1, 'ASRS-0295', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-11', '', 1, 0, 1, 0, 2, 2, 3, 29, 11, 1, 'ASRS-0266', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-29-12', '', 1, 1, 0, 0, 2, 2, 3, 29, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-01', '', 1, 0, 1, 0, 2, 2, 3, 30, 1, 1, 'ASRS-1800', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-02', '', 1, 0, 1, 0, 2, 2, 3, 30, 2, 1, 'ASRS-1535', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-03', '', 1, 0, 1, 0, 2, 2, 3, 30, 3, 1, 'ASRS-0109', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-04', '', 1, 0, 1, 0, 2, 2, 3, 30, 4, 1, 'ASRS-0090', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-05', '', 1, 0, 1, 0, 2, 2, 3, 30, 5, 1, 'ASRS-0175', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-06', '', 1, 0, 1, 0, 2, 2, 3, 30, 6, 1, 'ASRS-0187', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-07', '', 1, 0, 1, 0, 2, 2, 3, 30, 7, 1, 'ASRS-1584', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-08', '', 1, 0, 1, 0, 2, 2, 3, 30, 8, 1, 'ASRS-0279', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-09', '', 1, 0, 1, 0, 2, 2, 3, 30, 9, 1, 'ASRS-0294', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-10', '', 1, 0, 1, 0, 2, 2, 3, 30, 10, 1, 'ASRS-0382', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-11', '', 1, 0, 1, 0, 2, 2, 3, 30, 11, 1, 'ASRS-1030', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-30-12', '', 1, 1, 0, 0, 2, 2, 3, 30, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-01', '', 1, 0, 1, 0, 2, 2, 3, 31, 1, 1, 'ASRS-1044', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-02', '', 1, 0, 1, 0, 2, 2, 3, 31, 2, 1, 'ASRS-0106', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-03', '', 1, 0, 1, 0, 2, 2, 3, 31, 3, 1, 'ASRS-0088', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-04', '', 1, 0, 1, 0, 2, 2, 3, 31, 4, 1, 'ASRS-0388', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-05', '', 1, 0, 1, 0, 2, 2, 3, 31, 5, 1, 'ASRS-0186', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-06', '', 1, 0, 1, 0, 2, 2, 3, 31, 6, 1, 'ASRS-0383', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-07', '', 1, 0, 1, 0, 2, 2, 3, 31, 7, 1, 'ASRS-0263', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-08', '', 1, 0, 1, 0, 2, 2, 3, 31, 8, 1, 'ASRS-0291', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-09', '', 1, 0, 1, 0, 2, 2, 3, 31, 9, 1, 'ASRS-0380', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-10', '', 1, 0, 1, 0, 2, 2, 3, 31, 10, 1, 'ASRS-1250', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-11', '', 1, 0, 1, 0, 2, 2, 3, 31, 11, 1, 'ASRS-1604', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-31-12', '', 1, 1, 0, 0, 2, 2, 3, 31, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-01', '', 1, 0, 1, 0, 2, 2, 3, 32, 1, 1, 'ASRS-0116', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-02', '', 1, 0, 1, 0, 2, 2, 3, 32, 2, 1, 'ASRS-0666', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-03', '', 1, 0, 1, 0, 2, 2, 3, 32, 3, 1, 'ASRS-0297', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-04', '', 1, 0, 1, 0, 2, 2, 3, 32, 4, 1, 'ASRS-0184', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-05', '', 1, 0, 1, 0, 2, 2, 3, 32, 5, 1, 'ASRS-1132', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-06', '', 1, 0, 1, 0, 2, 2, 3, 32, 6, 1, 'ASRS-0262', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-07', '', 1, 0, 1, 0, 2, 2, 3, 32, 7, 1, 'ASRS-0290', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-08', '', 1, 0, 1, 0, 2, 2, 3, 32, 8, 1, 'ASRS-0384', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-09', '', 1, 0, 1, 0, 2, 2, 3, 32, 9, 1, 'ASRS-1189', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-10', '', 1, 0, 1, 0, 2, 2, 3, 32, 10, 1, 'ASRS-1371', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-11', '', 1, 0, 0, 0, 2, 2, 3, 32, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-32-12', '', 1, 1, 0, 0, 2, 2, 3, 32, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-01', '', 1, 0, 1, 0, 2, 2, 3, 33, 1, 1, 'ASRS-0669', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-02', '', 1, 0, 1, 0, 2, 2, 3, 33, 2, 1, 'ASRS-0138', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-03', '', 1, 0, 1, 0, 2, 2, 3, 33, 3, 1, 'ASRS-0183', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-04', '', 1, 0, 1, 0, 2, 2, 3, 33, 4, 1, 'ASRS-1566', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-05', '', 1, 0, 1, 0, 2, 2, 3, 33, 5, 1, 'ASRS-0241', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-06', '', 1, 0, 1, 0, 2, 2, 3, 33, 6, 1, 'ASRS-0246', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-07', '', 1, 0, 1, 0, 2, 2, 3, 33, 7, 1, 'ASRS-0341', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-08', '', 1, 0, 0, 0, 2, 2, 3, 33, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-09', '', 1, 0, 1, 0, 2, 2, 3, 33, 9, 1, 'ASRS-0314', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-10', '', 1, 0, 0, 0, 2, 2, 3, 33, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-11', '', 1, 0, 0, 0, 2, 2, 3, 33, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-33-12', '', 1, 1, 0, 0, 2, 2, 3, 33, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-01', '', 1, 0, 1, 0, 2, 2, 3, 34, 1, 1, 'ASRS-0150', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-02', '', 1, 0, 1, 0, 2, 2, 3, 34, 2, 1, 'ASRS-1522', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-03', '', 1, 0, 1, 0, 2, 2, 3, 34, 3, 1, 'ASRS-0706', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-04', '', 1, 0, 1, 0, 2, 2, 3, 34, 4, 1, 'ASRS-0260', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-05', '', 1, 0, 1, 0, 2, 2, 3, 34, 5, 1, 'ASRS-0248', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-06', '', 1, 0, 1, 0, 2, 2, 3, 34, 6, 1, 'ASRS-0354', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-07', '', 1, 0, 1, 0, 2, 2, 3, 34, 7, 1, 'ASRS-0284', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-08', '', 1, 0, 1, 0, 2, 2, 3, 34, 8, 1, 'ASRS-0520', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-09', '', 1, 0, 0, 0, 2, 2, 3, 34, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-10', '', 1, 0, 0, 0, 2, 2, 3, 34, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-11', '', 1, 0, 0, 0, 2, 2, 3, 34, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-34-12', '', 1, 1, 0, 0, 2, 2, 3, 34, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-01', '', 1, 0, 1, 0, 2, 2, 3, 35, 1, 1, 'ASRS-0511', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-02', '', 1, 0, 1, 0, 2, 2, 3, 35, 2, 1, 'ASRS-1163', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-03', '', 1, 0, 1, 0, 2, 2, 3, 35, 3, 1, 'ASRS-0239', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-04', '', 1, 0, 1, 0, 2, 2, 3, 35, 4, 1, 'ASRS-0306', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-05', '', 1, 0, 1, 0, 2, 2, 3, 35, 5, 1, 'ASRS-0545', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-06', '', 1, 0, 1, 0, 2, 2, 3, 35, 6, 1, 'ASRS-1592', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-07', '', 1, 0, 1, 0, 2, 2, 3, 35, 7, 1, 'ASRS-0360', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-08', '', 1, 0, 0, 0, 2, 2, 3, 35, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-09', '', 1, 0, 0, 0, 2, 2, 3, 35, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-10', '', 1, 0, 0, 0, 2, 2, 3, 35, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-11', '', 1, 0, 0, 0, 2, 2, 3, 35, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-35-12', '', 1, 1, 0, 0, 2, 2, 3, 35, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-01', '', 1, 0, 1, 0, 2, 2, 3, 36, 1, 1, 'ASRS-1839', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-02', '', 1, 0, 1, 0, 2, 2, 3, 36, 2, 1, 'ASRS-0258', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-03', '', 1, 0, 1, 0, 2, 2, 3, 36, 3, 1, 'ASRS-1612', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-04', '', 1, 0, 1, 0, 2, 2, 3, 36, 4, 1, 'ASRS-0351', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-05', '', 1, 0, 1, 0, 2, 2, 3, 36, 5, 1, 'ASRS-1249', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-06', '', 1, 0, 1, 0, 2, 2, 3, 36, 6, 1, 'ASRS-1028', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-07', '', 1, 0, 0, 0, 2, 2, 3, 36, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-08', '', 1, 0, 0, 0, 2, 2, 3, 36, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-09', '', 1, 0, 0, 0, 2, 2, 3, 36, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-10', '', 1, 0, 0, 0, 2, 2, 3, 36, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-11', '', 1, 0, 0, 0, 2, 2, 3, 36, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-36-12', '', 1, 1, 0, 0, 2, 2, 3, 36, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-01', '', 1, 0, 1, 0, 2, 2, 3, 37, 1, 1, 'ASRS-0289', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-02', '', 1, 0, 1, 0, 2, 2, 3, 37, 2, 1, 'ASRS-1847', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-03', '', 1, 0, 1, 0, 2, 2, 3, 37, 3, 1, 'ASRS-0522', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-04', '', 1, 0, 1, 0, 2, 2, 3, 37, 4, 1, 'ASRS-1026', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-05', '', 1, 0, 1, 0, 2, 2, 3, 37, 5, 1, 'ASRS-1903', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-06', '', 1, 0, 0, 0, 2, 2, 3, 37, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-07', '', 1, 0, 0, 0, 2, 2, 3, 37, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-08', '', 1, 0, 0, 0, 2, 2, 3, 37, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-09', '', 1, 0, 0, 0, 2, 2, 3, 37, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-10', '', 1, 0, 0, 0, 2, 2, 3, 37, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-11', '', 1, 0, 0, 0, 2, 2, 3, 37, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-37-12', '', 1, 1, 0, 0, 2, 2, 3, 37, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-01', '', 1, 0, 1, 0, 2, 2, 3, 38, 1, 1, 'ASRS-0348', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-02', '', 1, 0, 1, 0, 2, 2, 3, 38, 2, 1, 'ASRS-0390', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-03', '', 1, 0, 1, 0, 2, 2, 3, 38, 3, 1, 'ASRS-1023', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-04', '', 1, 0, 1, 0, 2, 2, 3, 38, 4, 1, 'ASRS-0517', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-05', '', 1, 0, 0, 0, 2, 2, 3, 38, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-06', '', 1, 0, 0, 0, 2, 2, 3, 38, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-07', '', 1, 0, 0, 0, 2, 2, 3, 38, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-08', '', 1, 0, 0, 0, 2, 2, 3, 38, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-09', '', 1, 0, 0, 0, 2, 2, 3, 38, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-10', '', 1, 0, 0, 0, 2, 2, 3, 38, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-11', '', 1, 0, 0, 0, 2, 2, 3, 38, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-38-12', '', 1, 1, 0, 0, 2, 2, 3, 38, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-01', '', 1, 0, 1, 0, 2, 2, 3, 39, 1, 1, 'ASRS-0389', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-02', '', 1, 0, 1, 0, 2, 2, 3, 39, 2, 1, 'ASRS-0339', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-03', '', 1, 0, 0, 0, 2, 2, 3, 39, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-04', '', 1, 0, 0, 0, 2, 2, 3, 39, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-05', '', 1, 0, 0, 0, 2, 2, 3, 39, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-06', '', 1, 0, 0, 0, 2, 2, 3, 39, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-07', '', 1, 0, 0, 0, 2, 2, 3, 39, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-08', '', 1, 0, 0, 0, 2, 2, 3, 39, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-09', '', 1, 0, 0, 0, 2, 2, 3, 39, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-10', '', 1, 0, 0, 0, 2, 2, 3, 39, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-11', '', 1, 0, 0, 0, 2, 2, 3, 39, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-39-12', '', 1, 1, 0, 0, 2, 2, 3, 39, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-01', '', 1, 0, 1, 0, 2, 2, 3, 40, 1, 1, 'ASRS-0270', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-02', '', 1, 0, 0, 0, 2, 2, 3, 40, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-03', '', 1, 0, 0, 0, 2, 2, 3, 40, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-04', '', 1, 0, 0, 0, 2, 2, 3, 40, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-05', '', 1, 0, 0, 0, 2, 2, 3, 40, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-06', '', 1, 0, 0, 0, 2, 2, 3, 40, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-07', '', 1, 0, 0, 0, 2, 2, 3, 40, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-08', '', 1, 0, 0, 0, 2, 2, 3, 40, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-09', '', 1, 0, 0, 0, 2, 2, 3, 40, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-10', '', 1, 0, 0, 0, 2, 2, 3, 40, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-11', '', 1, 0, 0, 0, 2, 2, 3, 40, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-40-12', '', 1, 1, 0, 0, 2, 2, 3, 40, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-01', '', 1, 0, 0, 0, 2, 2, 3, 41, 1, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-02', '', 1, 0, 0, 0, 2, 2, 3, 41, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-03', '', 1, 0, 0, 0, 2, 2, 3, 41, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-04', '', 1, 0, 0, 0, 2, 2, 3, 41, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-05', '', 1, 0, 0, 0, 2, 2, 3, 41, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-06', '', 1, 0, 0, 0, 2, 2, 3, 41, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-07', '', 1, 0, 0, 0, 2, 2, 3, 41, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-08', '', 1, 0, 0, 0, 2, 2, 3, 41, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-09', '', 1, 0, 0, 0, 2, 2, 3, 41, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-10', '', 1, 0, 0, 0, 2, 2, 3, 41, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-11', '', 1, 0, 0, 0, 2, 2, 3, 41, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-41-12', '', 1, 1, 0, 0, 2, 2, 3, 41, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-01', '', 1, 0, 0, 0, 2, 2, 3, 42, 1, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-02', '', 1, 0, 0, 0, 2, 2, 3, 42, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-03', '', 1, 0, 0, 0, 2, 2, 3, 42, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-04', '', 1, 0, 0, 0, 2, 2, 3, 42, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-05', '', 1, 0, 0, 0, 2, 2, 3, 42, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-06', '', 1, 0, 0, 0, 2, 2, 3, 42, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-07', '', 1, 0, 0, 0, 2, 2, 3, 42, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-08', '', 1, 0, 0, 0, 2, 2, 3, 42, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-09', '', 1, 0, 0, 0, 2, 2, 3, 42, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-10', '', 1, 0, 0, 0, 2, 2, 3, 42, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-11', '', 1, 0, 0, 0, 2, 2, 3, 42, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A03-42-12', '', 1, 1, 0, 0, 2, 2, 3, 42, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-01', '', 1, 0, 1, 0, 2, 2, 4, 1, 1, 1, 'ASRS-1523', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-02', '', 1, 0, 1, 0, 2, 2, 4, 1, 2, 1, 'ASRS-1166', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-03', '', 1, 0, 1, 0, 2, 2, 4, 1, 3, 1, 'ASRS-0924', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-04', '', 1, 0, 1, 0, 2, 2, 4, 1, 4, 1, 'ASRS-1197', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-05', '', 1, 0, 1, 0, 2, 2, 4, 1, 5, 1, 'ASRS-0896', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-06', '', 1, 0, 1, 0, 2, 2, 4, 1, 6, 1, 'ASRS-1730', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-07', '', 1, 0, 1, 0, 2, 2, 4, 1, 7, 1, 'ASRS-1149', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-08', '', 1, 0, 1, 0, 2, 2, 4, 1, 8, 1, 'ASRS-1264', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-09', '', 1, 0, 1, 0, 2, 2, 4, 1, 9, 1, 'ASRS-0257', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-10', '', 1, 0, 1, 0, 2, 2, 4, 1, 10, 1, 'ASRS-0112', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-11', '', 1, 0, 1, 0, 2, 2, 4, 1, 11, 1, 'ASRS-1702', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-01-12', '', 1, 1, 0, 0, 2, 2, 4, 1, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-01', '', 1, 0, 1, 0, 2, 2, 4, 2, 1, 1, 'ASRS-1855', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-02', '', 1, 0, 1, 0, 2, 2, 4, 2, 2, 1, 'ASRS-1651', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-03', '', 1, 0, 1, 0, 2, 2, 4, 2, 3, 1, 'ASRS-1634', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-04', '', 1, 0, 1, 0, 2, 2, 4, 2, 4, 1, 'ASRS-0883', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-05', '', 1, 0, 1, 0, 2, 2, 4, 2, 5, 1, 'ASRS-0885', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-06', '', 1, 0, 1, 0, 2, 2, 4, 2, 6, 1, 'ASRS-1194', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-07', '', 1, 0, 1, 0, 2, 2, 4, 2, 7, 1, 'ASRS-1311', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-08', '', 1, 0, 1, 0, 2, 2, 4, 2, 8, 1, 'ASRS-1139', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-09', '', 1, 0, 1, 0, 2, 2, 4, 2, 9, 1, 'ASRS-0877', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-10', '', 1, 0, 1, 0, 2, 2, 4, 2, 10, 1, 'ASRS-0972', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-11', '', 1, 0, 1, 0, 2, 2, 4, 2, 11, 1, 'ASRS-1246', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-02-12', '', 1, 1, 0, 0, 2, 2, 4, 2, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-01', '', 1, 0, 1, 0, 2, 2, 4, 3, 1, 1, 'ASRS-0921', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-02', '', 1, 0, 1, 0, 2, 2, 4, 3, 2, 1, 'ASRS-1361', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-03', '', 1, 0, 1, 0, 2, 2, 4, 3, 3, 1, 'ASRS-0925', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-04', '', 1, 0, 1, 0, 2, 2, 4, 3, 4, 1, 'ASRS-0990', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-05', '', 1, 0, 1, 0, 2, 2, 4, 3, 5, 1, 'ASRS-0926', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-06', '', 1, 0, 1, 0, 2, 2, 4, 3, 6, 1, 'ASRS-0627', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-07', '', 1, 0, 1, 0, 2, 2, 4, 3, 7, 1, 'ASRS-0611', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-08', '', 1, 0, 1, 0, 2, 2, 4, 3, 8, 1, 'ASRS-1732', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-09', '', 1, 0, 1, 0, 2, 2, 4, 3, 9, 1, 'ASRS-1224', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-10', '', 1, 0, 1, 0, 2, 2, 4, 3, 10, 1, 'ASRS-1176', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-11', '', 1, 0, 1, 0, 2, 2, 4, 3, 11, 1, 'ASRS-0935', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-03-12', '', 1, 1, 1, 0, 2, 2, 4, 3, 12, 1, 'ASRS-0787', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-01', '', 1, 0, 1, 0, 2, 2, 4, 4, 1, 1, 'ASRS-0974', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-02', '', 1, 0, 1, 0, 2, 2, 4, 4, 2, 1, 'ASRS-1232', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-03', '', 1, 0, 1, 0, 2, 2, 4, 4, 3, 1, 'ASRS-0977', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-04', '', 1, 0, 1, 0, 2, 2, 4, 4, 4, 1, 'ASRS-1405', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-05', '', 1, 0, 1, 0, 2, 2, 4, 4, 5, 1, 'ASRS-0623', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-06', '', 1, 0, 1, 0, 2, 2, 4, 4, 6, 1, 'ASRS-1195', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-07', '', 1, 0, 1, 0, 2, 2, 4, 4, 7, 1, 'ASRS-1239', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-08', '', 1, 0, 1, 0, 2, 2, 4, 4, 8, 1, 'ASRS-0950', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-09', '', 1, 0, 1, 0, 2, 2, 4, 4, 9, 1, 'ASRS-1236', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-10', '', 1, 0, 1, 0, 2, 2, 4, 4, 10, 1, 'ASRS-1174', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-11', '', 1, 0, 1, 0, 2, 2, 4, 4, 11, 1, 'ASRS-0144', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-04-12', '', 1, 1, 1, 0, 2, 2, 4, 4, 12, 1, 'ASRS-0796', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-01', '', 1, 0, 1, 0, 2, 2, 4, 5, 1, 1, 'ASRS-1185', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-02', '', 1, 0, 1, 0, 2, 2, 4, 5, 2, 1, 'ASRS-1010', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-03', '', 1, 0, 1, 0, 2, 2, 4, 5, 3, 1, 'ASRS-1178', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-04', '', 1, 0, 1, 0, 2, 2, 4, 5, 4, 1, 'ASRS-1209', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-05', '', 1, 0, 1, 0, 2, 2, 4, 5, 5, 1, 'ASRS-1183', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-06', '', 1, 0, 1, 0, 2, 2, 4, 5, 6, 1, 'ASRS-0249', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-07', '', 1, 0, 1, 0, 2, 2, 4, 5, 7, 1, 'ASRS-1199', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-08', '', 1, 0, 1, 0, 2, 2, 4, 5, 8, 1, 'ASRS-1202', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-09', '', 1, 0, 1, 0, 2, 2, 4, 5, 9, 1, 'ASRS-1214', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-10', '', 1, 0, 1, 0, 2, 2, 4, 5, 10, 1, 'ASRS-1226', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-11', '', 1, 0, 1, 0, 2, 2, 4, 5, 11, 1, 'ASRS-0654', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-05-12', '', 1, 1, 1, 0, 2, 2, 4, 5, 12, 1, 'ASRS-0804', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-01', '', 1, 0, 1, 0, 2, 2, 4, 6, 1, 1, 'ASRS-1273', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-02', '', 1, 0, 1, 0, 2, 2, 4, 6, 2, 1, 'ASRS-1449', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-03', '', 1, 0, 1, 0, 2, 2, 4, 6, 3, 1, 'ASRS-1293', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-04', '', 1, 0, 1, 0, 2, 2, 4, 6, 4, 1, 'ASRS-1316', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-05', '', 1, 0, 1, 0, 2, 2, 4, 6, 5, 1, 'ASRS-1329', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-06', '', 1, 0, 1, 0, 2, 2, 4, 6, 6, 1, 'ASRS-1365', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-07', '', 1, 0, 1, 0, 2, 2, 4, 6, 7, 1, 'ASRS-1114', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-08', '', 1, 0, 1, 0, 2, 2, 4, 6, 8, 1, 'ASRS-1360', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-09', '', 1, 0, 1, 0, 2, 2, 4, 6, 9, 1, 'ASRS-0785', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-10', '', 1, 0, 1, 0, 2, 2, 4, 6, 10, 1, 'ASRS-0809', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-11', '', 1, 0, 1, 0, 2, 2, 4, 6, 11, 1, 'ASRS-0831', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-06-12', '', 1, 1, 1, 0, 2, 2, 4, 6, 12, 1, 'ASRS-0859', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-01', '', 1, 0, 1, 0, 2, 2, 4, 7, 1, 1, 'ASRS-0140', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-02', '', 1, 0, 1, 0, 2, 2, 4, 7, 2, 1, 'ASRS-1301', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-03', '', 1, 0, 1, 0, 2, 2, 4, 7, 3, 1, 'ASRS-0840', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-04', '', 1, 0, 1, 0, 2, 2, 4, 7, 4, 1, 'ASRS-1328', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-05', '', 1, 0, 1, 0, 2, 2, 4, 7, 5, 1, 'ASRS-0987', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-06', '', 1, 0, 1, 0, 2, 2, 4, 7, 6, 1, 'ASRS-0903', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-07', '', 1, 0, 1, 0, 2, 2, 4, 7, 7, 1, 'ASRS-1206', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-08', '', 1, 0, 1, 0, 2, 2, 4, 7, 8, 1, 'ASRS-0784', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-09', '', 1, 0, 1, 0, 2, 2, 4, 7, 9, 1, 'ASRS-0801', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-10', '', 1, 0, 1, 0, 2, 2, 4, 7, 10, 1, 'ASRS-0746', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-11', '', 1, 0, 1, 0, 2, 2, 4, 7, 11, 1, 'ASRS-0842', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-07-12', '', 1, 1, 1, 0, 2, 2, 4, 7, 12, 1, 'ASRS-1354', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-01', '', 1, 0, 1, 0, 2, 2, 4, 8, 1, 1, 'ASRS-0839', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-02', '', 1, 0, 1, 0, 2, 2, 4, 8, 2, 1, 'ASRS-1181', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-03', '', 1, 0, 1, 0, 2, 2, 4, 8, 3, 1, 'ASRS-1002', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-04', '', 1, 0, 1, 0, 2, 2, 4, 8, 4, 1, 'ASRS-1844', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-05', '', 1, 0, 1, 0, 2, 2, 4, 8, 5, 1, 'ASRS-1381', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-06', '', 1, 0, 1, 0, 2, 2, 4, 8, 6, 1, 'ASRS-1840', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-07', '', 1, 0, 1, 0, 2, 2, 4, 8, 7, 1, 'ASRS-0763', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-08', '', 1, 0, 1, 0, 2, 2, 4, 8, 8, 1, 'ASRS-0807', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-09', '', 1, 0, 1, 0, 2, 2, 4, 8, 9, 1, 'ASRS-0744', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-10', '', 1, 0, 1, 0, 2, 2, 4, 8, 10, 1, 'ASRS-0866', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-11', '', 1, 0, 1, 0, 2, 2, 4, 8, 11, 1, 'ASRS-1303', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-08-12', '', 1, 1, 0, 0, 2, 2, 4, 8, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-01', '', 1, 0, 1, 0, 2, 2, 4, 9, 1, 1, 'ASRS-1333', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-02', '', 1, 0, 1, 0, 2, 2, 4, 9, 2, 1, 'ASRS-1284', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-03', '', 1, 0, 1, 0, 2, 2, 4, 9, 3, 1, 'ASRS-0985', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-04', '', 1, 0, 1, 0, 2, 2, 4, 9, 4, 1, 'ASRS-1594', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-05', '', 1, 0, 1, 0, 2, 2, 4, 9, 5, 1, 'ASRS-1415', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-06', '', 1, 0, 1, 0, 2, 2, 4, 9, 6, 1, 'ASRS-0772', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-07', '', 1, 0, 1, 0, 2, 2, 4, 9, 7, 1, 'ASRS-0822', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-08', '', 1, 0, 1, 0, 2, 2, 4, 9, 8, 1, 'ASRS-0813', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-09', '', 1, 0, 1, 0, 2, 2, 4, 9, 9, 1, 'ASRS-0864', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-10', '', 1, 0, 1, 0, 2, 2, 4, 9, 10, 1, 'ASRS-1312', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-11', '', 1, 0, 1, 0, 2, 2, 4, 9, 11, 1, 'ASRS-1447', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-09-12', '', 1, 1, 0, 0, 2, 2, 4, 9, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-01', '', 1, 0, 1, 0, 2, 2, 4, 10, 1, 1, 'ASRS-1363', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-02', '', 1, 0, 1, 0, 2, 2, 4, 10, 2, 1, 'ASRS-1196', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-03', '', 1, 0, 1, 0, 2, 2, 4, 10, 3, 1, 'ASRS-1638', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-04', '', 1, 0, 1, 0, 2, 2, 4, 10, 4, 1, 'ASRS-1408', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-05', '', 1, 0, 1, 0, 2, 2, 4, 10, 5, 1, 'ASRS-0775', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-06', '', 1, 0, 1, 0, 2, 2, 4, 10, 6, 1, 'ASRS-0808', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-07', '', 1, 0, 1, 0, 2, 2, 4, 10, 7, 1, 'ASRS-0815', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-08', '', 1, 0, 1, 0, 2, 2, 4, 10, 8, 1, 'ASRS-1457', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-09', '', 1, 0, 1, 0, 2, 2, 4, 10, 9, 1, 'ASRS-1344', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-10', '', 1, 0, 1, 0, 2, 2, 4, 10, 10, 1, 'ASRS-1545', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-11', '', 1, 0, 1, 0, 2, 2, 4, 10, 11, 1, 'ASRS-1685', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-10-12', '', 1, 1, 0, 0, 2, 2, 4, 10, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-01', '', 1, 0, 1, 0, 2, 2, 4, 11, 1, 1, 'ASRS-1005', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-02', '', 1, 0, 1, 0, 2, 2, 4, 11, 2, 1, 'ASRS-0938', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-03', '', 1, 0, 1, 0, 2, 2, 4, 11, 3, 1, 'ASRS-1420', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-04', '', 1, 0, 1, 0, 2, 2, 4, 11, 4, 1, 'ASRS-0768', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-05', '', 1, 0, 1, 0, 2, 2, 4, 11, 5, 1, 'ASRS-0814', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-06', '', 1, 0, 1, 0, 2, 2, 4, 11, 6, 1, 'ASRS-1379', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-07', '', 1, 0, 1, 0, 2, 2, 4, 11, 7, 1, 'ASRS-1456', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-08', '', 1, 0, 1, 0, 2, 2, 4, 11, 8, 1, 'ASRS-1008', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-09', '', 1, 0, 1, 0, 2, 2, 4, 11, 9, 1, 'ASRS-1479', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-10', '', 1, 0, 1, 0, 2, 2, 4, 11, 10, 1, 'ASRS-1617', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-11', '', 1, 0, 1, 0, 2, 2, 4, 11, 11, 1, 'ASRS-1674', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-11-12', '', 1, 1, 0, 0, 2, 2, 4, 11, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-01', '', 1, 0, 1, 0, 2, 2, 4, 12, 1, 1, 'ASRS-0893', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-02', '', 1, 0, 1, 0, 2, 2, 4, 12, 2, 1, 'ASRS-1418', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-03', '', 1, 0, 1, 0, 2, 2, 4, 12, 3, 1, 'ASRS-0770', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-04', '', 1, 0, 1, 0, 2, 2, 4, 12, 4, 1, 'ASRS-0806', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-05', '', 1, 0, 1, 0, 2, 2, 4, 12, 5, 1, 'ASRS-1253', 1, 'A'); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-06', '', 1, 0, 1, 0, 2, 2, 4, 12, 6, 1, 'ASRS-1453', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-07', '', 1, 0, 1, 0, 2, 2, 4, 12, 7, 1, 'ASRS-1351', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-08', '', 1, 0, 1, 0, 2, 2, 4, 12, 8, 1, 'ASRS-1477', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-09', '', 1, 0, 1, 0, 2, 2, 4, 12, 9, 1, 'ASRS-1102', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-10', '', 1, 0, 1, 0, 2, 2, 4, 12, 10, 1, 'ASRS-1672', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-11', '', 1, 0, 1, 0, 2, 2, 4, 12, 11, 1, 'ASRS-1204', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-12-12', '', 1, 1, 0, 0, 2, 2, 4, 12, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-01', '', 1, 0, 1, 0, 2, 2, 4, 13, 1, 1, 'ASRS-1403', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-02', '', 1, 0, 1, 0, 2, 2, 4, 13, 2, 1, 'ASRS-1781', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-03', '', 1, 0, 1, 0, 2, 2, 4, 13, 3, 1, 'ASRS-0747', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-04', '', 1, 0, 1, 0, 2, 2, 4, 13, 4, 1, 'ASRS-1848', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-05', '', 1, 0, 1, 0, 2, 2, 4, 13, 5, 1, 'ASRS-1470', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-06', '', 1, 0, 1, 0, 2, 2, 4, 13, 6, 1, 'ASRS-1193', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-07', '', 1, 0, 1, 0, 2, 2, 4, 13, 7, 1, 'ASRS-1476', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-08', '', 1, 0, 1, 0, 2, 2, 4, 13, 8, 1, 'ASRS-1233', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-09', '', 1, 0, 1, 0, 2, 2, 4, 13, 9, 1, 'ASRS-0996', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-10', '', 1, 0, 1, 0, 2, 2, 4, 13, 10, 1, 'ASRS-0941', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-11', '', 1, 0, 1, 0, 2, 2, 4, 13, 11, 1, 'ASRS-0660', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-13-12', '', 1, 1, 0, 0, 2, 2, 4, 13, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-01', '', 1, 0, 1, 0, 2, 2, 4, 14, 1, 1, 'ASRS-1375', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-02', '', 1, 0, 1, 0, 2, 2, 4, 14, 2, 1, 'ASRS-1440', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-03', '', 1, 0, 1, 0, 2, 2, 4, 14, 3, 1, 'ASRS-1124', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-04', '', 1, 0, 1, 0, 2, 2, 4, 14, 4, 1, 'ASRS-1468', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-05', '', 1, 0, 1, 0, 2, 2, 4, 14, 5, 1, 'ASRS-1247', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-06', '', 1, 0, 1, 0, 2, 2, 4, 14, 6, 1, 'ASRS-1475', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-07', '', 1, 0, 1, 0, 2, 2, 4, 14, 7, 1, 'ASRS-0973', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-08', '', 1, 0, 1, 0, 2, 2, 4, 14, 8, 1, 'ASRS-1669', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-09', '', 1, 0, 1, 0, 2, 2, 4, 14, 9, 1, 'ASRS-0054', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-10', '', 1, 0, 1, 0, 2, 2, 4, 14, 10, 1, 'ASRS-1712', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-11', '', 1, 0, 1, 0, 2, 2, 4, 14, 11, 1, 'ASRS-0902', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-14-12', '', 1, 1, 0, 0, 2, 2, 4, 14, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-01', '', 1, 0, 1, 0, 2, 2, 4, 15, 1, 1, 'ASRS-1434', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-02', '', 1, 0, 1, 0, 2, 2, 4, 15, 2, 1, 'ASRS-0855', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-03', '', 1, 0, 1, 0, 2, 2, 4, 15, 3, 1, 'ASRS-1227', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-04', '', 1, 0, 1, 0, 2, 2, 4, 15, 4, 1, 'ASRS-1556', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-05', '', 1, 0, 1, 0, 2, 2, 4, 15, 5, 1, 'ASRS-1496', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-06', '', 1, 0, 1, 0, 2, 2, 4, 15, 6, 1, 'ASRS-1274', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-07', '', 1, 0, 1, 0, 2, 2, 4, 15, 7, 1, 'ASRS-0946', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-08', '', 1, 0, 1, 0, 2, 2, 4, 15, 8, 1, 'ASRS-0553', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-09', '', 1, 0, 1, 0, 2, 2, 4, 15, 9, 1, 'ASRS-1589', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-10', '', 1, 0, 1, 0, 2, 2, 4, 15, 10, 1, 'ASRS-1853', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-11', '', 1, 0, 1, 0, 2, 2, 4, 15, 11, 1, 'ASRS-1724', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-15-12', '', 1, 1, 0, 0, 2, 2, 4, 15, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-01', '', 1, 0, 1, 0, 2, 2, 4, 16, 1, 1, 'ASRS-0793', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-02', '', 1, 0, 1, 0, 2, 2, 4, 16, 2, 1, 'ASRS-1464', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-03', '', 1, 0, 1, 0, 2, 2, 4, 16, 3, 1, 'ASRS-1553', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-04', '', 1, 0, 1, 0, 2, 2, 4, 16, 4, 1, 'ASRS-1486', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-05', '', 1, 0, 1, 0, 2, 2, 4, 16, 5, 1, 'ASRS-0095', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-06', '', 1, 0, 1, 0, 2, 2, 4, 16, 6, 1, 'ASRS-1679', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-07', '', 1, 0, 1, 0, 2, 2, 4, 16, 7, 1, 'ASRS-1595', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-08', '', 1, 0, 1, 0, 2, 2, 4, 16, 8, 1, 'ASRS-1720', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-09', '', 1, 0, 1, 0, 2, 2, 4, 16, 9, 1, 'ASRS-0163', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-10', '', 1, 0, 1, 0, 2, 2, 4, 16, 10, 1, 'ASRS-0699', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-11', '', 1, 0, 1, 0, 2, 2, 4, 16, 11, 1, 'ASRS-0674', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-16-12', '', 1, 1, 0, 0, 2, 2, 4, 16, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-01', '', 1, 0, 1, 0, 2, 2, 4, 17, 1, 1, 'ASRS-1462', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-02', '', 1, 0, 1, 0, 2, 2, 4, 17, 2, 1, 'ASRS-1509', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-03', '', 1, 0, 1, 0, 2, 2, 4, 17, 3, 1, 'ASRS-1485', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-04', '', 1, 0, 1, 0, 2, 2, 4, 17, 4, 1, 'ASRS-1639', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-05', '', 1, 0, 1, 0, 2, 2, 4, 17, 5, 1, 'ASRS-1680', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-06', '', 1, 0, 1, 0, 2, 2, 4, 17, 6, 1, 'ASRS-1574', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-07', '', 1, 0, 1, 0, 2, 2, 4, 17, 7, 1, 'ASRS-0001', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-08', '', 1, 0, 1, 0, 2, 2, 4, 17, 8, 1, 'ASRS-1263', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-09', '', 1, 0, 1, 0, 2, 2, 4, 17, 9, 1, 'ASRS-1709', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-10', '', 1, 0, 1, 0, 2, 2, 4, 17, 10, 1, 'ASRS-1812', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-11', '', 1, 0, 1, 0, 2, 2, 4, 17, 11, 1, 'ASRS-0006', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-17-12', '', 1, 1, 0, 0, 2, 2, 4, 17, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-01', '', 1, 0, 1, 0, 2, 2, 4, 18, 1, 1, 'ASRS-1506', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-02', '', 1, 0, 1, 0, 2, 2, 4, 18, 2, 1, 'ASRS-1472', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-03', '', 1, 0, 1, 0, 2, 2, 4, 18, 3, 1, 'ASRS-1106', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-04', '', 1, 0, 1, 0, 2, 2, 4, 18, 4, 1, 'ASRS-1406', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-05', '', 1, 0, 1, 0, 2, 2, 4, 18, 5, 1, 'ASRS-1573', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-06', '', 1, 0, 1, 0, 2, 2, 4, 18, 6, 1, 'ASRS-0130', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-07', '', 1, 0, 1, 0, 2, 2, 4, 18, 7, 1, 'ASRS-1450', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-08', '', 1, 0, 1, 0, 2, 2, 4, 18, 8, 1, 'ASRS-1138', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-09', '', 1, 0, 1, 0, 2, 2, 4, 18, 9, 1, 'ASRS-1763', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-10', '', 1, 0, 1, 0, 2, 2, 4, 18, 10, 1, 'ASRS-0004', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-11', '', 1, 0, 1, 0, 2, 2, 4, 18, 11, 1, 'ASRS-0007', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-18-12', '', 1, 1, 0, 0, 2, 2, 4, 18, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-01', '', 1, 0, 1, 0, 2, 2, 4, 19, 1, 1, 'ASRS-1558', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-02', '', 1, 0, 1, 0, 2, 2, 4, 19, 2, 1, 'ASRS-1813', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-03', '', 1, 0, 1, 0, 2, 2, 4, 19, 3, 1, 'ASRS-1366', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-04', '', 1, 0, 1, 0, 2, 2, 4, 19, 4, 1, 'ASRS-0051', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-05', '', 1, 0, 1, 0, 2, 2, 4, 19, 5, 1, 'ASRS-1861', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-06', '', 1, 0, 1, 0, 2, 2, 4, 19, 6, 1, 'ASRS-1314', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-07', '', 1, 0, 1, 0, 2, 2, 4, 19, 7, 1, 'ASRS-1129', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-08', '', 1, 0, 1, 0, 2, 2, 4, 19, 8, 1, 'ASRS-1776', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-09', '', 1, 0, 1, 0, 2, 2, 4, 19, 9, 1, 'ASRS-1750', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-10', '', 1, 0, 1, 0, 2, 2, 4, 19, 10, 1, 'ASRS-1120', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-11', '', 1, 0, 1, 0, 2, 2, 4, 19, 11, 1, 'ASRS-0022', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-19-12', '', 1, 1, 0, 0, 2, 2, 4, 19, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-01', '', 1, 0, 1, 0, 2, 2, 4, 20, 1, 1, 'ASRS-1633', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-02', '', 1, 0, 1, 0, 2, 2, 4, 20, 2, 1, 'ASRS-1262', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-03', '', 1, 0, 1, 0, 2, 2, 4, 20, 3, 1, 'ASRS-0015', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-04', '', 1, 0, 1, 0, 2, 2, 4, 20, 4, 1, 'ASRS-1841', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-05', '', 1, 0, 1, 0, 2, 2, 4, 20, 5, 1, 'ASRS-0637', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-06', '', 1, 0, 1, 0, 2, 2, 4, 20, 6, 1, 'ASRS-1626', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-07', '', 1, 0, 1, 0, 2, 2, 4, 20, 7, 1, 'ASRS-1359', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-08', '', 1, 0, 1, 0, 2, 2, 4, 20, 8, 1, 'ASRS-1863', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-09', '', 1, 0, 1, 0, 2, 2, 4, 20, 9, 1, 'ASRS-0650', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-10', '', 1, 0, 1, 0, 2, 2, 4, 20, 10, 1, 'ASRS-0097', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-11', '', 1, 0, 1, 0, 2, 2, 4, 20, 11, 1, 'ASRS-0554', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-20-12', '', 1, 1, 0, 0, 2, 2, 4, 20, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-01', '', 1, 0, 1, 0, 2, 2, 4, 21, 1, 1, 'ASRS-1782', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-02', '', 1, 0, 1, 0, 2, 2, 4, 21, 2, 1, 'ASRS-1663', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-03', '', 1, 0, 1, 0, 2, 2, 4, 21, 3, 1, 'ASRS-0638', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-04', '', 1, 0, 1, 0, 2, 2, 4, 21, 4, 1, 'ASRS-0614', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-05', '', 1, 0, 1, 0, 2, 2, 4, 21, 5, 1, 'ASRS-1849', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-06', '', 1, 0, 1, 0, 2, 2, 4, 21, 6, 1, 'ASRS-1052', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-07', '', 1, 0, 1, 0, 2, 2, 4, 21, 7, 1, 'ASRS-1372', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-08', '', 1, 0, 1, 0, 2, 2, 4, 21, 8, 1, 'ASRS-1751', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-09', '', 1, 0, 1, 0, 2, 2, 4, 21, 9, 1, 'ASRS-1248', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-10', '', 1, 0, 1, 0, 2, 2, 4, 21, 10, 1, 'ASRS-0201', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-11', '', 1, 0, 1, 0, 2, 2, 4, 21, 11, 1, 'ASRS-0177', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-21-12', '', 1, 1, 0, 0, 2, 2, 4, 21, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-01', '', 1, 0, 1, 0, 2, 2, 4, 22, 1, 1, 'ASRS-1646', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-02', '', 1, 0, 1, 0, 2, 2, 4, 22, 2, 1, 'ASRS-1707', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-03', '', 1, 0, 1, 0, 2, 2, 4, 22, 3, 1, 'ASRS-0653', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-04', '', 1, 0, 1, 0, 2, 2, 4, 22, 4, 1, 'ASRS-0643', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-05', '', 1, 0, 1, 0, 2, 2, 4, 22, 5, 1, 'ASRS-1770', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-06', '', 1, 0, 1, 0, 2, 2, 4, 22, 6, 1, 'ASRS-1845', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-07', '', 1, 0, 1, 0, 2, 2, 4, 22, 7, 1, 'ASRS-0698', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-08', '', 1, 0, 1, 0, 2, 2, 4, 22, 8, 1, 'ASRS-1856', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-09', '', 1, 0, 1, 0, 2, 2, 4, 22, 9, 1, 'ASRS-1056', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-10', '', 1, 0, 1, 0, 2, 2, 4, 22, 10, 1, 'ASRS-1868', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-11', '', 1, 0, 1, 0, 2, 2, 4, 22, 11, 1, 'ASRS-1872', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-22-12', '', 1, 1, 0, 0, 2, 2, 4, 22, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-01', '', 1, 0, 1, 0, 2, 2, 4, 23, 1, 1, 'ASRS-1769', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-02', '', 1, 0, 1, 0, 2, 2, 4, 23, 2, 1, 'ASRS-1783', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-03', '', 1, 0, 1, 0, 2, 2, 4, 23, 3, 1, 'ASRS-1111', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-04', '', 1, 0, 1, 0, 2, 2, 4, 23, 4, 1, 'ASRS-1018', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-05', '', 1, 0, 1, 0, 2, 2, 4, 23, 5, 1, 'ASRS-1091', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-06', '', 1, 0, 1, 0, 2, 2, 4, 23, 6, 1, 'ASRS-0636', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-07', '', 1, 0, 1, 0, 2, 2, 4, 23, 7, 1, 'ASRS-1832', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-08', '', 1, 0, 1, 0, 2, 2, 4, 23, 8, 1, 'ASRS-0151', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-09', '', 1, 0, 1, 0, 2, 2, 4, 23, 9, 1, 'ASRS-1532', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-10', '', 1, 0, 1, 0, 2, 2, 4, 23, 10, 1, 'ASRS-1739', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-11', '', 1, 0, 1, 0, 2, 2, 4, 23, 11, 1, 'ASRS-0118', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-23-12', '', 1, 1, 0, 0, 2, 2, 4, 23, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-01', '', 1, 0, 1, 0, 2, 2, 4, 24, 1, 1, 'ASRS-1771', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-02', '', 1, 0, 1, 0, 2, 2, 4, 24, 2, 1, 'ASRS-1123', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-03', '', 1, 0, 1, 0, 2, 2, 4, 24, 3, 1, 'ASRS-1055', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-04', '', 1, 0, 1, 0, 2, 2, 4, 24, 4, 1, 'ASRS-1294', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-05', '', 1, 0, 1, 0, 2, 2, 4, 24, 5, 1, 'ASRS-0159', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-06', '', 1, 0, 1, 0, 2, 2, 4, 24, 6, 1, 'ASRS-0048', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-07', '', 1, 0, 1, 0, 2, 2, 4, 24, 7, 1, 'ASRS-0556', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-08', '', 1, 0, 1, 0, 2, 2, 4, 24, 8, 1, 'ASRS-1540', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-09', '', 1, 0, 1, 0, 2, 2, 4, 24, 9, 1, 'ASRS-0659', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-10', '', 1, 0, 1, 0, 2, 2, 4, 24, 10, 1, 'ASRS-0043', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-11', '', 1, 0, 1, 0, 2, 2, 4, 24, 11, 1, 'ASRS-0148', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-24-12', '', 1, 1, 0, 0, 2, 2, 4, 24, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-01', '', 1, 0, 1, 0, 2, 2, 4, 25, 1, 1, 'ASRS-0983', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-02', '', 1, 0, 1, 0, 2, 2, 4, 25, 2, 1, 'ASRS-1805', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-03', '', 1, 0, 1, 0, 2, 2, 4, 25, 3, 1, 'ASRS-1708', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-04', '', 1, 0, 1, 0, 2, 2, 4, 25, 4, 1, 'ASRS-0071', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-05', '', 1, 0, 1, 0, 2, 2, 4, 25, 5, 1, 'ASRS-1310', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-06', '', 1, 0, 1, 0, 2, 2, 4, 25, 6, 1, 'ASRS-1734', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-07', '', 1, 0, 1, 0, 2, 2, 4, 25, 7, 1, 'ASRS-1534', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-08', '', 1, 0, 1, 0, 2, 2, 4, 25, 8, 1, 'ASRS-1283', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-09', '', 1, 0, 1, 0, 2, 2, 4, 25, 9, 1, 'ASRS-0125', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-10', '', 1, 0, 1, 0, 2, 2, 4, 25, 10, 1, 'ASRS-0145', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-11', '', 1, 0, 1, 0, 2, 2, 4, 25, 11, 1, 'ASRS-1514', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-25-12', '', 1, 1, 0, 0, 2, 2, 4, 25, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-01', '', 1, 0, 1, 0, 2, 2, 4, 26, 1, 1, 'ASRS-1851', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-02', '', 1, 0, 1, 0, 2, 2, 4, 26, 2, 1, 'ASRS-1103', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-03', '', 1, 0, 1, 0, 2, 2, 4, 26, 3, 1, 'ASRS-0644', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-04', '', 1, 0, 1, 0, 2, 2, 4, 26, 4, 1, 'ASRS-0058', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-05', '', 1, 0, 1, 0, 2, 2, 4, 26, 5, 1, 'ASRS-1414', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-06', '', 1, 0, 1, 0, 2, 2, 4, 26, 6, 1, 'ASRS-0700', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-07', '', 1, 0, 1, 0, 2, 2, 4, 26, 7, 1, 'ASRS-1883', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-08', '', 1, 0, 1, 0, 2, 2, 4, 26, 8, 1, 'ASRS-1036', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-09', '', 1, 0, 1, 0, 2, 2, 4, 26, 9, 1, 'ASRS-0180', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-10', '', 1, 0, 1, 0, 2, 2, 4, 26, 10, 1, 'ASRS-0189', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-11', '', 1, 0, 1, 0, 2, 2, 4, 26, 11, 1, 'ASRS-0705', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-26-12', '', 1, 1, 0, 0, 2, 2, 4, 26, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-01', '', 1, 0, 1, 0, 2, 2, 4, 27, 1, 1, 'ASRS-1768', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-02', '', 1, 0, 1, 0, 2, 2, 4, 27, 2, 1, 'ASRS-1045', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-03', '', 1, 0, 1, 0, 2, 2, 4, 27, 3, 1, 'ASRS-0142', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-04', '', 1, 0, 1, 0, 2, 2, 4, 27, 4, 1, 'ASRS-0895', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-05', '', 1, 0, 1, 0, 2, 2, 4, 27, 5, 1, 'ASRS-0077', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-06', '', 1, 0, 1, 0, 2, 2, 4, 27, 6, 1, 'ASRS-0025', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-07', '', 1, 0, 1, 0, 2, 2, 4, 27, 7, 1, 'ASRS-0128', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-08', '', 1, 0, 1, 0, 2, 2, 4, 27, 8, 1, 'ASRS-0181', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-09', '', 1, 0, 1, 0, 2, 2, 4, 27, 9, 1, 'ASRS-1520', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-10', '', 1, 0, 1, 0, 2, 2, 4, 27, 10, 1, 'ASRS-0208', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-11', '', 1, 0, 1, 0, 2, 2, 4, 27, 11, 1, 'ASRS-0287', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-27-12', '', 1, 1, 0, 0, 2, 2, 4, 27, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-01', '', 1, 0, 1, 0, 2, 2, 4, 28, 1, 1, 'ASRS-0039', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-02', '', 1, 0, 1, 0, 2, 2, 4, 28, 2, 1, 'ASRS-1875', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-03', '', 1, 0, 1, 0, 2, 2, 4, 28, 3, 1, 'ASRS-0609', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-04', '', 1, 0, 1, 0, 2, 2, 4, 28, 4, 1, 'ASRS-1866', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-05', '', 1, 0, 1, 0, 2, 2, 4, 28, 5, 1, 'ASRS-1704', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-06', '', 1, 0, 1, 0, 2, 2, 4, 28, 6, 1, 'ASRS-0310', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-07', '', 1, 0, 1, 0, 2, 2, 4, 28, 7, 1, 'ASRS-0176', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-08', '', 1, 0, 1, 0, 2, 2, 4, 28, 8, 1, 'ASRS-1513', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-09', '', 1, 0, 1, 0, 2, 2, 4, 28, 9, 1, 'ASRS-1255', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-10', '', 1, 0, 1, 0, 2, 2, 4, 28, 10, 1, 'ASRS-0286', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-11', '', 1, 0, 1, 0, 2, 2, 4, 28, 11, 1, 'ASRS-1392', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-28-12', '', 1, 1, 0, 0, 2, 2, 4, 28, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-01', '', 1, 0, 1, 0, 2, 2, 4, 29, 1, 1, 'ASRS-0101', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-02', '', 1, 0, 1, 0, 2, 2, 4, 29, 2, 1, 'ASRS-0555', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-03', '', 1, 0, 1, 0, 2, 2, 4, 29, 3, 1, 'ASRS-0146', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-04', '', 1, 0, 1, 0, 2, 2, 4, 29, 4, 1, 'ASRS-0325', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-05', '', 1, 0, 1, 0, 2, 2, 4, 29, 5, 1, 'ASRS-0308', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-06', '', 1, 0, 1, 0, 2, 2, 4, 29, 6, 1, 'ASRS-0273', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-07', '', 1, 0, 1, 0, 2, 2, 4, 29, 7, 1, 'ASRS-0193', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-08', '', 1, 0, 1, 0, 2, 2, 4, 29, 8, 1, 'ASRS-0256', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-09', '', 1, 0, 1, 0, 2, 2, 4, 29, 9, 1, 'ASRS-0214', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-10', '', 1, 0, 1, 0, 2, 2, 4, 29, 10, 1, 'ASRS-1902', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-11', '', 1, 0, 1, 0, 2, 2, 4, 29, 11, 1, 'ASRS-1898', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-29-12', '', 1, 1, 0, 0, 2, 2, 4, 29, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-01', '', 1, 0, 1, 0, 2, 2, 4, 30, 1, 1, 'ASRS-0178', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-02', '', 1, 0, 1, 0, 2, 2, 4, 30, 2, 1, 'ASRS-1733', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-03', '', 1, 0, 1, 0, 2, 2, 4, 30, 3, 1, 'ASRS-0323', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-04', '', 1, 0, 1, 0, 2, 2, 4, 30, 4, 1, 'ASRS-1122', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-05', '', 1, 0, 1, 0, 2, 2, 4, 30, 5, 1, 'ASRS-0503', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-06', '', 1, 0, 1, 0, 2, 2, 4, 30, 6, 1, 'ASRS-0727', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-07', '', 1, 0, 1, 0, 2, 2, 4, 30, 7, 1, 'ASRS-1711', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-08', '', 1, 0, 1, 0, 2, 2, 4, 30, 8, 1, 'ASRS-0212', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-09', '', 1, 0, 1, 0, 2, 2, 4, 30, 9, 1, 'ASRS-0527', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-10', '', 1, 0, 1, 0, 2, 2, 4, 30, 10, 1, 'ASRS-1901', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-11', '', 1, 0, 1, 0, 2, 2, 4, 30, 11, 1, 'ASRS-0342', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-30-12', '', 1, 1, 0, 0, 2, 2, 4, 30, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-01', '', 1, 0, 1, 0, 2, 2, 4, 31, 1, 1, 'ASRS-0535', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-02', '', 1, 0, 1, 0, 2, 2, 4, 31, 2, 1, 'ASRS-0312', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-03', '', 1, 0, 1, 0, 2, 2, 4, 31, 3, 1, 'ASRS-0135', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-04', '', 1, 0, 1, 0, 2, 2, 4, 31, 4, 1, 'ASRS-0324', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-05', '', 1, 0, 1, 0, 2, 2, 4, 31, 5, 1, 'ASRS-0359', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-06', '', 1, 0, 1, 0, 2, 2, 4, 31, 6, 1, 'ASRS-0235', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-07', '', 1, 0, 1, 0, 2, 2, 4, 31, 7, 1, 'ASRS-0221', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-08', '', 1, 0, 1, 0, 2, 2, 4, 31, 8, 1, 'ASRS-0331', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-09', '', 1, 0, 1, 0, 2, 2, 4, 31, 9, 1, 'ASRS-0349', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-10', '', 1, 0, 1, 0, 2, 2, 4, 31, 10, 1, 'ASRS-0378', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-11', '', 1, 0, 0, 0, 2, 2, 4, 31, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-31-12', '', 1, 1, 0, 0, 2, 2, 4, 31, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-01', '', 1, 0, 1, 0, 2, 2, 4, 32, 1, 1, 'ASRS-1880', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-02', '', 1, 0, 1, 0, 2, 2, 4, 32, 2, 1, 'ASRS-0133', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-03', '', 1, 0, 1, 0, 2, 2, 4, 32, 3, 1, 'ASRS-0350', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-04', '', 1, 0, 1, 0, 2, 2, 4, 32, 4, 1, 'ASRS-1157', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-05', '', 1, 0, 1, 0, 2, 2, 4, 32, 5, 1, 'ASRS-0255', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-06', '', 1, 0, 1, 0, 2, 2, 4, 32, 6, 1, 'ASRS-0209', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-07', '', 1, 0, 1, 0, 2, 2, 4, 32, 7, 1, 'ASRS-0343', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-08', '', 1, 0, 1, 0, 2, 2, 4, 32, 8, 1, 'ASRS-0521', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-09', '', 1, 0, 1, 0, 2, 2, 4, 32, 9, 1, 'ASRS-1259', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-10', '', 1, 0, 0, 0, 2, 2, 4, 32, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-11', '', 1, 0, 0, 0, 2, 2, 4, 32, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-32-12', '', 1, 1, 0, 0, 2, 2, 4, 32, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-01', '', 1, 0, 1, 0, 2, 2, 4, 33, 1, 1, 'ASRS-0873', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-02', '', 1, 0, 1, 0, 2, 2, 4, 33, 2, 1, 'ASRS-1518', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-03', '', 1, 0, 1, 0, 2, 2, 4, 33, 3, 1, 'ASRS-0734', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-04', '', 1, 0, 1, 0, 2, 2, 4, 33, 4, 1, 'ASRS-0254', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-05', '', 1, 0, 1, 0, 2, 2, 4, 33, 5, 1, 'ASRS-0220', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-06', '', 1, 0, 1, 0, 2, 2, 4, 33, 6, 1, 'ASRS-0370', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-07', '', 1, 0, 1, 0, 2, 2, 4, 33, 7, 1, 'ASRS-1905', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-08', '', 1, 0, 1, 0, 2, 2, 4, 33, 8, 1, 'ASRS-1219', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-09', '', 1, 0, 0, 0, 2, 2, 4, 33, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-10', '', 1, 0, 0, 0, 2, 2, 4, 33, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-11', '', 1, 0, 0, 0, 2, 2, 4, 33, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-33-12', '', 1, 1, 0, 0, 2, 2, 4, 33, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-01', '', 1, 0, 1, 0, 2, 2, 4, 34, 1, 1, 'ASRS-1517', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-02', '', 1, 0, 1, 0, 2, 2, 4, 34, 2, 1, 'ASRS-0196', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-03', '', 1, 0, 1, 0, 2, 2, 4, 34, 3, 1, 'ASRS-0233', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-04', '', 1, 0, 1, 0, 2, 2, 4, 34, 4, 1, 'ASRS-0218', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-05', '', 1, 0, 1, 0, 2, 2, 4, 34, 5, 1, 'ASRS-0368', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-06', '', 1, 0, 0, 0, 2, 2, 4, 34, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-07', '', 1, 0, 1, 0, 2, 2, 4, 34, 7, 1, 'ASRS-1271', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-08', '', 1, 0, 0, 0, 2, 2, 4, 34, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-09', '', 1, 0, 0, 0, 2, 2, 4, 34, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-10', '', 1, 0, 0, 0, 2, 2, 4, 34, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-11', '', 1, 0, 0, 0, 2, 2, 4, 34, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-34-12', '', 1, 1, 0, 0, 2, 2, 4, 34, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-01', '', 1, 0, 1, 0, 2, 2, 4, 35, 1, 1, 'ASRS-0736', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-02', '', 1, 0, 1, 0, 2, 2, 4, 35, 2, 1, 'ASRS-0253', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-03', '', 1, 0, 1, 0, 2, 2, 4, 35, 3, 1, 'ASRS-0215', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-04', '', 1, 0, 1, 0, 2, 2, 4, 35, 4, 1, 'ASRS-0366', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-05', '', 1, 0, 1, 0, 2, 2, 4, 35, 5, 1, 'ASRS-1899', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-06', '', 1, 0, 1, 0, 2, 2, 4, 35, 6, 1, 'ASRS-1660', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-07', '', 1, 0, 0, 0, 2, 2, 4, 35, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-08', '', 1, 0, 0, 0, 2, 2, 4, 35, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-09', '', 1, 0, 0, 0, 2, 2, 4, 35, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-10', '', 1, 0, 0, 0, 2, 2, 4, 35, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-11', '', 1, 0, 0, 0, 2, 2, 4, 35, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-35-12', '', 1, 1, 0, 0, 2, 2, 4, 35, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-01', '', 1, 0, 1, 0, 2, 2, 4, 36, 1, 1, 'ASRS-0252', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-02', '', 1, 0, 1, 0, 2, 2, 4, 36, 2, 1, 'ASRS-0228', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-03', '', 1, 0, 1, 0, 2, 2, 4, 36, 3, 1, 'ASRS-1033', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-04', '', 1, 0, 0, 0, 2, 2, 4, 36, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-05', '', 1, 0, 1, 0, 2, 2, 4, 36, 5, 1, 'ASRS-0017', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-06', '', 1, 0, 0, 0, 2, 2, 4, 36, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-07', '', 1, 0, 0, 0, 2, 2, 4, 36, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-08', '', 1, 0, 0, 0, 2, 2, 4, 36, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-09', '', 1, 0, 0, 0, 2, 2, 4, 36, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-10', '', 1, 0, 0, 0, 2, 2, 4, 36, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-11', '', 1, 0, 0, 0, 2, 2, 4, 36, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-36-12', '', 1, 1, 0, 0, 2, 2, 4, 36, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-01', '', 1, 0, 1, 0, 2, 2, 4, 37, 1, 1, 'ASRS-0226', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-02', '', 1, 0, 1, 0, 2, 2, 4, 37, 2, 1, 'ASRS-0363', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-03', '', 1, 0, 0, 0, 2, 2, 4, 37, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-04', '', 1, 0, 1, 0, 2, 2, 4, 37, 4, 1, 'ASRS-1630', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-05', '', 1, 0, 0, 0, 2, 2, 4, 37, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-06', '', 1, 0, 0, 0, 2, 2, 4, 37, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-07', '', 1, 0, 0, 0, 2, 2, 4, 37, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-08', '', 1, 0, 0, 0, 2, 2, 4, 37, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-09', '', 1, 0, 0, 0, 2, 2, 4, 37, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-10', '', 1, 0, 0, 0, 2, 2, 4, 37, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-11', '', 1, 0, 0, 0, 2, 2, 4, 37, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-37-12', '', 1, 1, 0, 0, 2, 2, 4, 37, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-01', '', 1, 0, 1, 0, 2, 2, 4, 38, 1, 1, 'ASRS-0338', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-02', '', 1, 0, 0, 0, 2, 2, 4, 38, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-03', '', 1, 0, 1, 0, 2, 2, 4, 38, 3, 1, 'ASRS-0523', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-04', '', 1, 0, 0, 0, 2, 2, 4, 38, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-05', '', 1, 0, 0, 0, 2, 2, 4, 38, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-06', '', 1, 0, 0, 0, 2, 2, 4, 38, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-07', '', 1, 0, 0, 0, 2, 2, 4, 38, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-08', '', 1, 0, 0, 0, 2, 2, 4, 38, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-09', '', 1, 0, 0, 0, 2, 2, 4, 38, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-10', '', 1, 0, 0, 0, 2, 2, 4, 38, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-11', '', 1, 0, 0, 0, 2, 2, 4, 38, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-38-12', '', 1, 1, 0, 0, 2, 2, 4, 38, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-01', '', 1, 0, 0, 0, 2, 2, 4, 39, 1, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-02', '', 1, 0, 1, 0, 2, 2, 4, 39, 2, 1, 'ASRS-0362', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-03', '', 1, 0, 0, 0, 2, 2, 4, 39, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-04', '', 1, 0, 0, 0, 2, 2, 4, 39, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-05', '', 1, 0, 0, 0, 2, 2, 4, 39, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-06', '', 1, 0, 0, 0, 2, 2, 4, 39, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-07', '', 1, 0, 0, 0, 2, 2, 4, 39, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-08', '', 1, 0, 0, 0, 2, 2, 4, 39, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-09', '', 1, 0, 0, 0, 2, 2, 4, 39, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-10', '', 1, 0, 0, 0, 2, 2, 4, 39, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-11', '', 1, 0, 0, 0, 2, 2, 4, 39, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-39-12', '', 1, 1, 0, 0, 2, 2, 4, 39, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-01', '', 1, 0, 1, 0, 2, 2, 4, 40, 1, 1, 'ASRS-0901', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-02', '', 1, 0, 0, 0, 2, 2, 4, 40, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-03', '', 1, 0, 0, 0, 2, 2, 4, 40, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-04', '', 1, 0, 0, 0, 2, 2, 4, 40, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-05', '', 1, 0, 0, 0, 2, 2, 4, 40, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-06', '', 1, 0, 0, 0, 2, 2, 4, 40, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-07', '', 1, 0, 0, 0, 2, 2, 4, 40, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-08', '', 1, 0, 0, 0, 2, 2, 4, 40, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-09', '', 1, 0, 0, 0, 2, 2, 4, 40, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-10', '', 1, 0, 0, 0, 2, 2, 4, 40, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-11', '', 1, 0, 0, 0, 2, 2, 4, 40, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-40-12', '', 1, 1, 0, 0, 2, 2, 4, 40, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-01', '', 1, 0, 0, 0, 2, 2, 4, 41, 1, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-02', '', 1, 0, 0, 0, 2, 2, 4, 41, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-03', '', 1, 0, 0, 0, 2, 2, 4, 41, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-04', '', 1, 0, 0, 0, 2, 2, 4, 41, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-05', '', 1, 0, 0, 0, 2, 2, 4, 41, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-06', '', 1, 0, 0, 0, 2, 2, 4, 41, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-07', '', 1, 0, 0, 0, 2, 2, 4, 41, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-08', '', 1, 0, 0, 0, 2, 2, 4, 41, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-09', '', 1, 0, 0, 0, 2, 2, 4, 41, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-10', '', 1, 0, 0, 0, 2, 2, 4, 41, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-11', '', 1, 0, 0, 0, 2, 2, 4, 41, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-41-12', '', 1, 1, 0, 0, 2, 2, 4, 41, 12, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-01', '', 1, 0, 0, 0, 2, 2, 4, 42, 1, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-02', '', 1, 0, 0, 0, 2, 2, 4, 42, 2, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-03', '', 1, 0, 0, 0, 2, 2, 4, 42, 3, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-04', '', 1, 0, 0, 0, 2, 2, 4, 42, 4, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-05', '', 1, 0, 0, 0, 2, 2, 4, 42, 5, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-06', '', 1, 0, 0, 0, 2, 2, 4, 42, 6, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-07', '', 1, 0, 0, 0, 2, 2, 4, 42, 7, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-08', '', 1, 0, 0, 0, 2, 2, 4, 42, 8, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-09', '', 1, 0, 0, 0, 2, 2, 4, 42, 9, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-10', '', 1, 0, 0, 0, 2, 2, 4, 42, 10, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-11', '', 1, 0, 0, 0, 2, 2, 4, 42, 11, 1, '', 1, ''); -INSERT INTO `t_app_location` (`location_id`, `outer_id`, `location_type`, `is_lock`, `is_occupy`, `is_working`, `equipment_id`, `tunnel_id`, `l_row`, `l_col`, `l_layer`, `l_depth`, `vehicle_id`, `area_id`, `sub_area`) VALUES ('A04-42-12', '', 1, 1, 0, 0, 2, 2, 4, 42, 12, 1, '', 1, ''); -COMMIT; - --- ---------------------------- --- Table structure for t_app_outs --- ---------------------------- -DROP TABLE IF EXISTS `t_app_outs`; -CREATE TABLE `t_app_outs` ( - `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '料号', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '载具号', - `need_num` int NOT NULL COMMENT '需求数量', - `distribute_num` int DEFAULT NULL COMMENT '分配数量', - `pick_num` int DEFAULT NULL COMMENT '已拣数量', - `out_type` int NOT NULL COMMENT '出库类型', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '终点', - `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '呼叫用户', - `reason` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - `request_time` datetime 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_outs --- ---------------------------- -BEGIN; -INSERT INTO `t_app_outs` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1745222923178010000', '', '', 1, 1, 0, 1, 'P1', '管理员', '', '2025-04-21 16:08:43'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_outs_record --- ---------------------------- -DROP TABLE IF EXISTS `t_app_outs_record`; -CREATE TABLE `t_app_outs_record` ( - `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '料号', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '载具号', - `need_num` int NOT NULL COMMENT '需求数量', - `distribute_num` int DEFAULT NULL COMMENT '分配数量', - `pick_num` int DEFAULT NULL COMMENT '已拣数量', - `out_type` int NOT NULL COMMENT '出库类型', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '终点', - `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '呼叫用户', - `reason` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - `request_time` datetime 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_outs_record --- ---------------------------- -BEGIN; -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742615840324010000', '2935263', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742624891675010000', '2D6648', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742624891675010001', '8F9206', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742626925046010000', '2D6648', '', 700, 700, 700, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742626947486010000', '4D9986', '', 1000, 1000, 100, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742626970342010000', '7X0272', '', 500, 500, 100, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742626993710010000', '8F9206', '', 3485, 3485, 3485, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742627319376010000', '4D9986', '', 900, 900, 900, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742627342848010000', '7X0272', '', 400, 400, 400, 9, 'P3', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742780275649010000', '1061791', '', 5, 5, 5, 9, 'P2', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742780297791010000', '1488356', '', 11, 11, 11, 9, 'P2', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742780883339010000', '1007000', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742781999476010000', '1D4566', '', 50, 50, 50, 9, 'P3', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742789875666010000', '7X0352', '', 4, 4, 4, 9, 'P2', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742789904656010000', '6V1849', '', 8, 8, 8, 9, 'P2', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742865971681010000', '6J4568', '', 72, 72, 70, 9, 'P2', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869044259010000', '8C5176', '', 1, 1, 40, 9, 'P2', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869326790010000', '8C5176', '', 1, 1, 68, 9, 'P2', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869828444010000', '8C5176', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869980486010000', '6E1924', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869980486010001', '6E1925', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869980486010002', '6V9834', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869980486010003', '9F6705', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742869980486010004', '9S4183', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742870669376010000', '2191893', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742870669376010001', '3603693', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742870669376010002', '6E1923', '', 1, 1, 0, 5, 'R1', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742879816946010000', '4T0993', '', 14, 14, 14, 9, 'P3', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742879829961010000', '4T1021', '', 5, 5, 5, 9, 'P3', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742886308098010000', '1061791', '', 5, 5, 5, 9, 'P2', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742948964144010000', '1298222', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742948964144010001', '6E1923', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742948964144010002', '6J4568', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742948964144010003', '6V5230', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742958533146010000', '1061791', '', 1, 1, 4, 9, 'P2', '管理员', '返工工单', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1742973550973010000', '8C3206', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010000', '9S4183', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010001', '8C3206', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010002', '6V0852', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010003', '2521631', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010004', '6E1923', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124775109010005', '6J4568', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124883930010000', '2935263', '', 72, 72, 72, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124897981010000', '7B8194', '', 8, 8, 8, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124909449010000', '9J0477', '', 8, 8, 8, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743124921572010000', '6J4694', '', 8, 8, 8, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743125601002010000', '1061791', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743125601002010001', '9S4185', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743125601002010002', '5H4019', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743125601002010003', '9S4189', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743125601002010004', '1488356', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743129097835010000', '', '', 6, 6, 0, 1, 'P3', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743133430936010000', '8C3206', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743133775512010000', '8C3206', '', 2, 2, 2, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743134417213010000', '8T8987', '', 1, 1, 1, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743134539359010000', '', '', 10, 10, 0, 1, 'P3', '管理员', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743135193270010000', '8C3206', '', 200, 200, 200, 9, 'P2', '管理员', '缺料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142633540010000', '6Y2522', '', 132, 132, 132, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142758543010000', '4F4097', '', 275, 275, 275, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142811080010000', '8T4776', '', 313, 313, 313, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142842247010000', '8P0346', '', 235, 235, 235, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142882799010000', '2P5755', '', 117, 117, 117, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743142905391010000', '6Y2584', '', 279, 279, 279, 9, 'P2', '管理员', '补料', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743168356679010000', '1007000', '', 1, 1, 0, 5, 'R1', 'clc', '', NULL); -INSERT INTO `t_app_outs_record` (`task_id`, `goods_id`, `vehicle_id`, `need_num`, `distribute_num`, `pick_num`, `out_type`, `destination`, `user_name`, `reason`, `request_time`) VALUES ('1743406239084010000', '1061791', '', 4, 4, 4, 9, 'P3', '管理员', '补料', NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_pick_plan --- ---------------------------- -DROP TABLE IF EXISTS `t_app_pick_plan`; -CREATE TABLE `t_app_pick_plan` ( - `plan_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键', - `stand_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL, - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料号', - `plan_pick_qty` int NOT NULL COMMENT '计划拣选数量', - `pick_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '拣选类型', - `work_index` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工作序号/出库单号', - PRIMARY KEY (`plan_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_pick_plan --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_app_pick_task --- ---------------------------- -DROP TABLE IF EXISTS `t_app_pick_task`; -CREATE TABLE `t_app_pick_task` ( - `pick_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '拣选任务号', - `pick_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '拣选终点', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `pick_status` int NOT NULL COMMENT '任务状态', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `send_time` datetime DEFAULT NULL COMMENT '下发时间', - `arrive_time` datetime DEFAULT NULL COMMENT '到达时间', - `leave_time` datetime DEFAULT NULL COMMENT '离开时间', - PRIMARY KEY (`pick_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_pick_task --- ---------------------------- -BEGIN; -INSERT INTO `t_app_pick_task` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1744535455422010000', 'P1', 'ASRS-0326', 3, '2025-04-13 17:10:55', '2025-04-20 15:39:14', '2025-04-22 15:39:18', '2025-04-23 15:39:22'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_pick_task_bak --- ---------------------------- -DROP TABLE IF EXISTS `t_app_pick_task_bak`; -CREATE TABLE `t_app_pick_task_bak` ( - `pick_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '拣选任务号', - `pick_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '拣选终点', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `pick_status` int NOT NULL COMMENT '任务状态', - `create_time` datetime DEFAULT NULL COMMENT '创建时间', - `send_time` datetime DEFAULT NULL COMMENT '下发时间', - `arrive_time` datetime DEFAULT NULL COMMENT '到达时间', - `leave_time` datetime DEFAULT NULL COMMENT '离开时间', - PRIMARY KEY (`pick_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_pick_task_bak --- ---------------------------- -BEGIN; -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742626925411010000', 'P3', 'ASRS-0371', 4, '2025-03-22 15:02:05', '2025-03-22 15:02:47', '2025-03-22 15:03:29', '2025-03-22 15:04:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742626948412010002', 'P3', 'ASRS-0362', 4, '2025-03-22 15:02:28', '2025-03-22 15:03:15', '2025-03-22 15:04:28', '2025-03-22 15:04:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742626970410010002', 'P3', 'ASRS-0270', 4, '2025-03-22 15:02:50', '2025-03-22 15:03:43', '2025-03-22 15:04:51', '2025-03-22 15:05:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742626995409010002', 'P3', 'ASRS-0348', 4, '2025-03-22 15:03:15', '2025-03-22 15:04:08', '2025-03-22 15:05:15', '2025-03-22 15:06:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742627023413010000', 'P3', 'ASRS-0347', 4, '2025-03-22 15:03:43', '2025-03-22 15:04:36', '2025-03-22 15:06:27', '2025-03-22 15:06:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742627048411010002', 'P3', 'ASRS-0378', 4, '2025-03-22 15:04:08', '2025-03-22 15:04:59', '2025-03-22 15:06:56', '2025-03-22 15:07:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742627319410010002', 'P3', 'ASRS-0348', 4, '2025-03-22 15:08:39', '2025-03-22 15:09:21', '2025-03-22 15:10:03', '2025-03-22 15:10:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742627343410010002', 'P3', 'ASRS-0347', 4, '2025-03-22 15:09:03', '2025-03-22 15:09:44', '2025-03-22 15:10:35', '2025-03-22 15:11:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775438409010002', 'P3', 'ASRS-0315', 4, '2025-03-24 08:17:18', '2025-03-24 08:18:07', '2025-03-24 08:18:44', '2025-03-24 08:24:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775438409010005', 'P3', 'ASRS-0332', 4, '2025-03-24 08:17:18', '2025-03-24 08:18:05', '2025-03-24 08:24:58', '2025-03-24 08:25:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775485408010002', 'P3', 'ASRS-0313', 4, '2025-03-24 08:18:05', '2025-03-24 08:18:59', '2025-03-24 08:25:33', '2025-03-24 08:25:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775487416010002', 'P3', 'ASRS-0350', 4, '2025-03-24 08:18:07', '2025-03-24 08:19:01', '2025-03-24 08:25:05', '2025-03-24 08:25:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775539420010002', 'P3', 'ASRS-0304', 4, '2025-03-24 08:18:59', '2025-03-24 08:19:50', '2025-03-24 08:30:14', '2025-03-24 08:34:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775541422010003', 'P3', 'ASRS-0334', 4, '2025-03-24 08:19:01', '2025-03-24 08:19:54', '2025-03-24 08:26:28', '2025-03-24 08:30:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775590420010002', 'P3', 'ASRS-0302', 4, '2025-03-24 08:19:50', '2025-03-24 08:20:45', '2025-03-24 08:25:58', '2025-03-24 08:26:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775645407010002', 'P3', 'ASRS-0388', 4, '2025-03-24 08:20:45', '2025-03-24 08:21:41', '2025-03-24 08:34:29', '2025-03-24 08:34:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742775892409010000', 'P3', 'ASRS-0520', 4, '2025-03-24 08:24:52', '2025-03-24 08:25:45', '2025-03-24 08:35:01', '2025-03-24 08:35:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776528410010002', 'P3', 'ASRS-0324', 4, '2025-03-24 08:35:28', '2025-03-24 08:36:36', '2025-03-24 08:37:18', '2025-03-24 08:38:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776528410010005', 'P3', 'ASRS-0329', 4, '2025-03-24 08:35:28', '2025-03-24 08:36:58', '2025-03-24 08:38:11', '2025-03-24 08:38:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776596408010002', 'P3', 'ASRS-0340', 4, '2025-03-24 08:36:36', '2025-03-24 08:37:56', '2025-03-24 08:39:00', '2025-03-24 08:39:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776618409010002', 'P3', 'ASRS-0305', 4, '2025-03-24 08:36:58', '2025-03-24 08:37:49', '2025-03-24 08:38:34', '2025-03-24 08:38:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776676422010003', 'P3', 'ASRS-1027', 4, '2025-03-24 08:37:56', '2025-03-24 08:38:50', '2025-03-24 08:39:32', '2025-03-24 08:40:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776838408010000', 'P3', 'ASRS-0306', 4, '2025-03-24 08:40:38', '2025-03-24 08:41:26', '2025-03-24 08:46:22', '2025-03-24 08:47:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776838408010003', 'P3', 'ASRS-0314', 4, '2025-03-24 08:40:38', '2025-03-24 08:41:24', '2025-03-24 08:42:02', '2025-03-24 08:46:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776884415010002', 'P3', 'ASRS-0392', 4, '2025-03-24 08:41:24', '2025-03-24 08:42:17', '2025-03-24 08:47:42', '2025-03-24 08:48:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776886409010002', 'P3', 'ASRS-0333', 4, '2025-03-24 08:41:26', '2025-03-24 08:42:44', '2025-03-24 08:48:19', '2025-03-24 08:49:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742776964408010002', 'P3', 'ASRS-1902', 4, '2025-03-24 08:42:44', '2025-03-24 08:43:37', '2025-03-24 08:50:43', '2025-03-24 08:51:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777017415010002', 'P3', 'ASRS-1526', 4, '2025-03-24 08:43:37', '2025-03-24 08:44:30', '2025-03-24 08:49:54', '2025-03-24 08:50:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777483406010002', 'P3', 'ASRS-0330', 4, '2025-03-24 08:51:23', '2025-03-24 08:52:09', '2025-03-24 08:52:51', '2025-03-24 08:54:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777529406010002', 'P3', 'ASRS-0328', 4, '2025-03-24 08:52:09', '2025-03-24 08:53:29', '2025-03-24 08:54:34', '2025-03-24 08:54:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777698407010002', 'P3', 'ASRS-1529', 4, '2025-03-24 08:54:58', '2025-03-24 08:55:42', '2025-03-24 08:56:24', '2025-03-24 08:57:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777838421010002', 'P3', 'ASRS-0316', 4, '2025-03-24 08:57:18', '2025-03-24 08:58:03', '2025-03-24 08:58:42', '2025-03-24 08:58:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777883407010002', 'P3', 'ASRS-0331', 4, '2025-03-24 08:58:03', '2025-03-24 08:58:54', '2025-03-24 08:59:34', '2025-03-24 09:00:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742777934407010002', 'P3', 'ASRS-0338', 4, '2025-03-24 08:58:54', '2025-03-24 08:59:45', '2025-03-24 09:00:25', '2025-03-24 09:00:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778038407010002', 'P3', 'ASRS-0327', 4, '2025-03-24 09:00:38', '2025-03-24 09:01:22', '2025-03-24 09:02:01', '2025-03-24 09:02:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778038407010005', 'P3', 'ASRS-0274', 4, '2025-03-24 09:00:38', '2025-03-24 09:01:24', '2025-03-24 09:02:43', '2025-03-24 09:02:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778178407010002', 'P3', 'ASRS-0528', 4, '2025-03-24 09:02:58', '2025-03-24 09:03:43', '2025-03-24 09:04:22', '2025-03-24 09:04:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778357408010002', 'P3', 'ASRS-0528', 4, '2025-03-24 09:05:57', '2025-03-24 09:06:39', '2025-03-24 09:07:21', '2025-03-24 09:07:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778448406010002', 'P3', 'ASRS-1524', 4, '2025-03-24 09:07:28', '2025-03-24 09:08:15', '2025-03-24 09:08:55', '2025-03-24 09:09:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778495406010002', 'P3', 'ASRS-0522', 4, '2025-03-24 09:08:15', '2025-03-24 09:09:09', '2025-03-24 09:09:48', '2025-03-24 09:10:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778603408010002', 'P3', 'ASRS-0303', 4, '2025-03-24 09:10:03', '2025-03-24 09:10:54', '2025-03-24 09:11:33', '2025-03-24 09:11:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778808407010002', 'P3', 'ASRS-0315', 4, '2025-03-24 09:13:28', '2025-03-24 09:14:23', '2025-03-24 09:17:11', '2025-03-24 09:18:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778808407010005', 'P3', 'ASRS-0332', 4, '2025-03-24 09:13:28', '2025-03-24 09:14:12', '2025-03-24 09:14:51', '2025-03-24 09:17:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778852415010002', 'P3', 'ASRS-0313', 4, '2025-03-24 09:14:12', '2025-03-24 09:15:04', '2025-03-24 09:18:08', '2025-03-24 09:18:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778863410010000', 'P3', 'ASRS-0304', 4, '2025-03-24 09:14:23', '2025-03-24 09:15:18', '2025-03-24 09:18:38', '2025-03-24 09:19:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778904420010002', 'P3', 'ASRS-0388', 4, '2025-03-24 09:15:04', '2025-03-24 09:15:58', '2025-03-24 09:20:41', '2025-03-24 09:22:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778918410010002', 'P3', 'ASRS-0302', 4, '2025-03-24 09:15:18', '2025-03-24 09:16:10', '2025-03-24 09:19:20', '2025-03-24 09:19:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742778970411010001', 'P3', 'ASRS-0350', 4, '2025-03-24 09:16:10', '2025-03-24 09:17:05', '2025-03-24 09:20:03', '2025-03-24 09:20:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779025411010001', 'P3', 'ASRS-0520', 4, '2025-03-24 09:17:05', '2025-03-24 09:17:57', '2025-03-24 09:22:35', '2025-03-24 09:23:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779077410010002', 'P3', 'ASRS-0334', 4, '2025-03-24 09:17:57', '2025-03-24 09:19:19', '2025-03-24 09:23:08', '2025-03-24 09:24:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779157407010002', 'P3', 'ASRS-0315', 4, '2025-03-24 09:19:17', '2025-03-24 09:19:59', '2025-03-24 09:24:50', '2025-03-24 09:28:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779708407010002', 'P3', 'ASRS-0324', 4, '2025-03-24 09:28:28', '2025-03-24 09:29:16', '2025-03-24 09:31:31', '2025-03-24 09:32:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779708407010005', 'P3', 'ASRS-0329', 4, '2025-03-24 09:28:28', '2025-03-24 09:29:14', '2025-03-24 09:29:53', '2025-03-24 09:31:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779754410010002', 'P3', 'ASRS-0340', 4, '2025-03-24 09:29:14', '2025-03-24 09:30:04', '2025-03-24 09:32:14', '2025-03-24 09:32:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779756407010002', 'P3', 'ASRS-0305', 4, '2025-03-24 09:29:16', '2025-03-24 09:30:37', '2025-03-24 09:32:41', '2025-03-24 09:33:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779837410010002', 'P3', 'ASRS-1027', 4, '2025-03-24 09:30:37', '2025-03-24 09:31:32', '2025-03-24 09:33:16', '2025-03-24 09:42:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742779892407010002', 'P3', 'ASRS-1529', 4, '2025-03-24 09:31:32', '2025-03-24 09:32:26', '2025-03-24 09:42:20', '2025-03-24 09:43:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742780276446010001', 'P2', 'ASRS-0301', 4, '2025-03-24 09:37:56', '2025-03-24 09:38:43', '2025-03-24 09:39:32', '2025-03-24 09:40:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742780298433010002', 'P2', 'ASRS-0274', 4, '2025-03-24 09:38:18', '2025-03-24 09:39:01', '2025-03-24 09:40:39', '2025-03-24 09:41:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742780613408010002', 'P3', 'ASRS-1027', 4, '2025-03-24 09:43:33', '2025-03-24 09:45:04', '2025-03-24 09:45:46', '2025-03-24 09:50:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781018410010000', 'P3', 'ASRS-0306', 4, '2025-03-24 09:50:18', '2025-03-24 09:51:12', '2025-03-24 09:52:56', '2025-03-24 09:55:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781018411010002', 'P3', 'ASRS-0392', 4, '2025-03-24 09:50:18', '2025-03-24 09:51:02', '2025-03-24 09:51:41', '2025-03-24 09:52:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781062415010002', 'P3', 'ASRS-1526', 4, '2025-03-24 09:51:02', '2025-03-24 09:51:55', '2025-03-24 09:55:10', '2025-03-24 09:58:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781072409010002', 'P3', 'ASRS-0333', 4, '2025-03-24 09:51:12', '2025-03-24 09:52:30', '2025-03-24 09:58:14', '2025-03-24 09:58:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781150415010002', 'P3', 'ASRS-0314', 4, '2025-03-24 09:52:30', '2025-03-24 09:53:21', '2025-03-24 09:59:01', '2025-03-24 09:59:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781201409010002', 'P3', 'ASRS-1902', 4, '2025-03-24 09:53:21', '2025-03-24 09:54:14', '2025-03-24 09:59:47', '2025-03-24 10:00:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781254419010002', 'P3', 'ASRS-0528', 4, '2025-03-24 09:54:14', '2025-03-24 09:55:35', '2025-03-24 10:00:36', '2025-03-24 10:01:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781703408010002', 'P3', 'ASRS-0330', 4, '2025-03-24 10:01:43', '2025-03-24 10:02:31', '2025-03-24 10:04:33', '2025-03-24 10:04:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781703408010005', 'P3', 'ASRS-0328', 4, '2025-03-24 10:01:43', '2025-03-24 10:02:34', '2025-03-24 10:03:13', '2025-03-24 10:04:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781898408010002', 'P3', 'ASRS-0316', 4, '2025-03-24 10:04:58', '2025-03-24 10:05:46', '2025-03-24 10:07:38', '2025-03-24 10:08:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781898409010002', 'P3', 'ASRS-0338', 4, '2025-03-24 10:04:58', '2025-03-24 10:05:50', '2025-03-24 10:06:29', '2025-03-24 10:07:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742781946410010002', 'P3', 'ASRS-0331', 4, '2025-03-24 10:05:46', '2025-03-24 10:07:07', '2025-03-24 10:08:17', '2025-03-24 10:09:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782026438010001', 'P3', 'ASRS-0339', 4, '2025-03-24 10:07:06', '2025-03-24 10:07:59', '2025-03-24 10:10:02', '2025-03-24 10:11:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782265407010002', 'P3', 'ASRS-0327', 4, '2025-03-24 10:11:05', '2025-03-24 10:12:33', '2025-03-24 10:13:39', '2025-03-24 10:14:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782265408010002', 'P3', 'ASRS-0348', 4, '2025-03-24 10:11:05', '2025-03-24 10:11:48', '2025-03-24 10:12:27', '2025-03-24 10:13:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782478408010001', 'P3', 'ASRS-0337', 4, '2025-03-24 10:14:38', '2025-03-24 10:15:31', '2025-03-24 10:16:13', '2025-03-24 10:16:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782593407010002', 'P3', 'ASRS-1524', 4, '2025-03-24 10:16:33', '2025-03-24 10:17:22', '2025-03-24 10:18:49', '2025-03-24 10:19:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782593407010005', 'P3', 'ASRS-0522', 4, '2025-03-24 10:16:33', '2025-03-24 10:17:20', '2025-03-24 10:17:59', '2025-03-24 10:18:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742782753415010001', 'P3', 'ASRS-0303', 4, '2025-03-24 10:19:13', '2025-03-24 10:20:01', '2025-03-24 10:20:43', '2025-03-24 10:21:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742789876415010002', 'P2', 'ASRS-0376', 4, '2025-03-24 12:17:56', '2025-03-24 12:18:41', '2025-03-24 12:19:27', '2025-03-24 12:19:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742789905412010002', 'P2', 'ASRS-0364', 4, '2025-03-24 12:18:25', '2025-03-24 12:19:11', '2025-03-24 12:20:00', '2025-03-24 12:20:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794048408010002', 'P3', 'ASRS-0271', 4, '2025-03-24 13:27:28', '2025-03-24 13:28:12', '2025-03-24 13:29:48', '2025-03-24 13:30:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794048409010002', 'P3', 'ASRS-0350', 4, '2025-03-24 13:27:28', '2025-03-24 13:28:19', '2025-03-24 13:29:12', '2025-03-24 13:29:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794223407010002', 'P3', 'ASRS-0298', 4, '2025-03-24 13:30:23', '2025-03-24 13:31:41', '2025-03-24 13:33:04', '2025-03-24 13:33:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794223407010005', 'P3', 'ASRS-0386', 4, '2025-03-24 13:30:23', '2025-03-24 13:31:17', '2025-03-24 13:31:55', '2025-03-24 13:32:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794478407010002', 'P3', 'ASRS-0271', 4, '2025-03-24 13:34:38', '2025-03-24 13:35:33', '2025-03-24 13:36:40', '2025-03-24 13:37:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794478407010005', 'P3', 'ASRS-0350', 4, '2025-03-24 13:34:38', '2025-03-24 13:35:24', '2025-03-24 13:36:07', '2025-03-24 13:36:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794638408010002', 'P3', 'ASRS-0298', 4, '2025-03-24 13:37:18', '2025-03-24 13:38:09', '2025-03-24 13:38:48', '2025-03-24 13:39:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794638408010005', 'P3', 'ASRS-0386', 4, '2025-03-24 13:37:18', '2025-03-24 13:38:34', '2025-03-24 13:39:34', '2025-03-24 13:40:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794913409010002', 'P3', 'ASRS-0271', 4, '2025-03-24 13:41:53', '2025-03-24 13:42:33', '2025-03-24 13:43:12', '2025-03-24 13:44:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742794913409010005', 'P3', 'ASRS-0350', 4, '2025-03-24 13:41:53', '2025-03-24 13:42:38', '2025-03-24 13:44:10', '2025-03-24 13:44:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795093411010000', 'P3', 'ASRS-0298', 4, '2025-03-24 13:44:53', '2025-03-24 13:46:04', '2025-03-24 13:46:46', '2025-03-24 13:47:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795164407010002', 'P3', 'ASRS-0386', 4, '2025-03-24 13:46:04', '2025-03-24 13:46:58', '2025-03-24 13:47:40', '2025-03-24 13:48:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795333406010002', 'P3', 'ASRS-0271', 4, '2025-03-24 13:48:53', '2025-03-24 13:50:22', '2025-03-24 13:51:14', '2025-03-24 13:51:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795333406010005', 'P3', 'ASRS-0350', 4, '2025-03-24 13:48:53', '2025-03-24 13:49:33', '2025-03-24 13:50:12', '2025-03-24 13:51:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795503408010002', 'P3', 'ASRS-0298', 4, '2025-03-24 13:51:43', '2025-03-24 13:52:37', '2025-03-24 13:53:19', '2025-03-24 13:54:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795557407010002', 'P3', 'ASRS-0386', 4, '2025-03-24 13:52:37', '2025-03-24 13:53:54', '2025-03-24 13:54:36', '2025-03-24 13:55:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742795798409010002', 'P3', 'ASRS-0350', 4, '2025-03-24 13:56:38', '2025-03-24 13:57:28', '2025-03-24 13:58:10', '2025-03-24 14:05:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742796358406010002', 'P3', 'ASRS-0386', 4, '2025-03-24 14:05:58', '2025-03-24 14:06:52', '2025-03-24 14:07:34', '2025-03-24 14:12:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742863606632010000', 'P3', 'ASRS-0350', 4, '2025-03-25 08:46:47', '2025-03-25 08:48:19', '2025-03-25 08:49:02', '2025-03-25 08:51:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742863881609010000', 'P3', 'ASRS-0386', 4, '2025-03-25 08:51:22', '2025-03-25 08:52:15', '2025-03-25 08:52:57', '2025-03-25 08:53:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864041608010002', 'P3', 'ASRS-0271', 4, '2025-03-25 08:54:02', '2025-03-25 08:54:41', '2025-03-25 08:55:20', '2025-03-25 08:55:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864041608010005', 'P3', 'ASRS-0350', 4, '2025-03-25 08:54:02', '2025-03-25 08:55:21', '2025-03-25 08:56:03', '2025-03-25 08:56:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864196610010002', 'P3', 'ASRS-0298', 4, '2025-03-25 08:56:37', '2025-03-25 08:57:49', '2025-03-25 08:58:30', '2025-03-25 08:58:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864268608010002', 'P3', 'ASRS-0386', 4, '2025-03-25 08:57:49', '2025-03-25 08:58:42', '2025-03-25 08:59:24', '2025-03-25 08:59:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864466608010002', 'P3', 'ASRS-0271', 4, '2025-03-25 09:01:07', '2025-03-25 09:01:59', '2025-03-25 09:02:48', '2025-03-25 09:03:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864466608010005', 'P3', 'ASRS-0350', 4, '2025-03-25 09:01:07', '2025-03-25 09:01:48', '2025-03-25 09:02:26', '2025-03-25 09:02:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864591614010002', 'P3', 'ASRS-0298', 4, '2025-03-25 09:03:12', '2025-03-25 09:04:05', '2025-03-25 09:04:47', '2025-03-25 09:05:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864644607010002', 'P3', 'ASRS-0386', 4, '2025-03-25 09:04:05', '2025-03-25 09:05:22', '2025-03-25 09:06:04', '2025-03-25 09:06:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864851603010002', 'P3', 'ASRS-0271', 4, '2025-03-25 09:07:32', '2025-03-25 09:08:11', '2025-03-25 09:08:50', '2025-03-25 09:09:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864851603010005', 'P3', 'ASRS-0350', 4, '2025-03-25 09:07:32', '2025-03-25 09:08:35', '2025-03-25 09:09:26', '2025-03-25 09:09:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742864991607010002', 'P3', 'ASRS-0298', 4, '2025-03-25 09:09:52', '2025-03-25 09:10:45', '2025-03-25 09:11:27', '2025-03-25 09:12:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742865044621010001', 'P3', 'ASRS-0386', 4, '2025-03-25 09:10:45', '2025-03-25 09:12:02', '2025-03-25 09:12:47', '2025-03-25 09:13:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742865962606010002', 'P3', 'ASRS-1531', 4, '2025-03-25 09:26:03', '2025-03-25 09:26:44', '2025-03-25 09:27:26', '2025-03-25 09:27:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866003612010005', 'P2', 'ASRS-1180', 4, '2025-03-25 09:26:44', '2025-03-25 09:27:28', '2025-03-25 09:28:14', '2025-03-25 09:28:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866106606010002', 'P3', 'ASRS-0271', 4, '2025-03-25 09:28:27', '2025-03-25 09:29:45', '2025-03-25 09:30:27', '2025-03-25 09:30:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866106607010002', 'P3', 'ASRS-0350', 4, '2025-03-25 09:28:27', '2025-03-25 09:29:17', '2025-03-25 09:29:56', '2025-03-25 09:30:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866251612010002', 'P3', 'ASRS-1531', 4, '2025-03-25 09:30:52', '2025-03-25 09:31:45', '2025-03-25 09:32:27', '2025-03-25 09:33:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866615607010002', 'P3', 'ASRS-0298', 4, '2025-03-25 09:36:56', '2025-03-25 09:37:37', '2025-03-25 09:38:19', '2025-03-25 09:39:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742866946607010002', 'P3', 'ASRS-0386', 4, '2025-03-25 09:42:27', '2025-03-25 09:43:08', '2025-03-25 09:43:50', '2025-03-25 09:44:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867256606010002', 'P3', 'ASRS-0304', 4, '2025-03-25 09:47:37', '2025-03-25 09:48:22', '2025-03-25 09:49:00', '2025-03-25 09:49:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867256606010005', 'P3', 'ASRS-0340', 4, '2025-03-25 09:47:37', '2025-03-25 09:48:25', '2025-03-25 09:50:01', '2025-03-25 09:50:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867301606010002', 'P3', 'ASRS-0299', 4, '2025-03-25 09:48:22', '2025-03-25 09:49:15', '2025-03-25 09:50:25', '2025-03-25 09:50:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867354607010002', 'P3', 'ASRS-0250', 4, '2025-03-25 09:49:15', '2025-03-25 09:50:08', '2025-03-25 09:51:00', '2025-03-25 09:51:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867491607010002', 'P3', 'ASRS-0297', 4, '2025-03-25 09:51:32', '2025-03-25 09:53:04', '2025-03-25 09:54:26', '2025-03-25 09:54:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867491607010005', 'P3', 'ASRS-1189', 4, '2025-03-25 09:51:32', '2025-03-25 09:52:17', '2025-03-25 09:52:56', '2025-03-25 09:54:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867686603010002', 'P3', 'ASRS-0340', 4, '2025-03-25 09:54:47', '2025-03-25 09:55:31', '2025-03-25 09:56:10', '2025-03-25 09:56:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742867686603010005', 'P3', 'ASRS-1531', 4, '2025-03-25 09:54:47', '2025-03-25 09:55:39', '2025-03-25 09:56:58', '2025-03-25 09:57:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742868202612010002', 'P2', 'ASRS-1529', 4, '2025-03-25 10:03:23', '2025-03-25 10:04:08', '2025-03-25 10:04:54', '2025-03-25 10:08:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742868778614010002', 'P2', 'ASRS-0303', 4, '2025-03-25 10:12:59', '2025-03-25 10:13:45', '2025-03-25 10:14:34', '2025-03-25 10:14:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742868944623010002', 'P2', 'ASRS-0329', 4, '2025-03-25 10:15:45', '2025-03-25 10:16:35', '2025-03-25 10:17:24', '2025-03-25 10:17:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742868994609010002', 'P2', 'ASRS-0331', 4, '2025-03-25 10:16:35', '2025-03-25 10:17:27', '2025-03-25 10:18:16', '2025-03-25 10:18:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869006611010000', 'P2', 'ASRS-0330', 4, '2025-03-25 10:16:47', '2025-03-25 10:17:39', '2025-03-25 10:18:33', '2025-03-25 10:18:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869046614010002', 'P2', 'ASRS-0328', 4, '2025-03-25 10:17:27', '2025-03-25 10:18:20', '2025-03-25 10:19:10', '2025-03-25 10:20:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869058612010002', 'P2', 'ASRS-0273', 4, '2025-03-25 10:17:39', '2025-03-25 10:18:29', '2025-03-25 10:20:50', '2025-03-25 10:21:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869099613010002', 'P2', 'ASRS-0327', 4, '2025-03-25 10:18:20', '2025-03-25 10:19:15', '2025-03-25 10:21:17', '2025-03-25 10:21:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869327614010002', 'P2', 'ASRS-0272', 4, '2025-03-25 10:22:08', '2025-03-25 10:22:59', '2025-03-25 10:23:47', '2025-03-25 10:24:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869378610010002', 'P2', 'ASRS-0314', 4, '2025-03-25 10:22:59', '2025-03-25 10:23:51', '2025-03-25 10:24:39', '2025-03-25 10:25:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742869430610010002', 'P2', 'ASRS-0302', 4, '2025-03-25 10:23:51', '2025-03-25 10:24:42', '2025-03-25 10:25:31', '2025-03-25 10:25:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742879817614010002', 'P3', 'ASRS-0341', 4, '2025-03-25 13:16:58', '2025-03-25 13:17:45', '2025-03-25 13:18:23', '2025-03-25 13:18:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742879830615010002', 'P3', 'ASRS-0346', 4, '2025-03-25 13:17:11', '2025-03-25 13:24:43', '2025-03-25 13:25:26', '2025-03-25 13:26:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742882916609010002', 'P3', 'ASRS-0315', 4, '2025-03-25 14:08:37', '2025-03-25 14:09:23', '2025-03-25 14:14:02', '2025-03-25 14:14:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742882916610010002', 'P3', 'ASRS-0520', 4, '2025-03-25 14:08:37', '2025-03-25 14:09:21', '2025-03-25 14:10:00', '2025-03-25 14:13:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742882962607010002', 'P3', 'ASRS-0332', 4, '2025-03-25 14:09:23', '2025-03-25 14:10:15', '2025-03-25 14:14:25', '2025-03-25 14:14:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883014608010000', 'P3', 'ASRS-0313', 4, '2025-03-25 14:10:15', '2025-03-25 14:11:09', '2025-03-25 14:14:36', '2025-03-25 14:14:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883068616010002', 'P3', 'ASRS-0304', 4, '2025-03-25 14:11:09', '2025-03-25 14:12:03', '2025-03-25 14:15:15', '2025-03-25 14:15:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883122607010002', 'P3', 'ASRS-0334', 4, '2025-03-25 14:12:03', '2025-03-25 14:12:58', '2025-03-25 14:14:51', '2025-03-25 14:15:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883331609010001', 'P3', 'ASRS-0388', 4, '2025-03-25 14:15:32', '2025-03-25 14:16:44', '2025-03-25 14:17:26', '2025-03-25 14:17:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883403613010002', 'P3', 'ASRS-1436', 4, '2025-03-25 14:16:44', '2025-03-25 14:18:04', '2025-03-25 14:18:46', '2025-03-25 14:19:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883483612010002', 'P3', 'ASRS-0350', 4, '2025-03-25 14:18:04', '2025-03-25 14:18:56', '2025-03-25 14:19:39', '2025-03-25 14:19:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883535607010002', 'P3', 'ASRS-0334', 4, '2025-03-25 14:18:56', '2025-03-25 14:20:16', '2025-03-25 14:20:58', '2025-03-25 14:21:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883676607010002', 'P3', 'ASRS-0305', 4, '2025-03-25 14:21:17', '2025-03-25 14:22:04', '2025-03-25 14:22:42', '2025-03-25 14:22:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883676607010005', 'P3', 'ASRS-0340', 4, '2025-03-25 14:21:17', '2025-03-25 14:22:02', '2025-03-25 14:22:59', '2025-03-25 14:23:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883721609010002', 'P3', 'ASRS-1027', 4, '2025-03-25 14:22:02', '2025-03-25 14:23:23', '2025-03-25 14:24:05', '2025-03-25 14:24:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883802609010002', 'P3', 'ASRS-1032', 4, '2025-03-25 14:23:23', '2025-03-25 14:24:15', '2025-03-25 14:24:58', '2025-03-25 14:25:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883911609010002', 'P3', 'ASRS-0324', 4, '2025-03-25 14:25:12', '2025-03-25 14:26:21', '2025-03-25 14:27:00', '2025-03-25 14:27:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883911609010005', 'P3', 'ASRS-0392', 4, '2025-03-25 14:25:12', '2025-03-25 14:25:59', '2025-03-25 14:26:41', '2025-03-25 14:26:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883958608010002', 'P3', 'ASRS-1526', 4, '2025-03-25 14:25:59', '2025-03-25 14:27:16', '2025-03-25 14:28:09', '2025-03-25 14:28:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742883980606010002', 'P3', 'ASRS-0333', 4, '2025-03-25 14:26:21', '2025-03-25 14:27:14', '2025-03-25 14:27:52', '2025-03-25 14:28:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884033607010002', 'P3', 'ASRS-1902', 4, '2025-03-25 14:27:14', '2025-03-25 14:28:06', '2025-03-25 14:28:45', '2025-03-25 14:29:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884035608010002', 'P3', 'ASRS-1529', 4, '2025-03-25 14:27:16', '2025-03-25 14:28:10', '2025-03-25 14:29:07', '2025-03-25 14:29:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884085610010001', 'P3', 'ASRS-1027', 4, '2025-03-25 14:28:06', '2025-03-25 14:29:22', '2025-03-25 14:30:01', '2025-03-25 14:30:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884089608010002', 'P3', 'ASRS-0528', 4, '2025-03-25 14:28:10', '2025-03-25 14:29:30', '2025-03-25 14:30:19', '2025-03-25 14:30:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884236607010000', 'P3', 'ASRS-0306', 4, '2025-03-25 14:30:37', '2025-03-25 14:31:37', '2025-03-25 14:32:26', '2025-03-25 14:32:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884236607010003', 'P3', 'ASRS-0316', 4, '2025-03-25 14:30:37', '2025-03-25 14:31:27', '2025-03-25 14:32:06', '2025-03-25 14:32:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884286606010002', 'P3', 'ASRS-1221', 4, '2025-03-25 14:31:27', '2025-03-25 14:32:44', '2025-03-25 14:33:23', '2025-03-25 14:33:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884296607010002', 'P3', 'ASRS-0338', 4, '2025-03-25 14:31:37', '2025-03-25 14:32:57', '2025-03-25 14:33:48', '2025-03-25 14:33:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884441609010001', 'P3', 'ASRS-0519', 4, '2025-03-25 14:34:02', '2025-03-25 14:34:47', '2025-03-25 14:35:25', '2025-03-25 14:35:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884441609010004', 'P3', 'ASRS-1025', 4, '2025-03-25 14:34:02', '2025-03-25 14:34:45', '2025-03-25 14:35:41', '2025-03-25 14:35:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884556607010002', 'P3', 'ASRS-0318', 4, '2025-03-25 14:35:57', '2025-03-25 14:36:42', '2025-03-25 14:37:24', '2025-03-25 14:37:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884601607010001', 'P3', 'ASRS-1031', 4, '2025-03-25 14:36:42', '2025-03-25 14:37:57', '2025-03-25 14:38:39', '2025-03-25 14:38:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884726607010002', 'P3', 'ASRS-0337', 4, '2025-03-25 14:38:47', '2025-03-25 14:39:38', '2025-03-25 14:40:39', '2025-03-25 14:40:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884726607010005', 'P3', 'ASRS-1524', 4, '2025-03-25 14:38:47', '2025-03-25 14:39:30', '2025-03-25 14:40:09', '2025-03-25 14:40:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884851607010002', 'P3', 'ASRS-1088', 4, '2025-03-25 14:40:52', '2025-03-25 14:41:37', '2025-03-25 14:42:15', '2025-03-25 14:42:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742884851607010005', 'P3', 'ASRS-0522', 4, '2025-03-25 14:40:52', '2025-03-25 14:41:42', '2025-03-25 14:42:38', '2025-03-25 14:42:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885081606010002', 'P3', 'ASRS-0315', 4, '2025-03-25 14:44:42', '2025-03-25 14:45:28', '2025-03-25 14:46:07', '2025-03-25 14:46:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885081606010005', 'P3', 'ASRS-0332', 4, '2025-03-25 14:44:42', '2025-03-25 14:45:30', '2025-03-25 14:47:00', '2025-03-25 14:47:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885127611010001', 'P3', 'ASRS-0313', 4, '2025-03-25 14:45:28', '2025-03-25 14:46:19', '2025-03-25 14:47:25', '2025-03-25 14:47:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885129608010002', 'P3', 'ASRS-0388', 4, '2025-03-25 14:45:30', '2025-03-25 14:46:24', '2025-03-25 14:47:51', '2025-03-25 14:48:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885178611010002', 'P3', 'ASRS-0304', 4, '2025-03-25 14:46:19', '2025-03-25 14:47:11', '2025-03-25 14:48:26', '2025-03-25 14:49:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885183609010002', 'P3', 'ASRS-0520', 4, '2025-03-25 14:46:24', '2025-03-25 14:47:16', '2025-03-25 14:49:08', '2025-03-25 14:49:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885230609010001', 'P3', 'ASRS-1900', 4, '2025-03-25 14:47:11', '2025-03-25 14:48:04', '2025-03-25 14:49:31', '2025-03-25 14:49:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885235609010001', 'P3', 'ASRS-0334', 4, '2025-03-25 14:47:16', '2025-03-25 14:48:11', '2025-03-25 14:49:57', '2025-03-25 14:50:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885446608010001', 'P3', 'ASRS-1436', 4, '2025-03-25 14:50:47', '2025-03-25 14:51:33', '2025-03-25 14:52:12', '2025-03-25 14:53:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885446608010004', 'P3', 'ASRS-0350', 4, '2025-03-25 14:50:47', '2025-03-25 14:52:15', '2025-03-25 14:53:07', '2025-03-25 14:53:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885534609010002', 'P3', 'ASRS-0384', 4, '2025-03-25 14:52:15', '2025-03-25 14:53:09', '2025-03-25 14:53:51', '2025-03-25 14:54:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885588608010002', 'P3', 'ASRS-1027', 4, '2025-03-25 14:53:09', '2025-03-25 14:54:01', '2025-03-25 14:54:44', '2025-03-25 14:55:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885736610010002', 'P3', 'ASRS-0324', 4, '2025-03-25 14:55:37', '2025-03-25 14:56:24', '2025-03-25 14:57:03', '2025-03-25 14:57:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885736610010005', 'P3', 'ASRS-0305', 4, '2025-03-25 14:55:37', '2025-03-25 14:57:40', '2025-03-25 14:58:46', '2025-03-25 14:59:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885783610010002', 'P3', 'ASRS-0340', 4, '2025-03-25 14:56:24', '2025-03-25 14:57:42', '2025-03-25 14:58:21', '2025-03-25 14:58:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885859607010002', 'P3', 'ASRS-0392', 4, '2025-03-25 14:57:40', '2025-03-25 14:58:35', '2025-03-25 15:00:21', '2025-03-25 15:00:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885861610010002', 'P3', 'ASRS-0336', 4, '2025-03-25 14:57:42', '2025-03-25 14:58:37', '2025-03-25 14:59:14', '2025-03-25 15:00:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885914609010002', 'P3', 'ASRS-0517', 4, '2025-03-25 14:58:35', '2025-03-25 14:59:52', '2025-03-25 15:01:20', '2025-03-25 15:02:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885916609010002', 'P3', 'ASRS-1027', 4, '2025-03-25 14:58:37', '2025-03-25 14:59:30', '2025-03-25 15:00:59', '2025-03-25 15:01:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742885969610010002', 'P3', 'ASRS-1529', 4, '2025-03-25 14:59:30', '2025-03-25 15:00:48', '2025-03-25 15:02:36', '2025-03-25 15:03:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886201607010002', 'P3', 'ASRS-0318', 4, '2025-03-25 15:03:22', '2025-03-25 15:04:19', '2025-03-25 15:05:01', '2025-03-25 15:05:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886201607010005', 'P3', 'ASRS-0383', 4, '2025-03-25 15:03:22', '2025-03-25 15:04:35', '2025-03-25 15:05:27', '2025-03-25 15:05:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886258608010002', 'P3', 'ASRS-0523', 4, '2025-03-25 15:04:19', '2025-03-25 15:05:40', '2025-03-25 15:06:23', '2025-03-25 15:07:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886339633010000', 'P2', 'ASRS-1261', 4, '2025-03-25 15:05:40', '2025-03-25 15:06:35', '2025-03-25 15:07:24', '2025-03-25 15:07:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886441608010002', 'P3', 'ASRS-0317', 4, '2025-03-25 15:07:22', '2025-03-25 15:08:08', '2025-03-25 15:09:22', '2025-03-25 15:11:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886441608010005', 'P3', 'ASRS-1025', 4, '2025-03-25 15:07:22', '2025-03-25 15:08:10', '2025-03-25 15:08:47', '2025-03-25 15:09:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886487610010001', 'P3', 'ASRS-1902', 4, '2025-03-25 15:08:08', '2025-03-25 15:09:27', '2025-03-25 15:12:24', '2025-03-25 15:13:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886489607010002', 'P3', 'ASRS-0528', 4, '2025-03-25 15:08:10', '2025-03-25 15:09:01', '2025-03-25 15:11:44', '2025-03-25 15:12:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886566609010001', 'P3', 'ASRS-1221', 4, '2025-03-25 15:09:27', '2025-03-25 15:10:20', '2025-03-25 15:13:09', '2025-03-25 15:13:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886619609010002', 'P3', 'ASRS-0519', 4, '2025-03-25 15:10:20', '2025-03-25 15:11:36', '2025-03-25 15:13:42', '2025-03-25 15:13:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886695609010001', 'P3', 'ASRS-0527', 4, '2025-03-25 15:11:36', '2025-03-25 15:12:29', '2025-03-25 15:13:58', '2025-03-25 15:14:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886866606010002', 'P3', 'ASRS-0306', 4, '2025-03-25 15:14:27', '2025-03-25 15:15:40', '2025-03-25 15:16:36', '2025-03-25 15:16:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886866606010005', 'P3', 'ASRS-0316', 4, '2025-03-25 15:14:27', '2025-03-25 15:15:14', '2025-03-25 15:15:56', '2025-03-25 15:16:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742886939606010002', 'P3', 'ASRS-0338', 4, '2025-03-25 15:15:40', '2025-03-25 15:16:31', '2025-03-25 15:17:10', '2025-03-25 15:17:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887051607010002', 'P3', 'ASRS-1031', 4, '2025-03-25 15:17:32', '2025-03-25 15:18:42', '2025-03-25 15:19:21', '2025-03-25 15:20:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887426610010001', 'P3', 'ASRS-0315', 4, '2025-03-25 15:23:47', '2025-03-25 15:24:32', '2025-03-25 15:25:14', '2025-03-25 15:26:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887426610010004', 'P3', 'ASRS-0332', 4, '2025-03-25 15:23:47', '2025-03-25 15:24:39', '2025-03-25 15:26:05', '2025-03-25 15:26:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887471610010002', 'P3', 'ASRS-0313', 4, '2025-03-25 15:24:32', '2025-03-25 15:25:25', '2025-03-25 15:26:24', '2025-03-25 15:26:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887478609010002', 'P3', 'ASRS-0388', 4, '2025-03-25 15:24:39', '2025-03-25 15:25:30', '2025-03-25 15:26:42', '2025-03-25 15:26:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887524608010002', 'P3', 'ASRS-0304', 4, '2025-03-25 15:25:25', '2025-03-25 15:26:19', '2025-03-25 15:27:20', '2025-03-25 15:27:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887529609010002', 'P3', 'ASRS-0520', 4, '2025-03-25 15:25:30', '2025-03-25 15:26:22', '2025-03-25 15:27:02', '2025-03-25 15:27:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887578610010002', 'P3', 'ASRS-1900', 4, '2025-03-25 15:26:19', '2025-03-25 15:27:14', '2025-03-25 15:29:11', '2025-03-25 15:30:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887581609010002', 'P3', 'ASRS-0334', 4, '2025-03-25 15:26:22', '2025-03-25 15:27:16', '2025-03-25 15:27:54', '2025-03-25 15:29:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887801609010002', 'P3', 'ASRS-1436', 4, '2025-03-25 15:30:02', '2025-03-25 15:31:27', '2025-03-25 15:32:09', '2025-03-25 15:33:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887801609010005', 'P3', 'ASRS-0350', 4, '2025-03-25 15:30:02', '2025-03-25 15:30:49', '2025-03-25 15:31:28', '2025-03-25 15:31:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887886608010002', 'P3', 'ASRS-0384', 4, '2025-03-25 15:31:27', '2025-03-25 15:32:20', '2025-03-25 15:33:09', '2025-03-25 15:33:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742887939607010002', 'P3', 'ASRS-1027', 4, '2025-03-25 15:32:20', '2025-03-25 15:33:15', '2025-03-25 15:33:57', '2025-03-25 15:34:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888071609010002', 'P3', 'ASRS-0324', 4, '2025-03-25 15:34:32', '2025-03-25 15:35:48', '2025-03-25 15:36:30', '2025-03-25 15:36:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888071609010005', 'P3', 'ASRS-0392', 4, '2025-03-25 15:34:32', '2025-03-25 15:35:17', '2025-03-25 15:35:56', '2025-03-25 15:36:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888116608010002', 'P3', 'ASRS-0340', 4, '2025-03-25 15:35:17', '2025-03-25 15:36:37', '2025-03-25 15:37:16', '2025-03-25 15:37:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888147608010002', 'P3', 'ASRS-0305', 4, '2025-03-25 15:35:48', '2025-03-25 15:36:42', '2025-03-25 15:37:34', '2025-03-25 15:37:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888196609010002', 'P3', 'ASRS-1245', 4, '2025-03-25 15:36:37', '2025-03-25 15:37:31', '2025-03-25 15:38:10', '2025-03-25 15:38:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888201610010000', 'P3', 'ASRS-0336', 4, '2025-03-25 15:36:42', '2025-03-25 15:37:36', '2025-03-25 15:38:58', '2025-03-25 15:39:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888250609010002', 'P3', 'ASRS-1027', 4, '2025-03-25 15:37:31', '2025-03-25 15:38:51', '2025-03-25 15:40:01', '2025-03-25 15:40:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888255609010002', 'P3', 'ASRS-1529', 4, '2025-03-25 15:37:36', '2025-03-25 15:38:53', '2025-03-25 15:40:19', '2025-03-25 15:40:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888431608010002', 'P3', 'ASRS-0318', 4, '2025-03-25 15:40:32', '2025-03-25 15:42:07', '2025-03-25 15:43:32', '2025-03-25 15:43:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888431608010005', 'P3', 'ASRS-0383', 4, '2025-03-25 15:40:32', '2025-03-25 15:41:19', '2025-03-25 15:41:58', '2025-03-25 15:42:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888526609010000', 'P3', 'ASRS-0523', 4, '2025-03-25 15:42:07', '2025-03-25 15:43:27', '2025-03-25 15:44:09', '2025-03-25 15:44:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888691606010002', 'P3', 'ASRS-0317', 4, '2025-03-25 15:44:52', '2025-03-25 15:45:48', '2025-03-25 15:46:44', '2025-03-25 15:46:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888691607010002', 'P3', 'ASRS-1221', 4, '2025-03-25 15:44:52', '2025-03-25 15:45:39', '2025-03-25 15:46:18', '2025-03-25 15:46:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888738607010002', 'P3', 'ASRS-0528', 4, '2025-03-25 15:45:39', '2025-03-25 15:46:29', '2025-03-25 15:47:08', '2025-03-25 15:47:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888747608010002', 'P3', 'ASRS-1902', 4, '2025-03-25 15:45:48', '2025-03-25 15:46:43', '2025-03-25 15:47:49', '2025-03-25 15:48:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888802608010002', 'P3', 'ASRS-0519', 4, '2025-03-25 15:46:43', '2025-03-25 15:47:36', '2025-03-25 15:48:19', '2025-03-25 15:48:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888855609010002', 'P3', 'ASRS-1025', 4, '2025-03-25 15:47:36', '2025-03-25 15:48:53', '2025-03-25 15:49:35', '2025-03-25 15:49:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742888932608010002', 'P3', 'ASRS-0527', 4, '2025-03-25 15:48:53', '2025-03-25 15:50:11', '2025-03-25 15:50:53', '2025-03-25 15:51:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742889081607010002', 'P3', 'ASRS-0306', 4, '2025-03-25 15:51:22', '2025-03-25 15:52:10', '2025-03-25 15:52:47', '2025-03-25 15:52:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742889081607010005', 'P3', 'ASRS-0316', 4, '2025-03-25 15:51:22', '2025-03-25 15:52:08', '2025-03-25 15:53:01', '2025-03-25 15:53:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742889127609010001', 'P3', 'ASRS-0338', 4, '2025-03-25 15:52:08', '2025-03-25 15:53:25', '2025-03-25 15:54:08', '2025-03-25 15:54:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742889266608010002', 'P3', 'ASRS-1031', 4, '2025-03-25 15:54:27', '2025-03-25 15:55:13', '2025-03-25 15:55:55', '2025-03-25 15:56:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742889386607010002', 'P3', 'ASRS-1683', 4, '2025-03-25 15:56:27', '2025-03-25 15:57:12', '2025-03-25 15:57:51', '2025-03-25 15:58:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954086610010002', 'P3', 'ASRS-1907', 4, '2025-03-26 09:54:47', '2025-03-26 09:55:43', '2025-03-26 12:04:27', '2025-03-26 12:05:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954086614010002', 'P3', 'ASRS-1436', 4, '2025-03-26 09:54:47', '2025-03-26 09:55:41', '2025-03-26 09:56:19', '2025-03-26 12:04:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954140609010002', 'P3', 'ASRS-0351', 4, '2025-03-26 09:55:41', '2025-03-26 09:56:34', '2025-03-26 12:05:25', '2025-03-26 12:05:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954142615010002', 'P3', 'ASRS-0350', 4, '2025-03-26 09:55:43', '2025-03-26 09:56:42', '2025-03-26 12:05:56', '2025-03-26 12:06:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954193606010002', 'P3', 'ASRS-1900', 4, '2025-03-26 09:56:34', '2025-03-26 09:57:26', '2025-03-26 12:06:45', '2025-03-26 12:07:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954201608010002', 'P3', 'ASRS-0336', 4, '2025-03-26 09:56:42', '2025-03-26 09:57:43', '2025-03-26 12:07:55', '2025-03-26 12:08:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954245609010001', 'P3', 'ASRS-1027', 4, '2025-03-26 09:57:26', '2025-03-26 09:58:20', '2025-03-26 12:06:22', '2025-03-26 12:06:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742954262608010002', 'P3', 'ASRS-1899', 4, '2025-03-26 09:57:43', '2025-03-26 09:58:41', '2025-03-26 12:08:48', '2025-03-26 12:09:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742958533641010001', 'P2', 'asrs-1392', 4, '2025-03-26 11:08:54', '2025-03-26 11:10:29', '2025-03-26 11:11:18', '2025-03-26 11:11:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742961862609010000', 'P3', 'ASRS-0520', 4, '2025-03-26 12:04:23', '2025-03-26 12:05:21', '2025-03-26 12:08:20', '2025-03-26 12:08:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742961920616010000', 'P3', 'ASRS-0384', 4, '2025-03-26 12:05:21', '2025-03-26 12:06:41', '2025-03-26 12:09:18', '2025-03-26 12:09:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962181607010002', 'P3', 'ASRS-0335', 4, '2025-03-26 12:09:42', '2025-03-26 12:10:57', '2025-03-26 12:14:35', '2025-03-26 12:18:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962181607010005', 'P3', 'ASRS-0284', 4, '2025-03-26 12:09:42', '2025-03-26 12:10:28', '2025-03-26 12:11:06', '2025-03-26 12:14:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962227609010002', 'P3', 'ASRS-0244', 4, '2025-03-26 12:10:28', '2025-03-26 12:11:46', '2025-03-26 12:18:33', '2025-03-26 12:19:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962256610010002', 'P3', 'ASRS-1026', 4, '2025-03-26 12:10:57', '2025-03-26 12:12:22', '2025-03-26 12:19:12', '2025-03-26 12:19:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962305608010002', 'P3', 'asrs-1443', 4, '2025-03-26 12:11:46', '2025-03-26 12:12:38', '2025-03-26 12:19:40', '2025-03-26 12:20:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962341609010001', 'P3', 'ASRS-0528', 4, '2025-03-26 12:12:22', '2025-03-26 12:13:22', '2025-03-26 12:20:23', '2025-03-26 12:21:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962906608010002', 'P3', 'ASRS-0324', 4, '2025-03-26 12:21:47', '2025-03-26 12:22:32', '2025-03-26 12:23:11', '2025-03-26 12:28:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962906609010002', 'P3', 'ASRS-0521', 4, '2025-03-26 12:21:47', '2025-03-26 12:22:35', '2025-03-26 12:28:54', '2025-03-26 12:29:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962951608010002', 'P3', 'ASRS-1027', 4, '2025-03-26 12:22:32', '2025-03-26 12:23:23', '2025-03-26 12:29:48', '2025-03-26 12:30:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742962954609010002', 'P3', 'ASRS-1900', 4, '2025-03-26 12:22:35', '2025-03-26 12:24:00', '2025-03-26 12:30:41', '2025-03-26 12:31:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963039612010002', 'P3', 'ASRS-1189', 4, '2025-03-26 12:24:00', '2025-03-26 12:24:56', '2025-03-26 12:31:06', '2025-03-26 12:31:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963095610010002', 'P3', 'ASRS-0334', 4, '2025-03-26 12:24:56', '2025-03-26 12:25:56', '2025-03-26 12:31:54', '2025-03-26 12:33:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963155608010002', 'P3', 'ASRS-0384', 4, '2025-03-26 12:25:56', '2025-03-26 12:26:56', '2025-03-26 12:33:24', '2025-03-26 12:33:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963621608010002', 'P3', 'ASRS-1713', 4, '2025-03-26 12:33:42', '2025-03-26 12:34:38', '2025-03-26 12:39:18', '2025-03-26 12:40:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963621608010005', 'P3', 'ASRS-1249', 4, '2025-03-26 12:33:42', '2025-03-26 12:34:34', '2025-03-26 12:35:12', '2025-03-26 12:39:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742963673609010002', 'P3', 'ASRS-0385', 4, '2025-03-26 12:34:34', '2025-03-26 12:35:27', '2025-03-26 12:40:05', '2025-03-26 12:40:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964031608010002', 'P3', 'ASRS-1023', 4, '2025-03-26 12:40:32', '2025-03-26 12:41:39', '2025-03-26 12:42:21', '2025-03-26 12:44:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964098608010002', 'P3', 'ASRS-0270', 4, '2025-03-26 12:41:39', '2025-03-26 12:43:00', '2025-03-26 12:44:24', '2025-03-26 12:45:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964336607010002', 'P3', 'ASRS-0545', 4, '2025-03-26 12:45:37', '2025-03-26 12:47:07', '2025-03-26 12:50:04', '2025-03-26 12:51:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964336607010005', 'P3', 'ASRS-0525', 4, '2025-03-26 12:45:37', '2025-03-26 12:46:30', '2025-03-26 12:47:09', '2025-03-26 12:49:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964426609010002', 'P3', 'ASRS-1528', 4, '2025-03-26 12:47:07', '2025-03-26 12:48:28', '2025-03-26 12:51:50', '2025-03-26 12:52:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964507608010000', 'P3', 'ASRS-1026', 4, '2025-03-26 12:48:28', '2025-03-26 12:49:24', '2025-03-26 12:52:49', '2025-03-26 12:54:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742964563609010002', 'P3', 'ASRS-0342', 4, '2025-03-26 12:49:24', '2025-03-26 12:50:21', '2025-03-26 12:54:12', '2025-03-26 12:54:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742965542610010002', 'P3', 'ASRS-0385', 4, '2025-03-26 13:05:43', '2025-03-26 13:06:23', '2025-03-26 13:07:01', '2025-03-26 13:07:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742965981607010002', 'P3', 'ASRS-0315', 4, '2025-03-26 13:13:02', '2025-03-26 13:13:49', '2025-03-26 13:15:08', '2025-03-26 13:15:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742965981607010005', 'P3', 'ASRS-0332', 4, '2025-03-26 13:13:02', '2025-03-26 13:13:53', '2025-03-26 13:14:32', '2025-03-26 13:15:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966028607010001', 'P3', 'ASRS-0313', 4, '2025-03-26 13:13:49', '2025-03-26 13:14:46', '2025-03-26 13:16:02', '2025-03-26 13:16:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966032608010002', 'P3', 'ASRS-0304', 4, '2025-03-26 13:13:53', '2025-03-26 13:14:44', '2025-03-26 13:15:41', '2025-03-26 13:15:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966083609010001', 'P3', 'ASRS-0388', 4, '2025-03-26 13:14:44', '2025-03-26 13:15:37', '2025-03-26 13:16:19', '2025-03-26 13:16:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966085608010002', 'P3', 'ASRS-0350', 4, '2025-03-26 13:14:46', '2025-03-26 13:15:43', '2025-03-26 13:16:48', '2025-03-26 13:17:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966142610010002', 'P3', 'ASRS-0520', 4, '2025-03-26 13:15:43', '2025-03-26 13:17:07', '2025-03-26 13:17:48', '2025-03-26 13:18:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966226608010000', 'P3', 'ASRS-0334', 4, '2025-03-26 13:17:07', '2025-03-26 13:18:29', '2025-03-26 13:19:10', '2025-03-26 13:19:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966308607010002', 'P3', 'ASRS-1436', 4, '2025-03-26 13:18:29', '2025-03-26 13:19:48', '2025-03-26 13:20:30', '2025-03-26 13:20:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966441607010002', 'P3', 'ASRS-0324', 4, '2025-03-26 13:20:42', '2025-03-26 13:21:31', '2025-03-26 13:22:13', '2025-03-26 13:22:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966441608010002', 'P3', 'ASRS-0305', 4, '2025-03-26 13:20:42', '2025-03-26 13:21:43', '2025-03-26 13:22:46', '2025-03-26 13:22:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966490607010000', 'P3', 'ASRS-0340', 4, '2025-03-26 13:21:31', '2025-03-26 13:22:53', '2025-03-26 13:23:35', '2025-03-26 13:23:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966572606010002', 'P3', 'ASRS-1027', 4, '2025-03-26 13:22:53', '2025-03-26 13:23:53', '2025-03-26 13:24:35', '2025-03-26 13:25:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966632609010002', 'P3', 'ASRS-1529', 4, '2025-03-26 13:23:53', '2025-03-26 13:25:16', '2025-03-26 13:25:58', '2025-03-26 13:27:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966715608010002', 'P3', 'ASRS-1032', 4, '2025-03-26 13:25:16', '2025-03-26 13:26:11', '2025-03-26 13:27:35', '2025-03-26 13:28:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966896605010002', 'P3', 'ASRS-0306', 4, '2025-03-26 13:28:17', '2025-03-26 13:29:41', '2025-03-26 13:30:42', '2025-03-26 13:30:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966896605010005', 'P3', 'ASRS-1902', 4, '2025-03-26 13:28:17', '2025-03-26 13:29:05', '2025-03-26 13:29:42', '2025-03-26 13:30:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966944607010002', 'P3', 'ASRS-1526', 4, '2025-03-26 13:29:05', '2025-03-26 13:30:23', '2025-03-26 13:31:05', '2025-03-26 13:31:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742966980606010002', 'P3', 'ASRS-0333', 4, '2025-03-26 13:29:41', '2025-03-26 13:30:37', '2025-03-26 13:31:27', '2025-03-26 13:31:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967036607010002', 'P3', 'ASRS-0392', 4, '2025-03-26 13:30:37', '2025-03-26 13:31:34', '2025-03-26 13:32:15', '2025-03-26 13:32:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967093606010002', 'P3', 'ASRS-1221', 4, '2025-03-26 13:31:34', '2025-03-26 13:32:51', '2025-03-26 13:33:32', '2025-03-26 13:34:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967170607010002', 'P3', 'ASRS-0528', 4, '2025-03-26 13:32:51', '2025-03-26 13:34:11', '2025-03-26 13:35:01', '2025-03-26 13:35:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967331608010002', 'P3', 'ASRS-0519', 4, '2025-03-26 13:35:32', '2025-03-26 13:37:08', '2025-03-26 13:37:49', '2025-03-26 13:38:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967331608010005', 'P3', 'ASRS-1025', 4, '2025-03-26 13:35:32', '2025-03-26 13:36:19', '2025-03-26 13:36:57', '2025-03-26 13:37:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967491608010002', 'P3', 'ASRS-0316', 4, '2025-03-26 13:38:12', '2025-03-26 13:38:58', '2025-03-26 13:39:37', '2025-03-26 13:40:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967491608010005', 'P3', 'ASRS-1031', 4, '2025-03-26 13:38:12', '2025-03-26 13:39:38', '2025-03-26 13:40:20', '2025-03-26 13:40:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967537607010002', 'P3', 'ASRS-0338', 4, '2025-03-26 13:38:58', '2025-03-26 13:40:19', '2025-03-26 13:40:57', '2025-03-26 13:41:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967711606010002', 'P3', 'ASRS-0337', 4, '2025-03-26 13:41:52', '2025-03-26 13:42:36', '2025-03-26 13:43:15', '2025-03-26 13:43:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967711607010002', 'P3', 'ASRS-0501', 4, '2025-03-26 13:41:52', '2025-03-26 13:42:39', '2025-03-26 13:43:37', '2025-03-26 13:44:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967871607010002', 'P3', 'ASRS-1524', 4, '2025-03-26 13:44:32', '2025-03-26 13:45:49', '2025-03-26 13:46:30', '2025-03-26 13:46:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742967871607010005', 'P3', 'ASRS-0522', 4, '2025-03-26 13:44:32', '2025-03-26 13:45:23', '2025-03-26 13:46:02', '2025-03-26 13:46:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968006607010002', 'P3', 'ASRS-1088', 4, '2025-03-26 13:46:47', '2025-03-26 13:47:42', '2025-03-26 13:48:24', '2025-03-26 13:49:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968276607010002', 'P3', 'ASRS-1907', 4, '2025-03-26 13:51:17', '2025-03-26 13:52:05', '2025-03-26 13:52:44', '2025-03-26 13:54:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968276608010002', 'P3', 'ASRS-0351', 4, '2025-03-26 13:51:17', '2025-03-26 13:52:07', '2025-03-26 13:54:41', '2025-03-26 13:54:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968324608010002', 'P3', 'ASRS-0350', 4, '2025-03-26 13:52:05', '2025-03-26 13:52:58', '2025-03-26 13:54:58', '2025-03-26 13:55:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968326608010002', 'P3', 'ASRS-1900', 4, '2025-03-26 13:52:07', '2025-03-26 13:53:05', '2025-03-26 13:55:25', '2025-03-26 13:55:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968377610010002', 'P3', 'ASRS-0336', 4, '2025-03-26 13:52:58', '2025-03-26 13:53:50', '2025-03-26 13:56:21', '2025-03-26 13:56:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968384610010002', 'P3', 'ASRS-0520', 4, '2025-03-26 13:53:05', '2025-03-26 13:54:04', '2025-03-26 13:55:49', '2025-03-26 13:56:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968429611010002', 'P3', 'ASRS-1899', 4, '2025-03-26 13:53:50', '2025-03-26 13:54:44', '2025-03-26 13:56:09', '2025-03-26 13:56:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968443608010000', 'P3', 'ASRS-0384', 4, '2025-03-26 13:54:04', '2025-03-26 13:55:02', '2025-03-26 13:56:37', '2025-03-26 13:56:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968501608010002', 'P3', 'ASRS-1027', 4, '2025-03-26 13:55:02', '2025-03-26 13:56:02', '2025-03-26 13:56:45', '2025-03-26 13:56:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968561611010000', 'P3', 'ASRS-1436', 4, '2025-03-26 13:56:02', '2025-03-26 13:57:25', '2025-03-26 13:58:06', '2025-03-26 13:58:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968706606010002', 'P3', 'ASRS-0324', 4, '2025-03-26 13:58:27', '2025-03-26 13:59:38', '2025-03-26 14:00:20', '2025-03-26 14:00:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968706606010005', 'P3', 'ASRS-1900', 4, '2025-03-26 13:58:27', '2025-03-26 13:59:21', '2025-03-26 13:59:59', '2025-03-26 14:00:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968760607010002', 'P3', 'ASRS-0334', 4, '2025-03-26 13:59:21', '2025-03-26 14:00:35', '2025-03-26 14:01:14', '2025-03-26 14:01:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968777606010002', 'P3', 'ASRS-0521', 4, '2025-03-26 13:59:38', '2025-03-26 14:01:01', '2025-03-26 14:01:59', '2025-03-26 14:02:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968834609010002', 'P3', 'ASRS-1027', 4, '2025-03-26 14:00:35', '2025-03-26 14:01:29', '2025-03-26 14:02:25', '2025-03-26 14:02:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968860608010002', 'P3', 'ASRS-1189', 4, '2025-03-26 14:01:01', '2025-03-26 14:02:25', '2025-03-26 14:03:07', '2025-03-26 14:03:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742968944606010002', 'P3', 'ASRS-0384', 4, '2025-03-26 14:02:25', '2025-03-26 14:03:47', '2025-03-26 14:04:29', '2025-03-26 14:04:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969091606010002', 'P3', 'ASRS-0335', 4, '2025-03-26 14:04:52', '2025-03-26 14:06:02', '2025-03-26 14:07:04', '2025-03-26 14:07:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969091606010005', 'P3', 'ASRS-0244', 4, '2025-03-26 14:04:52', '2025-03-26 14:05:46', '2025-03-26 14:06:25', '2025-03-26 14:06:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969145610010002', 'P3', 'ASRS-0528', 4, '2025-03-26 14:05:46', '2025-03-26 14:07:03', '2025-03-26 14:07:42', '2025-03-26 14:07:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969161607010002', 'P3', 'ASRS-1026', 4, '2025-03-26 14:06:02', '2025-03-26 14:06:59', '2025-03-26 14:08:04', '2025-03-26 14:08:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969218608010002', 'P3', 'ASRS-0284', 4, '2025-03-26 14:06:59', '2025-03-26 14:07:59', '2025-03-26 14:08:48', '2025-03-26 14:08:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969222608010001', 'P3', 'asrs-1443', 4, '2025-03-26 14:07:03', '2025-03-26 14:07:54', '2025-03-26 14:08:33', '2025-03-26 14:08:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969336609010002', 'P3', 'ASRS-0349', 4, '2025-03-26 14:08:57', '2025-03-26 14:10:06', '2025-03-26 14:10:45', '2025-03-26 14:10:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969336609010005', 'P3', 'ASRS-1713', 4, '2025-03-26 14:08:57', '2025-03-26 14:10:15', '2025-03-26 14:11:04', '2025-03-26 14:11:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969414607010001', 'P3', 'ASRS-1249', 4, '2025-03-26 14:10:15', '2025-03-26 14:11:14', '2025-03-26 14:11:56', '2025-03-26 14:12:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969473608010000', 'P3', 'ASRS-0385', 4, '2025-03-26 14:11:14', '2025-03-26 14:12:11', '2025-03-26 14:12:53', '2025-03-26 14:14:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969691608010002', 'P3', 'ASRS-1023', 4, '2025-03-26 14:14:52', '2025-03-26 14:15:50', '2025-03-26 14:16:31', '2025-03-26 14:17:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969749608010001', 'P3', 'ASRS-0270', 4, '2025-03-26 14:15:50', '2025-03-26 14:16:50', '2025-03-26 14:17:32', '2025-03-26 14:17:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969871607010002', 'P3', 'ASRS-0545', 4, '2025-03-26 14:17:52', '2025-03-26 14:18:51', '2025-03-26 14:19:33', '2025-03-26 14:21:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969871607010005', 'P3', 'ASRS-1026', 4, '2025-03-26 14:17:52', '2025-03-26 14:19:06', '2025-03-26 14:21:17', '2025-03-26 14:21:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969930608010002', 'P3', 'ASRS-1528', 4, '2025-03-26 14:18:51', '2025-03-26 14:19:46', '2025-03-26 14:21:39', '2025-03-26 14:21:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969945608010002', 'P3', 'ASRS-0385', 4, '2025-03-26 14:19:06', '2025-03-26 14:20:26', '2025-03-26 14:21:58', '2025-03-26 14:22:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742969985607010002', 'P3', 'ASRS-0342', 4, '2025-03-26 14:19:46', '2025-03-26 14:20:46', '2025-03-26 14:22:09', '2025-03-26 14:22:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970045609010002', 'P3', 'ASRS-0525', 4, '2025-03-26 14:20:46', '2025-03-26 14:21:44', '2025-03-26 14:22:26', '2025-03-26 14:22:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970381608010002', 'P3', 'ASRS-1907', 4, '2025-03-26 14:26:22', '2025-03-26 14:27:20', '2025-03-26 14:28:30', '2025-03-26 14:28:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970381608010005', 'P3', 'ASRS-0351', 4, '2025-03-26 14:26:22', '2025-03-26 14:27:10', '2025-03-26 14:27:48', '2025-03-26 14:28:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970429606010002', 'P3', 'ASRS-1900', 4, '2025-03-26 14:27:10', '2025-03-26 14:28:02', '2025-03-26 14:28:53', '2025-03-26 14:29:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970439606010002', 'P3', 'ASRS-0350', 4, '2025-03-26 14:27:20', '2025-03-26 14:28:18', '2025-03-26 14:29:21', '2025-03-26 14:29:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970481608010002', 'P3', 'ASRS-1899', 4, '2025-03-26 14:28:02', '2025-03-26 14:28:53', '2025-03-26 14:29:57', '2025-03-26 14:30:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970497609010002', 'P3', 'ASRS-0336', 4, '2025-03-26 14:28:18', '2025-03-26 14:29:17', '2025-03-26 14:30:17', '2025-03-26 14:30:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970532606010002', 'P3', 'ASRS-0520', 4, '2025-03-26 14:28:53', '2025-03-26 14:29:46', '2025-03-26 14:30:37', '2025-03-26 14:30:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970556608010002', 'P3', 'ASRS-1027', 4, '2025-03-26 14:29:17', '2025-03-26 14:30:17', '2025-03-26 14:30:59', '2025-03-26 14:31:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970585607010002', 'P3', 'ASRS-0384', 4, '2025-03-26 14:29:46', '2025-03-26 14:31:05', '2025-03-26 14:31:44', '2025-03-26 14:32:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970616608010002', 'P3', 'ASRS-1436', 4, '2025-03-26 14:30:17', '2025-03-26 14:31:13', '2025-03-26 14:32:05', '2025-03-26 14:32:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970736607010002', 'P3', 'ASRS-0324', 4, '2025-03-26 14:32:17', '2025-03-26 14:33:16', '2025-03-26 14:34:26', '2025-03-26 14:34:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970736608010002', 'P3', 'ASRS-1189', 4, '2025-03-26 14:32:17', '2025-03-26 14:33:11', '2025-03-26 14:33:49', '2025-03-26 14:34:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970790607010002', 'P3', 'ASRS-1900', 4, '2025-03-26 14:33:11', '2025-03-26 14:34:29', '2025-03-26 14:35:08', '2025-03-26 14:35:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970795606010002', 'P3', 'ASRS-0521', 4, '2025-03-26 14:33:16', '2025-03-26 14:34:11', '2025-03-26 14:34:53', '2025-03-26 14:35:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742970868610010002', 'P3', 'ASRS-0334', 4, '2025-03-26 14:34:29', '2025-03-26 14:35:44', '2025-03-26 14:36:22', '2025-03-26 14:37:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742971027608010002', 'P3', 'ASRS-0384', 4, '2025-03-26 14:37:08', '2025-03-26 14:38:31', '2025-03-26 14:39:10', '2025-03-26 14:39:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742971762608010002', 'P3', 'ASRS-1027', 4, '2025-03-26 14:49:23', '2025-03-26 14:50:58', '2025-03-26 14:51:40', '2025-03-26 14:53:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972041608010002', 'P3', 'ASRS-0335', 4, '2025-03-26 14:54:02', '2025-03-26 14:54:47', '2025-03-26 14:55:26', '2025-03-26 14:56:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972041608010005', 'P3', 'ASRS-0244', 4, '2025-03-26 14:54:02', '2025-03-26 14:54:50', '2025-03-26 14:56:49', '2025-03-26 14:57:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972086607010002', 'P3', 'ASRS-1026', 4, '2025-03-26 14:54:47', '2025-03-26 14:55:39', '2025-03-26 14:56:30', '2025-03-26 14:56:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972089608010002', 'P3', 'ASRS-0528', 4, '2025-03-26 14:54:50', '2025-03-26 14:56:12', '2025-03-26 14:57:12', '2025-03-26 14:57:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972138608010002', 'P3', 'ASRS-0284', 4, '2025-03-26 14:55:39', '2025-03-26 14:56:30', '2025-03-26 14:57:37', '2025-03-26 14:57:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972171608010002', 'P3', 'asrs-1443', 4, '2025-03-26 14:56:12', '2025-03-26 14:57:08', '2025-03-26 14:57:53', '2025-03-26 14:58:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972291607010002', 'P3', 'ASRS-0349', 4, '2025-03-26 14:58:12', '2025-03-26 14:58:56', '2025-03-26 14:59:35', '2025-03-26 15:01:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972291607010005', 'P3', 'ASRS-1713', 4, '2025-03-26 14:58:12', '2025-03-26 14:59:20', '2025-03-26 15:01:31', '2025-03-26 15:01:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972335609010002', 'P3', 'ASRS-1249', 4, '2025-03-26 14:58:56', '2025-03-26 15:00:13', '2025-03-26 15:02:00', '2025-03-26 15:02:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972412608010002', 'P3', 'ASRS-0385', 4, '2025-03-26 15:00:13', '2025-03-26 15:01:03', '2025-03-26 15:02:15', '2025-03-26 15:02:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972551607010002', 'P3', 'ASRS-1030', 4, '2025-03-26 15:02:32', '2025-03-26 15:03:19', '2025-03-26 15:03:57', '2025-03-26 15:04:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972676607010002', 'P3', 'ASRS-0545', 4, '2025-03-26 15:04:37', '2025-03-26 15:05:27', '2025-03-26 15:06:03', '2025-03-26 15:07:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972676607010005', 'P3', 'ASRS-1528', 4, '2025-03-26 15:04:37', '2025-03-26 15:05:25', '2025-03-26 15:07:11', '2025-03-26 15:07:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972724608010002', 'P3', 'ASRS-0525', 4, '2025-03-26 15:05:25', '2025-03-26 15:06:24', '2025-03-26 15:07:47', '2025-03-26 15:08:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972726607010002', 'P3', 'ASRS-1026', 4, '2025-03-26 15:05:27', '2025-03-26 15:06:43', '2025-03-26 15:08:09', '2025-03-26 15:08:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972802607010002', 'P3', 'ASRS-0342', 4, '2025-03-26 15:06:43', '2025-03-26 15:07:33', '2025-03-26 15:08:35', '2025-03-26 15:08:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742972852608010002', 'P3', 'ASRS-0385', 4, '2025-03-26 15:07:33', '2025-03-26 15:08:25', '2025-03-26 15:09:04', '2025-03-26 15:09:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974211611010000', 'P3', 'ASRS-1907', 4, '2025-03-26 15:30:12', '2025-03-26 15:30:58', '2025-03-26 15:31:37', '2025-03-26 15:31:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974211611010003', 'P3', 'ASRS-0336', 4, '2025-03-26 15:30:12', '2025-03-26 15:31:02', '2025-03-26 15:32:02', '2025-03-26 15:32:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974257608010002', 'P3', 'ASRS-0350', 4, '2025-03-26 15:30:58', '2025-03-26 15:31:50', '2025-03-26 15:32:40', '2025-03-26 15:33:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974261609010002', 'P3', 'ASRS-1900', 4, '2025-03-26 15:31:02', '2025-03-26 15:32:01', '2025-03-26 15:33:07', '2025-03-26 15:33:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974309609010002', 'P3', 'ASRS-0351', 4, '2025-03-26 15:31:50', '2025-03-26 15:32:44', '2025-03-26 15:33:41', '2025-03-26 15:33:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974320607010002', 'P3', 'ASRS-1027', 4, '2025-03-26 15:32:01', '2025-03-26 15:33:00', '2025-03-26 15:33:57', '2025-03-26 15:34:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974363608010002', 'P3', 'ASRS-1899', 4, '2025-03-26 15:32:44', '2025-03-26 15:33:35', '2025-03-26 15:34:16', '2025-03-26 15:34:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974414609010001', 'P3', 'ASRS-0520', 4, '2025-03-26 15:33:35', '2025-03-26 15:34:54', '2025-03-26 15:35:33', '2025-03-26 15:35:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974493607010002', 'P3', 'ASRS-0384', 4, '2025-03-26 15:34:54', '2025-03-26 15:36:13', '2025-03-26 15:36:52', '2025-03-26 15:37:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974572608010002', 'P3', 'ASRS-1436', 4, '2025-03-26 15:36:13', '2025-03-26 15:37:30', '2025-03-26 15:38:09', '2025-03-26 15:39:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974781610010002', 'P3', 'ASRS-0324', 4, '2025-03-26 15:39:42', '2025-03-26 15:40:33', '2025-03-26 15:41:11', '2025-03-27 09:19:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974781611010002', 'P3', 'ASRS-1900', 4, '2025-03-26 15:39:42', '2025-03-26 15:40:31', '2025-03-27 09:19:56', '2025-03-27 09:20:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974830609010002', 'P3', 'ASRS-0384', 4, '2025-03-26 15:40:31', '2025-03-26 15:41:52', '2025-03-27 09:20:23', '2025-03-27 09:20:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974832609010000', 'P3', 'ASRS-0521', 4, '2025-03-26 15:40:33', '2025-03-26 15:41:24', '2025-03-27 09:20:12', '2025-03-27 09:20:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974883609010002', 'P3', 'ASRS-1189', 4, '2025-03-26 15:41:24', '2025-03-26 15:42:17', '2025-03-27 09:20:56', '2025-03-27 09:21:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974911610010002', 'P3', 'ASRS-1027', 4, '2025-03-26 15:41:52', '2025-03-26 15:42:48', '2025-03-27 09:20:35', '2025-03-27 09:20:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1742974936609010002', 'P3', 'ASRS-0334', 4, '2025-03-26 15:42:17', '2025-03-26 15:43:08', '2025-03-27 09:21:06', '2025-03-27 09:21:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743038482607010002', 'P3', 'ASRS-1900', 4, '2025-03-27 09:21:23', '2025-03-27 09:22:49', '2025-03-27 09:23:27', '2025-03-27 09:24:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743038523607010002', 'P3', 'ASRS-0521', 4, '2025-03-27 09:22:04', '2025-03-27 09:23:36', '2025-03-27 09:24:53', '2025-03-27 09:25:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743124922612010002', 'P2', 'ASRS-0271', 4, '2025-03-28 09:22:03', '2025-03-28 09:22:54', '2025-03-28 09:24:55', '2025-03-28 09:25:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743124937610010002', 'P2', 'ASRS-0299', 4, '2025-03-28 09:22:18', '2025-03-28 09:23:17', '2025-03-28 09:25:12', '2025-03-28 09:25:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743124973610010002', 'P2', 'ASRS-0297', 4, '2025-03-28 09:22:54', '2025-03-28 09:23:45', '2025-03-28 09:25:47', '2025-03-28 09:26:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743125024625010002', 'P2', 'ASRS-0250', 4, '2025-03-28 09:23:45', '2025-03-28 09:24:38', '2025-03-28 09:26:15', '2025-03-28 09:26:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743133775610010002', 'P2', 'ASRS-1528', 4, '2025-03-28 11:49:36', '2025-03-28 11:50:54', '2025-03-28 11:51:43', '2025-03-28 11:52:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743134417611010002', 'P2', 'ASRS-1268', 4, '2025-03-28 12:00:18', '2025-03-28 12:01:05', '2025-03-28 12:01:54', '2025-03-28 12:02:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743135193610010002', 'P2', 'ASRS-1528', 4, '2025-03-28 12:13:14', '2025-03-28 12:14:01', '2025-03-28 12:14:51', '2025-03-28 12:17:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142161611010006', 'P3', 'ASRS-0274', 4, '2025-03-28 14:09:22', '2025-03-28 14:10:14', '2025-03-28 14:10:51', '2025-03-28 14:11:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142633610010002', 'P2', 'ASRS-1246', 4, '2025-03-28 14:17:14', '2025-03-28 14:18:52', '2025-03-28 14:19:41', '2025-03-28 14:19:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142758609010002', 'P2', 'ASRS-0300', 4, '2025-03-28 14:19:19', '2025-03-28 14:20:10', '2025-03-28 14:20:56', '2025-03-28 14:21:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142811612010002', 'P2', 'ASRS-0248', 4, '2025-03-28 14:20:12', '2025-03-28 14:21:11', '2025-03-28 14:22:00', '2025-03-28 14:22:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142842610010002', 'P2', 'ASRS-0276', 4, '2025-03-28 14:20:43', '2025-03-28 14:21:32', '2025-03-28 14:22:19', '2025-03-28 14:22:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142883614010002', 'P2', 'ASRS-0249', 4, '2025-03-28 14:21:24', '2025-03-28 14:22:22', '2025-03-28 14:23:11', '2025-03-28 14:23:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743142905611010002', 'P2', 'ASRS-0275', 4, '2025-03-28 14:21:46', '2025-03-28 14:22:35', '2025-03-28 14:23:25', '2025-03-28 14:23:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212728610010001', 'P2', 'ASRS-0315', 4, '2025-03-29 09:45:29', '2025-03-29 09:46:14', '2025-03-29 11:53:44', '2025-03-29 11:54:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212728610010004', 'P2', 'ASRS-0332', 4, '2025-03-29 09:45:29', '2025-03-29 09:46:18', '2025-03-29 12:00:30', '2025-03-29 12:01:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212728615010001', 'P3', 'ASRS-0315', 4, '2025-03-29 09:45:29', '2025-03-29 13:13:06', '2025-03-29 13:23:10', '2025-03-29 13:25:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212728615010003', 'P3', 'ASRS-0332', 4, '2025-03-29 09:45:29', '2025-03-29 09:46:18', '2025-03-29 11:59:32', '2025-03-29 12:00:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212773610010002', 'P2', 'ASRS-0388', 4, '2025-03-29 09:46:14', '2025-03-29 09:47:06', '2025-03-29 12:01:49', '2025-03-29 12:02:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212773615010001', 'P3', 'ASRS-0388', 4, '2025-03-29 09:46:14', '2025-03-29 09:47:06', '2025-03-29 12:00:18', '2025-03-29 12:01:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212777608010002', 'P2', 'ASRS-0313', 4, '2025-03-29 09:46:18', '2025-03-29 09:47:16', '2025-03-29 11:59:44', '2025-03-29 12:00:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212777613010001', 'P3', 'ASRS-0313', 4, '2025-03-29 09:46:18', '2025-03-29 09:47:16', '2025-03-29 09:55:34', '2025-03-29 11:59:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212835608010001', 'P2', 'ASRS-0304', 4, '2025-03-29 09:47:16', '2025-03-29 09:48:14', '2025-03-29 09:49:02', '2025-03-29 11:50:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212835613010001', 'P3', 'ASRS-0304', 4, '2025-03-29 09:47:16', '2025-03-29 09:48:14', '2025-03-29 12:05:19', '2025-03-29 12:06:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212893615010001', 'P2', 'ASRS-0350', 4, '2025-03-29 09:48:14', '2025-03-29 09:49:13', '2025-03-29 11:50:47', '2025-03-29 11:51:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212952608010002', 'P2', 'ASRS-0520', 4, '2025-03-29 09:49:13', '2025-03-29 09:50:10', '2025-03-29 11:51:26', '2025-03-29 11:52:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743212952614010000', 'P3', 'ASRS-0520', 4, '2025-03-29 09:49:13', '2025-03-29 09:50:10', '2025-03-29 12:02:29', '2025-03-29 12:03:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743213009614010002', 'P2', 'ASRS-0334', 4, '2025-03-29 09:50:10', '2025-03-29 09:51:09', '2025-03-29 11:52:12', '2025-03-29 11:53:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743213009632010000', 'P3', 'ASRS-0334', 4, '2025-03-29 09:50:10', '2025-03-29 09:51:09', '2025-03-29 12:03:07', '2025-03-29 12:05:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743214506610010002', 'P3', 'ASRS-1900', 4, '2025-03-29 10:15:07', '2025-03-29 10:16:03', '2025-03-29 12:01:36', '2025-03-29 12:02:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743220242160010000', 'P2', 'ASRS-1436', 4, '2025-03-29 11:50:42', '2025-03-29 11:51:42', '2025-03-29 11:54:33', '2025-03-29 11:55:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743220955131010000', 'P2', 'ASRS-0324', 4, '2025-03-29 12:02:35', '2025-03-29 12:03:54', '2025-03-29 12:09:25', '2025-03-29 12:09:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743220955131010003', 'P2', 'ASRS-0305', 4, '2025-03-29 12:02:35', '2025-03-29 12:03:19', '2025-03-29 12:04:05', '2025-03-29 12:09:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743220999128010002', 'P2', 'ASRS-0340', 4, '2025-03-29 12:03:19', '2025-03-29 12:04:37', '2025-03-29 12:10:03', '2025-03-29 12:10:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221034127010001', 'P2', 'ASRS-1027', 4, '2025-03-29 12:03:54', '2025-03-29 12:05:16', '2025-03-29 12:10:40', '2025-03-29 12:12:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221077126010002', 'P2', 'ASRS-1032', 4, '2025-03-29 12:04:37', '2025-03-29 12:05:28', '2025-03-29 12:13:45', '2025-03-29 12:14:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221116126010001', 'P2', 'ASRS-1529', 4, '2025-03-29 12:05:16', '2025-03-29 12:06:41', '2025-03-29 12:12:57', '2025-03-29 12:13:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221690125010002', 'P2', 'ASRS-0306', 4, '2025-03-29 12:14:50', '2025-03-29 12:15:37', '2025-03-29 12:16:23', '2025-03-29 12:19:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221690126010002', 'P2', 'ASRS-0333', 4, '2025-03-29 12:14:50', '2025-03-29 12:15:40', '2025-03-29 12:19:05', '2025-03-29 12:20:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221737126010002', 'P2', 'ASRS-0392', 4, '2025-03-29 12:15:37', '2025-03-29 12:16:29', '2025-03-29 12:21:06', '2025-03-29 12:21:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221740126010002', 'P2', 'ASRS-1902', 4, '2025-03-29 12:15:40', '2025-03-29 12:17:01', '2025-03-29 12:21:48', '2025-03-29 12:22:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221821128010001', 'P2', 'ASRS-1221', 4, '2025-03-29 12:17:01', '2025-03-29 12:17:54', '2025-03-29 12:22:44', '2025-03-29 12:23:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221874128010002', 'P2', 'ASRS-1526', 4, '2025-03-29 12:17:54', '2025-03-29 12:18:51', '2025-03-29 12:23:33', '2025-03-29 12:24:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221931130010002', 'P2', 'ASRS-0528', 4, '2025-03-29 12:18:51', '2025-03-29 12:19:51', '2025-03-29 12:24:07', '2025-03-29 12:25:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743221991133010002', 'P2', 'ASRS-0551', 4, '2025-03-29 12:19:51', '2025-03-29 12:21:14', '2025-03-29 12:25:38', '2025-03-29 13:20:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225765530010000', 'P2', 'ASRS-0551', 4, '2025-03-29 13:22:46', '2025-03-29 13:23:28', '2025-03-29 13:24:17', '2025-03-29 13:24:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225876529010002', 'P2', 'ASRS-0519', 4, '2025-03-29 13:24:37', '2025-03-29 13:25:31', '2025-03-29 13:26:16', '2025-03-29 13:26:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225876529010005', 'P2', 'ASRS-1025', 4, '2025-03-29 13:24:37', '2025-03-29 13:25:34', '2025-03-29 13:26:56', '2025-03-29 13:27:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225933528010002', 'P2', 'ASRS-1034', 4, '2025-03-29 13:25:34', '2025-03-29 13:27:46', '2025-03-29 13:28:35', '2025-03-29 13:29:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225941528010002', 'P3', 'ASRS-0350', 4, '2025-03-29 13:25:42', '2025-03-29 13:26:54', '2025-03-29 13:29:43', '2025-03-29 13:30:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743225941528010005', 'P3', 'ASRS-0384', 4, '2025-03-29 13:25:42', '2025-03-29 13:26:32', '2025-03-29 13:27:10', '2025-03-29 13:29:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226013530010001', 'P3', 'ASRS-1027', 4, '2025-03-29 13:26:54', '2025-03-29 13:28:39', '2025-03-29 13:30:49', '2025-03-29 13:31:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226118528010002', 'P3', 'ASRS-1436', 4, '2025-03-29 13:28:39', '2025-03-29 13:29:59', '2025-03-29 13:31:58', '2025-03-29 13:34:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226146530010002', 'P2', 'ASRS-1025', 4, '2025-03-29 13:29:07', '2025-03-29 13:29:47', '2025-03-29 13:30:32', '2025-03-29 13:30:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226241529010002', 'P2', 'ASRS-0316', 4, '2025-03-29 13:30:42', '2025-03-29 13:31:34', '2025-03-29 13:35:27', '2025-03-29 13:36:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226241530010002', 'P2', 'ASRS-1031', 4, '2025-03-29 13:30:42', '2025-03-29 13:31:32', '2025-03-29 13:32:17', '2025-03-29 13:35:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226293529010002', 'P2', 'ASRS-0338', 4, '2025-03-29 13:31:34', '2025-03-29 13:32:55', '2025-03-29 13:36:43', '2025-03-29 13:37:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226481527010002', 'P3', 'ASRS-0324', 4, '2025-03-29 13:34:42', '2025-03-29 13:35:28', '2025-03-29 13:36:06', '2025-03-29 13:38:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226481527010005', 'P3', 'ASRS-0305', 4, '2025-03-29 13:34:42', '2025-03-29 13:35:31', '2025-03-29 13:38:34', '2025-03-29 13:39:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226527530010002', 'P3', 'ASRS-0336', 4, '2025-03-29 13:35:28', '2025-03-29 13:36:21', '2025-03-29 13:39:28', '2025-03-29 13:40:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226530529010002', 'P3', 'ASRS-0340', 4, '2025-03-29 13:35:31', '2025-03-29 13:36:55', '2025-03-29 13:40:07', '2025-03-29 13:40:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226580528010002', 'P3', 'ASRS-1529', 4, '2025-03-29 13:36:21', '2025-03-29 13:37:37', '2025-03-29 13:40:37', '2025-03-29 13:41:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226614527010002', 'P3', 'ASRS-1245', 4, '2025-03-29 13:36:55', '2025-03-29 13:37:53', '2025-03-29 13:41:57', '2025-03-29 13:42:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226671527010002', 'P2', 'ASRS-0337', 4, '2025-03-29 13:37:52', '2025-03-29 13:40:13', '2025-03-29 13:41:49', '2025-03-29 13:43:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226671527010005', 'P2', 'ASRS-0501', 4, '2025-03-29 13:37:52', '2025-03-29 13:38:46', '2025-03-29 13:39:31', '2025-03-29 13:41:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226672530010003', 'P3', 'ASRS-1027', 4, '2025-03-29 13:37:53', '2025-03-29 13:39:19', '2025-03-29 13:42:30', '2025-03-29 13:43:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226758529010002', 'P3', 'ASRS-0551', 4, '2025-03-29 13:39:19', '2025-03-29 13:41:03', '2025-03-29 13:43:06', '2025-03-29 13:45:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226991527010002', 'P2', 'ASRS-1524', 4, '2025-03-29 13:43:12', '2025-03-29 13:44:43', '2025-03-29 13:49:27', '2025-03-29 13:49:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743226991527010005', 'P2', 'ASRS-0522', 4, '2025-03-29 13:43:12', '2025-03-29 13:44:09', '2025-03-29 13:44:58', '2025-03-29 13:49:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227106527010002', 'P3', 'ASRS-0318', 4, '2025-03-29 13:45:07', '2025-03-29 13:45:57', '2025-03-29 13:46:39', '2025-03-29 13:48:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227156528010002', 'P3', 'ASRS-0383', 4, '2025-03-29 13:45:57', '2025-03-29 13:47:15', '2025-03-29 13:48:31', '2025-03-29 13:49:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227234528010001', 'P3', 'ASRS-1268', 4, '2025-03-29 13:47:15', '2025-03-29 13:48:12', '2025-03-29 13:50:49', '2025-03-29 13:51:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227234528010004', 'P3', 'ASRS-0272', 4, '2025-03-29 13:47:15', '2025-03-29 13:47:59', '2025-03-29 13:49:39', '2025-03-29 13:50:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227396530010000', 'P2', 'ASRS-1088', 4, '2025-03-29 13:49:57', '2025-03-29 13:51:33', '2025-03-29 13:52:21', '2025-03-29 13:55:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227554528010002', 'P3', 'ASRS-1268', 4, '2025-03-29 13:52:35', '2025-03-29 13:53:16', '2025-03-29 13:53:55', '2025-03-29 13:53:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227641527010002', 'P3', 'ASRS-0317', 4, '2025-03-29 13:54:02', '2025-03-29 13:54:52', '2025-03-29 13:55:31', '2025-03-29 14:03:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227641527010005', 'P3', 'ASRS-1902', 4, '2025-03-29 13:54:02', '2025-03-29 13:54:49', '2025-03-29 14:03:55', '2025-03-29 14:07:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227688529010002', 'P3', 'ASRS-0519', 4, '2025-03-29 13:54:49', '2025-03-29 13:56:10', '2025-03-29 14:08:56', '2025-03-29 14:09:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227691527010001', 'P3', 'ASRS-1221', 4, '2025-03-29 13:54:52', '2025-03-29 13:55:45', '2025-03-29 14:07:34', '2025-03-29 14:08:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227769527010002', 'P3', 'ASRS-0528', 4, '2025-03-29 13:56:10', '2025-03-29 13:57:32', '2025-03-29 14:09:26', '2025-03-29 14:12:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227851529010002', 'P3', 'ASRS-0527', 4, '2025-03-29 13:57:32', '2025-03-29 13:58:28', '2025-03-29 14:12:54', '2025-03-29 14:13:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227871529010001', 'P2', 'ASRS-0315', 4, '2025-03-29 13:57:52', '2025-03-29 13:58:44', '2025-03-29 13:59:29', '2025-03-29 14:05:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227871529010004', 'P2', 'ASRS-0332', 4, '2025-03-29 13:57:52', '2025-03-29 13:59:19', '2025-03-29 14:05:12', '2025-03-29 14:05:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227907533010002', 'P3', 'ASRS-1034', 4, '2025-03-29 13:58:28', '2025-03-29 14:00:09', '2025-03-29 14:12:16', '2025-03-29 14:12:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227923530010002', 'P2', 'ASRS-0388', 4, '2025-03-29 13:58:44', '2025-03-29 13:59:34', '2025-03-29 14:05:46', '2025-03-29 14:06:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227958529010002', 'P2', 'ASRS-0313', 4, '2025-03-29 13:59:19', '2025-03-29 14:00:59', '2025-03-29 14:08:01', '2025-03-29 14:08:22'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743227973530010001', 'P2', 'ASRS-0350', 4, '2025-03-29 13:59:34', '2025-03-29 14:00:27', '2025-03-29 14:06:22', '2025-03-29 14:06:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228026530010000', 'P2', 'ASRS-0334', 4, '2025-03-29 14:00:27', '2025-03-29 14:01:17', '2025-03-29 14:06:50', '2025-03-29 14:07:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228058527010001', 'P2', 'ASRS-0304', 4, '2025-03-29 14:00:59', '2025-03-29 14:01:58', '2025-03-29 14:08:28', '2025-03-29 14:08:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228117527010002', 'P2', 'ASRS-0520', 4, '2025-03-29 14:01:58', '2025-03-29 14:02:58', '2025-03-29 14:08:53', '2025-03-29 14:09:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228306528010000', 'P2', 'ASRS-1436', 4, '2025-03-29 14:05:07', '2025-03-29 14:05:58', '2025-03-29 14:09:15', '2025-03-29 14:10:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228606526010002', 'P2', 'ASRS-0324', 4, '2025-03-29 14:10:07', '2025-03-29 14:11:29', '2025-03-29 14:13:00', '2025-03-29 14:13:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228606526010005', 'P2', 'ASRS-0305', 4, '2025-03-29 14:10:07', '2025-03-29 14:10:55', '2025-03-29 14:11:40', '2025-03-29 14:12:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228654530010002', 'P2', 'ASRS-0340', 4, '2025-03-29 14:10:55', '2025-03-29 14:12:13', '2025-03-29 14:13:31', '2025-03-29 14:13:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228688527010002', 'P2', 'ASRS-1032', 4, '2025-03-29 14:11:29', '2025-03-29 14:12:51', '2025-03-29 14:14:01', '2025-03-29 14:14:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228732528010002', 'P2', 'ASRS-1027', 4, '2025-03-29 14:12:13', '2025-03-29 14:13:32', '2025-03-29 14:14:48', '2025-03-29 14:15:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228770528010002', 'P2', 'ASRS-1529', 4, '2025-03-29 14:12:51', '2025-03-29 14:14:16', '2025-03-29 14:16:04', '2025-03-29 14:16:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228811527010002', 'P3', 'ASRS-0306', 4, '2025-03-29 14:13:32', '2025-03-29 14:15:04', '2025-03-29 14:24:51', '2025-03-29 14:25:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228811528010002', 'P3', 'ASRS-0338', 4, '2025-03-29 14:13:32', '2025-03-29 14:14:46', '2025-03-29 14:15:24', '2025-03-29 14:24:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743228903527010002', 'P3', 'ASRS-0316', 4, '2025-03-29 14:15:04', '2025-03-29 14:16:24', '2025-03-29 14:25:22', '2025-03-29 14:25:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229006527010001', 'P2', 'ASRS-0306', 4, '2025-03-29 14:16:47', '2025-03-29 14:16:48', '2025-03-29 14:25:33', '2025-03-29 14:26:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229006527010004', 'P2', 'ASRS-0333', 4, '2025-03-29 14:16:47', '2025-03-29 14:17:55', '2025-03-29 14:19:58', '2025-03-29 14:20:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229006527010007', 'P2', 'ASRS-1902', 4, '2025-03-29 14:16:47', '2025-03-29 14:17:46', '2025-03-29 14:18:35', '2025-03-29 14:19:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229065531010002', 'P2', 'ASRS-1526', 4, '2025-03-29 14:17:46', '2025-03-29 14:19:07', '2025-03-29 14:21:04', '2025-03-29 14:21:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229074527010002', 'P2', 'ASRS-1221', 4, '2025-03-29 14:17:55', '2025-03-29 14:18:48', '2025-03-29 14:20:29', '2025-03-29 14:20:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229146529010001', 'P2', 'ASRS-0528', 4, '2025-03-29 14:19:07', '2025-03-29 14:20:31', '2025-03-29 14:21:59', '2025-03-29 14:24:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229230531010001', 'P2', 'ASRS-0551', 4, '2025-03-29 14:20:31', '2025-03-29 14:21:52', '2025-03-29 14:24:06', '2025-03-29 14:25:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229556528010002', 'P3', 'ASRS-1031', 4, '2025-03-29 14:25:57', '2025-03-29 14:26:52', '2025-03-29 14:27:30', '2025-03-29 14:30:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229571528010002', 'P2', 'ASRS-0519', 4, '2025-03-29 14:26:12', '2025-03-29 14:26:58', '2025-03-29 14:27:47', '2025-03-29 14:28:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229617527010002', 'P2', 'ASRS-1034', 4, '2025-03-29 14:26:58', '2025-03-29 14:28:18', '2025-03-29 14:29:19', '2025-03-29 14:29:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229781526010002', 'P2', 'ASRS-0316', 4, '2025-03-29 14:29:42', '2025-03-29 14:30:43', '2025-03-29 14:32:08', '2025-03-29 14:32:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229781527010001', 'P2', 'ASRS-1031', 4, '2025-03-29 14:29:42', '2025-03-29 14:29:43', '2025-03-29 14:30:19', '2025-03-29 14:32:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229781527010004', 'P2', 'ASRS-0338', 4, '2025-03-29 14:29:42', '2025-03-29 14:31:14', '2025-03-29 14:32:39', '2025-03-29 14:33:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229806528010002', 'P3', 'ASRS-1683', 4, '2025-03-29 14:30:07', '2025-03-29 14:31:35', '2025-03-29 14:32:17', '2025-03-29 14:32:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743229996528010002', 'P2', 'ASRS-0331', 4, '2025-03-29 14:33:17', '2025-03-29 14:34:25', '2025-03-29 14:35:10', '2025-03-29 14:35:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230161528010002', 'P2', 'ASRS-0337', 4, '2025-03-29 14:36:02', '2025-03-29 14:36:50', '2025-03-29 14:39:15', '2025-03-29 14:39:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230161528010006', 'P2', 'ASRS-0501', 4, '2025-03-29 14:36:02', '2025-03-29 14:36:55', '2025-03-29 14:37:40', '2025-03-29 14:39:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230396527010002', 'P2', 'ASRS-1524', 4, '2025-03-29 14:39:57', '2025-03-29 14:41:18', '2025-03-29 14:42:07', '2025-03-29 14:42:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230477526010002', 'P2', 'ASRS-0522', 4, '2025-03-29 14:41:18', '2025-03-29 14:42:17', '2025-03-29 14:43:06', '2025-03-29 14:43:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230596528010002', 'P2', 'ASRS-1088', 4, '2025-03-29 14:43:17', '2025-03-29 14:44:19', '2025-03-29 14:45:07', '2025-03-29 14:45:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230796527010000', 'P3', 'ASRS-0271', 4, '2025-03-29 14:46:37', '2025-03-29 14:47:19', '2025-03-29 14:47:58', '2025-03-29 14:50:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230838527010002', 'P3', 'ASRS-0350', 4, '2025-03-29 14:47:19', '2025-03-29 14:48:10', '2025-03-29 14:50:58', '2025-03-29 14:52:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230866528010002', 'P2', 'ASRS-0315', 4, '2025-03-29 14:47:47', '2025-03-29 14:48:34', '2025-03-29 14:49:22', '2025-03-29 14:49:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230866528010005', 'P2', 'ASRS-0332', 4, '2025-03-29 14:47:47', '2025-03-29 14:48:55', '2025-03-29 14:49:50', '2025-03-29 14:50:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230866529010001', 'P2', 'ASRS-0350', 4, '2025-03-29 14:47:47', '2025-03-29 14:48:10', '2025-03-29 14:52:34', '2025-03-29 14:52:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230913530010002', 'P2', 'ASRS-0313', 4, '2025-03-29 14:48:34', '2025-03-29 14:49:31', '2025-03-29 14:50:20', '2025-03-29 14:50:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230934529010001', 'P2', 'ASRS-0520', 4, '2025-03-29 14:48:55', '2025-03-29 14:49:47', '2025-03-29 14:50:43', '2025-03-29 14:50:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230970529010002', 'P2', 'ASRS-0304', 4, '2025-03-29 14:49:31', '2025-03-29 14:50:31', '2025-03-29 14:51:20', '2025-03-29 14:51:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743230986529010002', 'P2', 'ASRS-0334', 4, '2025-03-29 14:49:47', '2025-03-29 14:50:37', '2025-03-29 14:51:36', '2025-03-29 14:52:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231030528010002', 'P2', 'ASRS-0388', 4, '2025-03-29 14:50:31', '2025-03-29 14:51:54', '2025-03-29 14:53:25', '2025-03-29 14:53:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231036526010002', 'P2', 'ASRS-1436', 4, '2025-03-29 14:50:37', '2025-03-29 14:51:56', '2025-03-29 14:52:52', '2025-03-29 14:53:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231141528010002', 'P3', 'ASRS-1531', 4, '2025-03-29 14:52:22', '2025-03-29 14:53:14', '2025-03-29 14:53:52', '2025-03-29 15:05:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231141528010006', 'P3', 'ASRS-0386', 4, '2025-03-29 14:52:22', '2025-03-29 14:53:12', '2025-03-29 15:06:04', '2025-03-29 15:07:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231236526010002', 'P2', 'ASRS-0324', 4, '2025-03-29 14:53:57', '2025-03-29 14:55:27', '2025-03-29 14:56:16', '2025-03-29 14:56:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231236527010002', 'P2', 'ASRS-0305', 4, '2025-03-29 14:53:57', '2025-03-29 14:55:11', '2025-03-29 14:55:57', '2025-03-29 14:56:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231310527010002', 'P2', 'ASRS-0340', 4, '2025-03-29 14:55:11', '2025-03-29 14:56:30', '2025-03-29 14:57:15', '2025-03-29 14:57:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231326527010002', 'P2', 'ASRS-1032', 4, '2025-03-29 14:55:27', '2025-03-29 14:56:48', '2025-03-29 14:57:36', '2025-03-29 14:58:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231389529010002', 'P2', 'ASRS-1027', 4, '2025-03-29 14:56:30', '2025-03-29 14:57:20', '2025-03-29 14:58:44', '2025-03-29 14:59:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231407527010002', 'P2', 'ASRS-1529', 4, '2025-03-29 14:56:48', '2025-03-29 14:58:12', '2025-03-29 14:59:16', '2025-03-29 14:59:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231576528010001', 'P2', 'ASRS-0306', 4, '2025-03-29 14:59:37', '2025-03-29 15:00:26', '2025-03-29 15:01:11', '2025-03-29 15:01:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231576528010004', 'P2', 'ASRS-1902', 4, '2025-03-29 14:59:37', '2025-03-29 15:00:45', '2025-03-29 15:01:34', '2025-03-29 15:02:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231625526010002', 'P2', 'ASRS-0333', 4, '2025-03-29 15:00:26', '2025-03-29 15:01:41', '2025-03-29 15:02:27', '2025-03-29 15:03:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231644529010002', 'P2', 'ASRS-1221', 4, '2025-03-29 15:00:45', '2025-03-29 15:02:08', '2025-03-29 15:03:06', '2025-03-29 15:03:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231700530010001', 'P2', 'ASRS-1526', 4, '2025-03-29 15:01:41', '2025-03-29 15:02:33', '2025-03-29 15:04:00', '2025-03-29 15:04:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231727528010001', 'P2', 'ASRS-0528', 4, '2025-03-29 15:02:08', '2025-03-29 15:03:28', '2025-03-29 15:04:16', '2025-03-29 15:05:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231807530010002', 'P2', 'ASRS-0331', 4, '2025-03-29 15:03:28', '2025-03-29 15:04:26', '2025-03-29 15:05:18', '2025-03-29 15:05:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743231931528010002', 'P2', 'ASRS-0519', 4, '2025-03-29 15:05:32', '2025-03-29 15:06:42', '2025-03-29 15:07:30', '2025-03-29 15:07:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232001527010002', 'P2', 'ASRS-1034', 4, '2025-03-29 15:06:42', '2025-03-29 15:08:04', '2025-03-29 15:08:52', '2025-03-29 15:09:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232141527010002', 'P2', 'ASRS-0316', 4, '2025-03-29 15:09:02', '2025-03-29 15:09:48', '2025-03-29 15:10:34', '2025-03-29 15:10:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232141528010000', 'P2', 'ASRS-1031', 4, '2025-03-29 15:09:02', '2025-03-29 15:11:09', '2025-03-29 15:11:57', '2025-03-29 15:12:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232166532010002', 'P3', 'ASRS-0271', 4, '2025-03-29 15:09:27', '2025-03-29 15:10:20', '2025-03-29 15:11:02', '2025-03-29 15:14:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232166532010005', 'P3', 'ASRS-0350', 4, '2025-03-29 15:09:27', '2025-03-29 15:10:32', '2025-03-29 15:14:08', '2025-03-29 15:15:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232268527010002', 'P2', 'ASRS-0338', 4, '2025-03-29 15:11:09', '2025-03-29 15:12:08', '2025-03-29 15:12:57', '2025-03-29 15:13:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232401527010002', 'P2', 'ASRS-0337', 4, '2025-03-29 15:13:22', '2025-03-29 15:14:21', '2025-03-29 15:16:12', '2025-03-29 15:16:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232401527010005', 'P2', 'ASRS-0501', 4, '2025-03-29 15:13:22', '2025-03-29 15:14:10', '2025-03-29 15:14:59', '2025-03-29 15:16:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232521527010002', 'P3', 'ASRS-1531', 4, '2025-03-29 15:15:22', '2025-03-29 15:16:11', '2025-03-29 15:18:16', '2025-03-29 15:20:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232521527010005', 'P3', 'ASRS-0386', 4, '2025-03-29 15:15:22', '2025-03-29 15:16:09', '2025-03-29 15:16:48', '2025-03-29 15:18:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232576526010002', 'P2', 'ASRS-1524', 4, '2025-03-29 15:16:17', '2025-03-29 15:17:34', '2025-03-29 15:18:22', '2025-03-29 15:18:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232653528010002', 'P2', 'ASRS-0522', 4, '2025-03-29 15:17:34', '2025-03-29 15:18:54', '2025-03-29 15:20:25', '2025-03-29 15:20:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743232841528010002', 'P2', 'ASRS-1088', 4, '2025-03-29 15:20:42', '2025-03-29 15:21:31', '2025-03-29 15:22:19', '2025-03-29 15:22:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743233031527010001', 'P3', 'ASRS-0271', 4, '2025-03-29 15:23:52', '2025-03-29 15:24:38', '2025-03-29 15:25:16', '2025-03-29 15:25:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743233031527010004', 'P3', 'ASRS-0350', 4, '2025-03-29 15:23:52', '2025-03-29 15:25:02', '2025-03-29 15:25:44', '2025-03-29 15:25:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743233151528010002', 'P3', 'ASRS-1531', 4, '2025-03-29 15:25:52', '2025-03-29 15:26:50', '2025-03-29 15:27:32', '2025-03-29 15:28:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743233209527010001', 'P3', 'ASRS-0386', 4, '2025-03-29 15:26:50', '2025-03-29 15:28:13', '2025-03-29 15:28:55', '2025-03-29 15:29:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743383836518010002', 'P3', 'ASRS-0271', 4, '2025-03-31 09:17:17', '2025-03-31 09:18:05', '2025-03-31 09:20:50', '2025-03-31 09:21:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743383836518010005', 'P3', 'ASRS-0350', 4, '2025-03-31 09:17:17', '2025-03-31 09:17:58', '2025-03-31 09:18:36', '2025-03-31 09:20:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743384121542010002', 'P3', 'ASRS-1531', 4, '2025-03-31 09:22:02', '2025-03-31 09:22:53', '2025-03-31 09:23:35', '2025-03-31 09:25:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743384172528010001', 'P3', 'ASRS-0386', 4, '2025-03-31 09:22:53', '2025-03-31 09:24:17', '2025-03-31 09:25:56', '2025-03-31 09:27:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743384466528010002', 'P3', 'ASRS-0350', 4, '2025-03-31 09:27:47', '2025-03-31 09:28:36', '2025-03-31 09:29:18', '2025-03-31 09:33:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743384786529010002', 'P3', 'ASRS-1531', 4, '2025-03-31 09:33:07', '2025-03-31 09:33:56', '2025-03-31 09:34:38', '2025-03-31 09:35:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395121528010002', 'P3', 'ASRS-0315', 4, '2025-03-31 12:25:22', '2025-03-31 12:26:11', '2025-03-31 12:27:42', '2025-03-31 12:28:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395121528010005', 'P3', 'ASRS-0332', 4, '2025-03-31 12:25:22', '2025-03-31 12:26:13', '2025-03-31 12:26:51', '2025-03-31 12:27:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395170527010002', 'P3', 'ASRS-0313', 4, '2025-03-31 12:26:11', '2025-03-31 12:27:08', '2025-03-31 12:28:48', '2025-03-31 12:29:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395172532010001', 'P3', 'ASRS-0304', 4, '2025-03-31 12:26:13', '2025-03-31 12:27:04', '2025-03-31 12:28:13', '2025-03-31 12:28:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395223529010002', 'P3', 'ASRS-0388', 4, '2025-03-31 12:27:04', '2025-03-31 12:27:56', '2025-03-31 12:29:22', '2025-03-31 12:29:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395227518010002', 'P3', 'ASRS-1900', 4, '2025-03-31 12:27:08', '2025-03-31 12:28:07', '2025-03-31 12:29:50', '2025-03-31 12:30:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395275527010002', 'P3', 'ASRS-0520', 4, '2025-03-31 12:27:56', '2025-03-31 12:28:47', '2025-03-31 12:30:10', '2025-03-31 12:35:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395286518010002', 'P3', 'ASRS-0334', 4, '2025-03-31 12:28:07', '2025-03-31 12:29:05', '2025-03-31 12:35:06', '2025-03-31 12:35:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395751518010002', 'P3', 'ASRS-0350', 4, '2025-03-31 12:35:52', '2025-03-31 12:37:15', '2025-03-31 12:38:12', '2025-03-31 12:38:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395751518010005', 'P3', 'ASRS-0384', 4, '2025-03-31 12:35:52', '2025-03-31 12:36:36', '2025-03-31 12:37:15', '2025-03-31 12:38:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395795529010002', 'P3', 'ASRS-1027', 4, '2025-03-31 12:36:36', '2025-03-31 12:37:51', '2025-03-31 12:38:45', '2025-03-31 12:39:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743395834538010002', 'P3', 'ASRS-1436', 4, '2025-03-31 12:37:15', '2025-03-31 12:38:11', '2025-03-31 12:39:23', '2025-03-31 12:40:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396031530010002', 'P3', 'ASRS-0324', 4, '2025-03-31 12:40:32', '2025-03-31 12:41:16', '2025-03-31 12:41:55', '2025-03-31 12:42:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396031530010005', 'P3', 'ASRS-0305', 4, '2025-03-31 12:40:32', '2025-03-31 12:41:33', '2025-03-31 12:42:21', '2025-03-31 12:42:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396075529010002', 'P3', 'ASRS-1245', 4, '2025-03-31 12:41:16', '2025-03-31 12:42:10', '2025-03-31 12:42:48', '2025-03-31 12:43:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396092518010002', 'P3', 'ASRS-0340', 4, '2025-03-31 12:41:33', '2025-03-31 12:42:55', '2025-03-31 12:43:38', '2025-03-31 12:43:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396174518010002', 'P3', 'ASRS-0336', 4, '2025-03-31 12:42:55', '2025-03-31 12:44:20', '2025-03-31 12:45:02', '2025-03-31 12:45:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396259518010002', 'P3', 'ASRS-1027', 4, '2025-03-31 12:44:20', '2025-03-31 12:45:41', '2025-03-31 12:46:24', '2025-03-31 12:46:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396340535010002', 'P3', 'ASRS-1529', 4, '2025-03-31 12:45:41', '2025-03-31 12:46:39', '2025-03-31 12:47:21', '2025-03-31 12:48:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396398518010002', 'P3', 'ASRS-0331', 4, '2025-03-31 12:46:39', '2025-03-31 12:48:02', '2025-03-31 12:48:44', '2025-03-31 12:49:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396546534010002', 'P3', 'ASRS-0318', 4, '2025-03-31 12:49:07', '2025-03-31 12:49:51', '2025-03-31 12:50:30', '2025-03-31 12:51:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396546535010002', 'P3', 'ASRS-1268', 4, '2025-03-31 12:49:07', '2025-03-31 12:50:03', '2025-03-31 12:51:10', '2025-03-31 12:52:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396590528010002', 'P3', 'ASRS-0383', 4, '2025-03-31 12:49:51', '2025-03-31 12:50:42', '2025-03-31 12:52:17', '2025-03-31 12:52:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396766528010002', 'P3', 'ASRS-0317', 4, '2025-03-31 12:52:47', '2025-03-31 12:53:35', '2025-03-31 12:55:34', '2025-03-31 12:55:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396766528010005', 'P3', 'ASRS-1902', 4, '2025-03-31 12:52:47', '2025-03-31 12:53:38', '2025-03-31 12:54:17', '2025-03-31 12:55:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396814536010002', 'P3', 'ASRS-0519', 4, '2025-03-31 12:53:35', '2025-03-31 12:54:57', '2025-03-31 12:56:48', '2025-03-31 12:57:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396817527010002', 'P3', 'ASRS-1221', 4, '2025-03-31 12:53:38', '2025-03-31 12:54:59', '2025-03-31 12:55:53', '2025-03-31 12:56:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396898537010000', 'P3', 'ASRS-0528', 4, '2025-03-31 12:54:59', '2025-03-31 12:55:51', '2025-03-31 12:57:11', '2025-03-31 12:58:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743396950528010002', 'P3', 'ASRS-0527', 4, '2025-03-31 12:55:51', '2025-03-31 12:56:44', '2025-03-31 12:58:36', '2025-03-31 12:58:58'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397003518010002', 'P3', 'ASRS-1034', 4, '2025-03-31 12:56:44', '2025-03-31 12:58:03', '2025-03-31 12:59:04', '2025-03-31 13:00:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397236528010002', 'P3', 'ASRS-0306', 4, '2025-03-31 13:00:37', '2025-03-31 13:01:24', '2025-03-31 13:02:06', '2025-03-31 13:09:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397283518010002', 'P3', 'ASRS-0316', 4, '2025-03-31 13:01:24', '2025-03-31 13:02:48', '2025-03-31 13:09:18', '2025-03-31 13:09:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397367529010002', 'P3', 'ASRS-0338', 4, '2025-03-31 13:02:48', '2025-03-31 13:04:12', '2025-03-31 13:09:47', '2025-03-31 13:10:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397811540010002', 'P3', 'ASRS-0303', 4, '2025-03-31 13:10:12', '2025-03-31 13:11:29', '2025-03-31 13:12:11', '2025-03-31 13:13:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743397986518010002', 'P3', 'ASRS-1031', 4, '2025-03-31 13:13:07', '2025-03-31 13:13:51', '2025-03-31 13:14:30', '2025-03-31 13:15:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398121518010002', 'P3', 'ASRS-1683', 4, '2025-03-31 13:15:22', '2025-03-31 13:16:08', '2025-03-31 13:16:50', '2025-03-31 13:17:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398481518010002', 'P3', 'ASRS-0315', 4, '2025-03-31 13:21:22', '2025-03-31 13:22:12', '2025-03-31 13:23:06', '2025-03-31 13:23:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398481518010005', 'P3', 'ASRS-0332', 4, '2025-03-31 13:21:22', '2025-03-31 13:22:08', '2025-03-31 13:22:50', '2025-03-31 13:23:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398527529010002', 'P3', 'ASRS-0304', 4, '2025-03-31 13:22:08', '2025-03-31 13:23:07', '2025-03-31 13:24:01', '2025-03-31 13:24:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398531529010002', 'P3', 'ASRS-0313', 4, '2025-03-31 13:22:12', '2025-03-31 13:23:02', '2025-03-31 13:23:42', '2025-03-31 13:23:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398581531010002', 'P3', 'ASRS-1900', 4, '2025-03-31 13:23:02', '2025-03-31 13:23:53', '2025-03-31 13:24:32', '2025-03-31 13:24:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398586533010002', 'P3', 'ASRS-0388', 4, '2025-03-31 13:23:07', '2025-03-31 13:24:04', '2025-03-31 13:25:02', '2025-03-31 13:25:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398632531010002', 'P3', 'ASRS-0334', 4, '2025-03-31 13:23:53', '2025-03-31 13:24:45', '2025-03-31 13:25:23', '2025-03-31 13:26:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398643530010002', 'P3', 'ASRS-0520', 4, '2025-03-31 13:24:04', '2025-03-31 13:25:26', '2025-03-31 13:26:37', '2025-03-31 13:26:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398806518010002', 'P3', 'ASRS-0350', 4, '2025-03-31 13:26:47', '2025-03-31 13:27:31', '2025-03-31 13:28:10', '2025-03-31 13:29:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398806518010005', 'P3', 'ASRS-0384', 4, '2025-03-31 13:26:47', '2025-03-31 13:27:38', '2025-03-31 13:29:08', '2025-03-31 13:29:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398850529010002', 'P3', 'ASRS-1027', 4, '2025-03-31 13:27:31', '2025-03-31 13:28:47', '2025-03-31 13:29:33', '2025-03-31 13:29:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743398857529010002', 'P3', 'ASRS-1436', 4, '2025-03-31 13:27:38', '2025-03-31 13:28:59', '2025-03-31 13:29:53', '2025-03-31 13:30:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399021541010002', 'P3', 'ASRS-0324', 4, '2025-03-31 13:30:22', '2025-03-31 13:31:12', '2025-03-31 13:31:54', '2025-03-31 13:32:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399021541010005', 'P3', 'ASRS-0305', 4, '2025-03-31 13:30:22', '2025-03-31 13:31:23', '2025-03-31 13:32:06', '2025-03-31 13:32:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399071529010002', 'P3', 'ASRS-1245', 4, '2025-03-31 13:31:12', '2025-03-31 13:32:36', '2025-03-31 13:33:31', '2025-03-31 13:35:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399082529010002', 'P3', 'ASRS-0340', 4, '2025-03-31 13:31:23', '2025-03-31 13:32:38', '2025-03-31 13:33:16', '2025-03-31 13:33:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399155529010002', 'P3', 'ASRS-0336', 4, '2025-03-31 13:32:36', '2025-03-31 13:33:35', '2025-03-31 13:35:18', '2025-03-31 13:35:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399214527010002', 'P3', 'ASRS-1027', 4, '2025-03-31 13:33:35', '2025-03-31 13:34:58', '2025-03-31 13:35:40', '2025-03-31 13:35:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399297537010002', 'P3', 'ASRS-1529', 4, '2025-03-31 13:34:58', '2025-03-31 13:35:55', '2025-03-31 13:36:37', '2025-03-31 13:36:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399354530010002', 'P3', 'ASRS-0331', 4, '2025-03-31 13:35:55', '2025-03-31 13:37:16', '2025-03-31 13:37:59', '2025-03-31 13:38:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399491518010002', 'P3', 'ASRS-0318', 4, '2025-03-31 13:38:12', '2025-03-31 13:39:01', '2025-03-31 13:39:57', '2025-03-31 13:40:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399491518010005', 'P3', 'ASRS-0383', 4, '2025-03-31 13:38:12', '2025-03-31 13:38:59', '2025-03-31 13:39:38', '2025-03-31 13:39:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399540536010002', 'P3', 'ASRS-1268', 4, '2025-03-31 13:39:01', '2025-03-31 13:40:20', '2025-03-31 13:41:26', '2025-03-31 13:42:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399540536010005', 'P3', 'ASRS-0329', 4, '2025-03-31 13:39:01', '2025-03-31 13:39:54', '2025-03-31 13:40:33', '2025-03-31 13:41:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399681531010002', 'P3', 'ASRS-0317', 4, '2025-03-31 13:41:22', '2025-03-31 13:42:06', '2025-03-31 13:42:44', '2025-03-31 13:43:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399681531010005', 'P3', 'ASRS-1902', 4, '2025-03-31 13:41:22', '2025-03-31 13:42:10', '2025-03-31 13:43:26', '2025-03-31 13:43:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399725529010002', 'P3', 'ASRS-0519', 4, '2025-03-31 13:42:06', '2025-03-31 13:42:59', '2025-03-31 13:43:45', '2025-03-31 13:44:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399729536010002', 'P3', 'ASRS-1221', 4, '2025-03-31 13:42:10', '2025-03-31 13:43:33', '2025-03-31 13:44:15', '2025-03-31 13:44:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399812529010002', 'P3', 'ASRS-0527', 4, '2025-03-31 13:43:33', '2025-03-31 13:44:31', '2025-03-31 13:45:12', '2025-03-31 13:45:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399870531010001', 'P3', 'ASRS-1034', 4, '2025-03-31 13:44:31', '2025-03-31 13:45:53', '2025-03-31 13:46:36', '2025-03-31 13:46:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743399952518010002', 'P3', 'ASRS-0303', 4, '2025-03-31 13:45:53', '2025-03-31 13:47:17', '2025-03-31 13:47:58', '2025-03-31 13:48:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400096518010002', 'P3', 'ASRS-0306', 4, '2025-03-31 13:48:17', '2025-03-31 13:49:07', '2025-03-31 13:50:12', '2025-03-31 13:50:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400096518010005', 'P3', 'ASRS-0316', 4, '2025-03-31 13:48:17', '2025-03-31 13:49:03', '2025-03-31 13:49:42', '2025-03-31 13:50:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400146541010002', 'P3', 'ASRS-0338', 4, '2025-03-31 13:49:07', '2025-03-31 13:50:31', '2025-03-31 13:51:13', '2025-03-31 13:51:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400296518010002', 'P3', 'ASRS-1031', 4, '2025-03-31 13:51:37', '2025-03-31 13:52:25', '2025-03-31 13:53:06', '2025-03-31 13:53:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400406527010002', 'P3', 'ASRS-1683', 4, '2025-03-31 13:53:27', '2025-03-31 13:54:14', '2025-03-31 13:54:56', '2025-03-31 13:55:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400601542010002', 'P3', 'ASRS-0315', 4, '2025-03-31 13:56:42', '2025-03-31 13:57:26', '2025-03-31 13:58:05', '2025-03-31 13:58:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400601542010005', 'P3', 'ASRS-0332', 4, '2025-03-31 13:56:42', '2025-03-31 13:57:28', '2025-03-31 13:58:42', '2025-03-31 13:58:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400645529010001', 'P3', 'ASRS-0304', 4, '2025-03-31 13:57:26', '2025-03-31 13:58:17', '2025-03-31 13:58:57', '2025-03-31 13:59:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400647518010002', 'P3', 'ASRS-0313', 4, '2025-03-31 13:57:28', '2025-03-31 13:58:27', '2025-03-31 13:59:14', '2025-03-31 13:59:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400696531010002', 'P3', 'ASRS-0388', 4, '2025-03-31 13:58:17', '2025-03-31 13:59:08', '2025-03-31 13:59:47', '2025-03-31 13:59:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400706531010002', 'P3', 'ASRS-1900', 4, '2025-03-31 13:58:27', '2025-03-31 13:59:23', '2025-03-31 14:00:05', '2025-03-31 14:00:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400747532010002', 'P3', 'ASRS-0520', 4, '2025-03-31 13:59:08', '2025-03-31 13:59:59', '2025-03-31 14:00:38', '2025-03-31 14:00:44'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400762529010002', 'P3', 'ASRS-0334', 4, '2025-03-31 13:59:23', '2025-03-31 14:00:46', '2025-03-31 14:01:27', '2025-03-31 14:01:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400906529010001', 'P3', 'ASRS-0350', 4, '2025-03-31 14:01:47', '2025-03-31 14:02:59', '2025-03-31 14:03:47', '2025-03-31 14:04:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400906529010004', 'P3', 'ASRS-0384', 4, '2025-03-31 14:01:47', '2025-03-31 14:02:45', '2025-03-31 14:03:24', '2025-03-31 14:03:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400964528010002', 'P3', 'ASRS-1436', 4, '2025-03-31 14:02:45', '2025-03-31 14:04:00', '2025-03-31 14:04:39', '2025-03-31 14:05:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743400978529010002', 'P3', 'ASRS-1027', 4, '2025-03-31 14:02:59', '2025-03-31 14:04:23', '2025-03-31 14:05:16', '2025-03-31 14:05:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401136540010002', 'P3', 'ASRS-0324', 4, '2025-03-31 14:05:37', '2025-03-31 14:06:27', '2025-03-31 14:07:47', '2025-03-31 14:07:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401136540010005', 'P3', 'ASRS-0305', 4, '2025-03-31 14:05:37', '2025-03-31 14:06:23', '2025-03-31 14:07:02', '2025-03-31 14:07:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401182518010002', 'P3', 'ASRS-0340', 4, '2025-03-31 14:06:23', '2025-03-31 14:07:38', '2025-03-31 14:08:16', '2025-03-31 14:08:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401186539010002', 'P3', 'ASRS-1245', 4, '2025-03-31 14:06:27', '2025-03-31 14:07:52', '2025-03-31 14:08:34', '2025-03-31 14:08:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401257528010002', 'P3', 'ASRS-0336', 4, '2025-03-31 14:07:38', '2025-03-31 14:08:29', '2025-03-31 14:09:08', '2025-03-31 14:09:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401271536010002', 'P3', 'ASRS-0331', 4, '2025-03-31 14:07:52', '2025-03-31 14:08:49', '2025-03-31 14:09:31', '2025-03-31 14:09:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401308529010001', 'P3', 'ASRS-1027', 4, '2025-03-31 14:08:29', '2025-03-31 14:09:52', '2025-03-31 14:10:35', '2025-03-31 14:10:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401391518010002', 'P3', 'ASRS-1529', 4, '2025-03-31 14:09:52', '2025-03-31 14:11:11', '2025-03-31 14:11:50', '2025-03-31 14:12:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401536528010002', 'P3', 'ASRS-0318', 4, '2025-03-31 14:12:17', '2025-03-31 14:13:01', '2025-03-31 14:13:40', '2025-03-31 14:13:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401536529010002', 'P3', 'ASRS-0383', 4, '2025-03-31 14:12:17', '2025-03-31 14:13:12', '2025-03-31 14:13:57', '2025-03-31 14:14:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401580529010002', 'P3', 'ASRS-1268', 4, '2025-03-31 14:13:01', '2025-03-31 14:13:52', '2025-03-31 14:14:31', '2025-03-31 14:14:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401591530010002', 'P3', 'ASRS-0329', 4, '2025-03-31 14:13:12', '2025-03-31 14:14:36', '2025-03-31 14:15:44', '2025-03-31 14:16:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401766518010002', 'P3', 'ASRS-0364', 4, '2025-03-31 14:16:07', '2025-03-31 14:16:55', '2025-03-31 14:17:37', '2025-03-31 14:17:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401871531010001', 'P3', 'ASRS-0317', 4, '2025-03-31 14:17:52', '2025-03-31 14:18:39', '2025-03-31 14:19:37', '2025-03-31 14:19:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401871531010004', 'P3', 'ASRS-1902', 4, '2025-03-31 14:17:52', '2025-03-31 14:18:41', '2025-03-31 14:19:18', '2025-03-31 14:19:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401918529010001', 'P3', 'ASRS-1034', 4, '2025-03-31 14:18:39', '2025-03-31 14:19:59', '2025-03-31 14:20:41', '2025-03-31 14:20:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401920527010002', 'P3', 'ASRS-1221', 4, '2025-03-31 14:18:41', '2025-03-31 14:19:34', '2025-03-31 14:20:13', '2025-03-31 14:20:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401973541010001', 'P3', 'ASRS-0527', 4, '2025-03-31 14:19:34', '2025-03-31 14:20:28', '2025-03-31 14:21:06', '2025-03-31 14:21:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743401998530010002', 'P3', 'ASRS-0519', 4, '2025-03-31 14:19:59', '2025-03-31 14:20:58', '2025-03-31 14:21:40', '2025-03-31 14:21:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402057528010002', 'P3', 'ASRS-0303', 4, '2025-03-31 14:20:58', '2025-03-31 14:22:18', '2025-03-31 14:23:00', '2025-03-31 14:24:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402251540010002', 'P3', 'ASRS-0306', 4, '2025-03-31 14:24:12', '2025-03-31 14:24:56', '2025-03-31 14:25:35', '2025-03-31 14:25:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402251540010005', 'P3', 'ASRS-0316', 4, '2025-03-31 14:24:12', '2025-03-31 14:25:00', '2025-03-31 14:26:00', '2025-03-31 14:26:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402299531010002', 'P3', 'ASRS-0338', 4, '2025-03-31 14:25:00', '2025-03-31 14:26:21', '2025-03-31 14:27:03', '2025-03-31 14:27:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402446530010002', 'P3', 'ASRS-1031', 4, '2025-03-31 14:27:27', '2025-03-31 14:28:15', '2025-03-31 14:28:57', '2025-03-31 14:30:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402621527010002', 'P3', 'ASRS-1683', 4, '2025-03-31 14:30:22', '2025-03-31 14:31:09', '2025-03-31 14:31:51', '2025-03-31 14:31:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402756535010001', 'P3', 'ASRS-0315', 4, '2025-03-31 14:32:37', '2025-03-31 14:34:09', '2025-03-31 14:35:08', '2025-03-31 14:35:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402756535010004', 'P3', 'ASRS-0332', 4, '2025-03-31 14:32:37', '2025-03-31 14:33:21', '2025-03-31 14:34:00', '2025-03-31 14:34:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402800529010002', 'P3', 'ASRS-0313', 4, '2025-03-31 14:33:21', '2025-03-31 14:34:11', '2025-03-31 14:34:50', '2025-03-31 14:35:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402848529010002', 'P3', 'ASRS-0304', 4, '2025-03-31 14:34:09', '2025-03-31 14:35:07', '2025-03-31 14:35:57', '2025-03-31 14:36:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402850531010002', 'P3', 'ASRS-0334', 4, '2025-03-31 14:34:11', '2025-03-31 14:35:01', '2025-03-31 14:35:40', '2025-03-31 14:35:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743402906529010002', 'P3', 'ASRS-0520', 4, '2025-03-31 14:35:07', '2025-03-31 14:36:29', '2025-03-31 14:37:11', '2025-03-31 14:37:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403076518010002', 'P3', 'ASRS-0388', 4, '2025-03-31 14:37:57', '2025-03-31 14:38:59', '2025-03-31 14:44:00', '2025-03-31 14:44:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403076518010005', 'P3', 'ASRS-0350', 4, '2025-03-31 14:37:57', '2025-03-31 14:38:40', '2025-03-31 14:39:19', '2025-03-31 14:43:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403119528010002', 'P3', 'ASRS-0334', 4, '2025-03-31 14:38:40', '2025-03-31 14:39:30', '2025-03-31 14:44:18', '2025-03-31 14:44:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403138531010002', 'P3', 'ASRS-1436', 4, '2025-03-31 14:38:59', '2025-03-31 14:40:21', '2025-03-31 14:44:32', '2025-03-31 14:44:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403486530010002', 'P3', 'ASRS-0305', 4, '2025-03-31 14:44:47', '2025-03-31 14:46:00', '2025-03-31 14:46:42', '2025-03-31 14:47:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403559527010002', 'P3', 'ASRS-0340', 4, '2025-03-31 14:46:00', '2025-03-31 14:47:22', '2025-03-31 14:48:09', '2025-03-31 14:48:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403641518010002', 'P3', 'ASRS-1027', 4, '2025-03-31 14:47:22', '2025-03-31 14:48:21', '2025-03-31 14:49:03', '2025-03-31 14:49:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403700528010002', 'P3', 'ASRS-1032', 4, '2025-03-31 14:48:21', '2025-03-31 14:49:15', '2025-03-31 14:49:57', '2025-03-31 14:50:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403811529010002', 'P3', 'ASRS-0324', 4, '2025-03-31 14:50:12', '2025-03-31 14:50:57', '2025-03-31 14:51:36', '2025-03-31 14:51:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403811529010005', 'P3', 'ASRS-0333', 4, '2025-03-31 14:50:12', '2025-03-31 14:51:28', '2025-03-31 14:52:10', '2025-03-31 14:52:23'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403856518010002', 'P3', 'ASRS-0331', 4, '2025-03-31 14:50:57', '2025-03-31 14:52:17', '2025-03-31 14:52:56', '2025-03-31 14:53:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403887535010002', 'P3', 'ASRS-1902', 4, '2025-03-31 14:51:28', '2025-03-31 14:52:24', '2025-03-31 14:53:07', '2025-03-31 14:53:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403943518010002', 'P3', 'ASRS-1526', 4, '2025-03-31 14:52:24', '2025-03-31 14:53:18', '2025-03-31 14:54:00', '2025-03-31 14:54:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743403997529010001', 'P3', 'ASRS-1027', 4, '2025-03-31 14:53:18', '2025-03-31 14:54:43', '2025-03-31 14:55:24', '2025-03-31 14:55:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404082518010002', 'P3', 'ASRS-1529', 4, '2025-03-31 14:54:43', '2025-03-31 14:56:06', '2025-03-31 14:56:48', '2025-03-31 14:57:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404165528010002', 'P3', 'ASRS-0303', 4, '2025-03-31 14:56:06', '2025-03-31 14:57:29', '2025-03-31 14:58:11', '2025-03-31 14:58:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404306528010001', 'P3', 'ASRS-0306', 4, '2025-03-31 14:58:27', '2025-03-31 14:59:18', '2025-03-31 15:00:06', '2025-03-31 15:00:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404306528010004', 'P3', 'ASRS-0316', 4, '2025-03-31 14:58:27', '2025-03-31 14:59:12', '2025-03-31 14:59:51', '2025-03-31 15:00:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404357529010002', 'P3', 'ASRS-1221', 4, '2025-03-31 14:59:18', '2025-03-31 15:00:15', '2025-03-31 15:00:57', '2025-03-31 15:01:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404414518010002', 'P3', 'ASRS-0338', 4, '2025-03-31 15:00:15', '2025-03-31 15:01:36', '2025-03-31 15:02:18', '2025-03-31 15:02:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404546529010002', 'P3', 'ASRS-1034', 4, '2025-03-31 15:02:27', '2025-03-31 15:03:20', '2025-03-31 15:03:59', '2025-03-31 15:04:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404599535010002', 'P3', 'ASRS-0519', 4, '2025-03-31 15:03:20', '2025-03-31 15:04:13', '2025-03-31 15:04:52', '2025-03-31 15:06:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404811530010002', 'P3', 'ASRS-0318', 4, '2025-03-31 15:06:52', '2025-03-31 15:07:40', '2025-03-31 15:08:21', '2025-03-31 15:10:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743404859530010002', 'P3', 'ASRS-1031', 4, '2025-03-31 15:07:40', '2025-03-31 15:09:01', '2025-03-31 15:10:56', '2025-03-31 15:11:08'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405071536010002', 'P3', 'ASRS-1524', 4, '2025-03-31 15:11:12', '2025-03-31 15:12:03', '2025-03-31 15:12:42', '2025-03-31 15:13:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405071536010005', 'P3', 'ASRS-0337', 4, '2025-03-31 15:11:12', '2025-03-31 15:12:08', '2025-03-31 15:13:06', '2025-03-31 15:13:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405201533010002', 'P3', 'ASRS-0522', 4, '2025-03-31 15:13:22', '2025-03-31 15:14:09', '2025-03-31 15:14:49', '2025-03-31 15:15:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405201533010005', 'P3', 'ASRS-1088', 4, '2025-03-31 15:13:22', '2025-03-31 15:14:07', '2025-03-31 15:15:31', '2025-03-31 15:15:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405466528010002', 'P3', 'ASRS-0315', 4, '2025-03-31 15:17:47', '2025-03-31 15:18:38', '2025-03-31 15:19:30', '2025-03-31 15:19:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405466528010005', 'P3', 'ASRS-0313', 4, '2025-03-31 15:17:47', '2025-03-31 15:18:32', '2025-03-31 15:19:11', '2025-03-31 15:19:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405511531010002', 'P3', 'ASRS-0388', 4, '2025-03-31 15:18:32', '2025-03-31 15:19:22', '2025-03-31 15:20:01', '2025-03-31 15:20:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405517529010002', 'P3', 'ASRS-0332', 4, '2025-03-31 15:18:38', '2025-03-31 15:19:34', '2025-03-31 15:20:22', '2025-03-31 15:20:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405561529010002', 'P3', 'ASRS-1900', 4, '2025-03-31 15:19:22', '2025-03-31 15:20:13', '2025-03-31 15:20:51', '2025-03-31 15:21:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405573518010002', 'P3', 'ASRS-0304', 4, '2025-03-31 15:19:34', '2025-03-31 15:20:32', '2025-03-31 15:21:57', '2025-03-31 15:22:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405631531010001', 'P3', 'ASRS-0520', 4, '2025-03-31 15:20:32', '2025-03-31 15:21:57', '2025-03-31 15:22:49', '2025-03-31 15:22:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405716530010002', 'P3', 'ASRS-0334', 4, '2025-03-31 15:21:57', '2025-03-31 15:23:19', '2025-03-31 15:24:01', '2025-03-31 15:24:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405876530010002', 'P3', 'ASRS-0350', 4, '2025-03-31 15:24:37', '2025-03-31 15:25:35', '2025-03-31 15:26:41', '2025-03-31 15:27:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405876530010005', 'P3', 'ASRS-1436', 4, '2025-03-31 15:24:37', '2025-03-31 15:25:20', '2025-03-31 15:25:59', '2025-03-31 15:26:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743405934529010002', 'P3', 'ASRS-0384', 4, '2025-03-31 15:25:35', '2025-03-31 15:26:58', '2025-03-31 15:27:40', '2025-03-31 15:28:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406017518010002', 'P3', 'ASRS-1027', 4, '2025-03-31 15:26:58', '2025-03-31 15:27:53', '2025-03-31 15:28:35', '2025-03-31 15:32:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406239570010000', 'P3', 'ASRS-0301', 4, '2025-03-31 15:30:40', '2025-03-31 15:31:29', '2025-03-31 15:32:12', '2025-03-31 15:33:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406395539010000', 'P3', 'ASRS-0324', 4, '2025-03-31 15:33:16', '2025-03-31 15:34:11', '2025-03-31 15:35:05', '2025-03-31 15:35:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406395539010003', 'P3', 'ASRS-0340', 4, '2025-03-31 15:33:16', '2025-03-31 15:34:06', '2025-03-31 15:34:45', '2025-03-31 15:34:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406445529010002', 'P3', 'ASRS-0517', 4, '2025-03-31 15:34:06', '2025-03-31 15:34:58', '2025-03-31 15:35:37', '2025-03-31 15:35:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406450528010002', 'P3', 'ASRS-0305', 4, '2025-03-31 15:34:11', '2025-03-31 15:35:32', '2025-03-31 15:36:15', '2025-03-31 15:36:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406531543010002', 'P3', 'ASRS-0336', 4, '2025-03-31 15:35:32', '2025-03-31 15:36:29', '2025-03-31 15:37:12', '2025-03-31 15:37:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406588530010002', 'P3', 'ASRS-1027', 4, '2025-03-31 15:36:29', '2025-03-31 15:37:53', '2025-03-31 15:38:35', '2025-03-31 15:38:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406672528010002', 'P3', 'ASRS-1529', 4, '2025-03-31 15:37:53', '2025-03-31 15:39:11', '2025-03-31 15:39:53', '2025-03-31 15:41:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406750528010002', 'P3', 'ASRS-0359', 4, '2025-03-31 15:39:11', '2025-03-31 15:40:31', '2025-03-31 15:41:55', '2025-03-31 15:42:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406830529010002', 'P3', 'ASRS-0331', 4, '2025-03-31 15:40:31', '2025-03-31 15:41:27', '2025-03-31 15:42:54', '2025-03-31 15:43:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743406971518010002', 'P3', 'ASRS-0298', 4, '2025-03-31 15:42:52', '2025-03-31 15:43:37', '2025-03-31 15:44:15', '2025-03-31 15:44:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407086529010002', 'P3', 'ASRS-0318', 4, '2025-03-31 15:44:47', '2025-03-31 15:45:31', '2025-03-31 15:46:13', '2025-03-31 15:46:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407086529010005', 'P3', 'ASRS-0383', 4, '2025-03-31 15:44:47', '2025-03-31 15:45:35', '2025-03-31 15:46:26', '2025-03-31 15:46:48'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407130529010002', 'P3', 'ASRS-0329', 4, '2025-03-31 15:45:31', '2025-03-31 15:46:50', '2025-03-31 15:47:32', '2025-03-31 15:47:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407276518010002', 'P3', 'ASRS-0317', 4, '2025-03-31 15:47:57', '2025-03-31 15:48:44', '2025-03-31 15:50:07', '2025-03-31 15:50:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407276518010005', 'P3', 'ASRS-0527', 4, '2025-03-31 15:47:57', '2025-03-31 15:48:47', '2025-03-31 15:49:40', '2025-03-31 15:50:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407323529010001', 'P3', 'ASRS-1902', 4, '2025-03-31 15:48:44', '2025-03-31 15:49:34', '2025-03-31 15:50:23', '2025-03-31 15:50:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407326518010002', 'P3', 'ASRS-1034', 4, '2025-03-31 15:48:47', '2025-03-31 15:50:08', '2025-03-31 15:50:51', '2025-03-31 15:51:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407373518010002', 'P3', 'ASRS-1221', 4, '2025-03-31 15:49:34', '2025-03-31 15:50:26', '2025-03-31 15:51:11', '2025-03-31 15:51:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407407518010002', 'P3', 'ASRS-0519', 4, '2025-03-31 15:50:08', NULL, '2025-03-31 15:51:49', '2025-03-31 15:52:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407466518010002', 'P3', 'ASRS-0303', 4, '2025-03-31 15:51:07', '2025-03-31 15:52:31', '2025-03-31 15:53:12', '2025-03-31 15:53:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407636518010002', 'P3', 'ASRS-0306', 4, '2025-03-31 15:53:57', '2025-03-31 15:54:47', '2025-03-31 15:56:31', '2025-03-31 15:56:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407636518010005', 'P3', 'ASRS-0316', 4, '2025-03-31 15:53:57', '2025-03-31 15:54:41', '2025-03-31 15:55:19', '2025-03-31 15:56:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407686529010002', 'P3', 'ASRS-0338', 4, '2025-03-31 15:54:47', '2025-03-31 15:56:11', '2025-03-31 15:56:56', '2025-03-31 15:57:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743407836528010000', 'P3', 'ASRS-1031', 4, '2025-03-31 15:57:17', '2025-03-31 15:58:08', '2025-03-31 15:58:47', '2025-03-31 15:59:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408116518010002', 'P3', 'ASRS-0315', 4, '2025-03-31 16:01:57', '2025-03-31 16:02:41', '2025-03-31 16:03:20', '2025-03-31 16:05:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408116518010005', 'P3', 'ASRS-0388', 4, '2025-03-31 16:01:57', '2025-03-31 16:02:45', '2025-03-31 16:05:11', '2025-03-31 16:05:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408160529010001', 'P3', 'ASRS-0332', 4, '2025-03-31 16:02:41', '2025-03-31 16:03:32', '2025-03-31 16:05:44', '2025-03-31 16:06:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408164518010002', 'P3', 'ASRS-1900', 4, '2025-03-31 16:02:45', '2025-03-31 16:03:43', '2025-03-31 16:06:05', '2025-03-31 16:06:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408211529010002', 'P3', 'ASRS-0304', 4, '2025-03-31 16:03:32', '2025-03-31 16:04:23', '2025-03-31 16:06:45', '2025-03-31 16:06:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408222518010002', 'P3', 'ASRS-0520', 4, '2025-03-31 16:03:43', '2025-03-31 16:04:40', '2025-03-31 16:06:25', '2025-03-31 16:06:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408279539010001', 'P3', 'ASRS-0334', 4, '2025-03-31 16:04:40', '2025-03-31 16:05:38', '2025-03-31 16:06:58', '2025-03-31 16:08:36'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408337518010002', 'P3', 'ASRS-0313', 4, '2025-03-31 16:05:38', '2025-03-31 16:06:35', '2025-03-31 16:08:42', '2025-03-31 16:08:49'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408531530010002', 'P3', 'ASRS-0350', 4, '2025-03-31 16:08:52', '2025-03-31 16:09:43', '2025-04-01 08:32:25', '2025-04-01 08:32:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408531530010005', 'P3', 'ASRS-1027', 4, '2025-03-31 16:08:52', '2025-03-31 16:09:38', '2025-03-31 16:10:17', '2025-04-01 08:32:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743408582531010002', 'P3', 'ASRS-0384', 4, '2025-03-31 16:09:43', '2025-03-31 16:11:06', '2025-04-01 08:32:48', '2025-04-01 08:33:18'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467601518010002', 'P3', 'ASRS-0324', 4, '2025-04-01 08:33:22', '2025-04-01 08:34:47', '2025-04-01 08:39:07', '2025-04-01 08:39:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467601518010005', 'P3', 'ASRS-0340', 4, '2025-04-01 08:33:22', '2025-04-01 08:34:25', '2025-04-01 08:35:07', '2025-04-01 08:39:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467664529010002', 'P3', 'ASRS-0336', 4, '2025-04-01 08:34:25', '2025-04-01 08:35:48', '2025-04-01 08:39:45', '2025-04-01 08:39:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467686518010002', 'P3', 'ASRS-0305', 4, '2025-04-01 08:34:47', '2025-04-01 08:35:37', '2025-04-01 08:39:31', '2025-04-01 08:39:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467736518010002', 'P3', 'ASRS-0331', 4, '2025-04-01 08:35:37', '2025-04-01 08:36:28', '2025-04-01 08:40:30', '2025-04-01 08:40:41'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467747531010001', 'P3', 'ASRS-0517', 4, '2025-04-01 08:35:48', '2025-04-01 08:36:42', '2025-04-01 08:41:02', '2025-04-01 08:41:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467801530010002', 'P3', 'ASRS-1027', 4, '2025-04-01 08:36:42', '2025-04-01 08:37:37', '2025-04-01 08:40:47', '2025-04-01 08:40:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743467856518010002', 'P3', 'ASRS-0359', 4, '2025-04-01 08:37:37', '2025-04-01 08:38:33', '2025-04-01 08:39:56', '2025-04-01 08:40:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468071528010002', 'P3', 'ASRS-0318', 4, '2025-04-01 08:41:12', '2025-04-01 08:42:44', '2025-04-01 08:43:25', '2025-04-01 08:43:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468071529010002', 'P3', 'ASRS-0383', 4, '2025-04-01 08:41:12', '2025-04-01 08:42:03', '2025-04-01 08:42:41', '2025-04-01 08:42:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468163536010002', 'P3', 'ASRS-0329', 4, '2025-04-01 08:42:44', '2025-04-01 08:44:03', '2025-04-01 08:44:45', '2025-04-01 08:45:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468326529010002', 'P3', 'ASRS-0317', 4, '2025-04-01 08:45:27', '2025-04-01 08:46:11', '2025-04-01 08:46:49', '2025-04-01 08:47:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468326530010002', 'P3', 'ASRS-1902', 4, '2025-04-01 08:45:27', '2025-04-01 08:46:16', '2025-04-01 08:47:22', '2025-04-01 08:48:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468370528010002', 'P3', 'ASRS-1034', 4, '2025-04-01 08:46:11', '2025-04-01 08:47:04', '2025-04-01 08:48:10', '2025-04-01 08:48:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468375527010002', 'P3', 'ASRS-0527', 4, '2025-04-01 08:46:16', '2025-04-01 08:47:40', '2025-04-01 08:48:44', '2025-04-01 08:49:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468423531010002', 'P3', 'ASRS-0519', 4, '2025-04-01 08:47:04', '2025-04-01 08:47:57', '2025-04-01 08:49:10', '2025-04-01 08:49:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468459539010002', 'P3', 'ASRS-1221', 4, '2025-04-01 08:47:40', '2025-04-01 08:48:38', '2025-04-01 08:49:25', '2025-04-01 08:49:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468517529010002', 'P3', 'ASRS-0303', 4, '2025-04-01 08:48:38', '2025-04-01 08:50:01', '2025-04-01 08:50:43', '2025-04-01 08:51:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468666518010002', 'P3', 'ASRS-0306', 4, '2025-04-01 08:51:07', '2025-04-01 08:51:54', '2025-04-01 08:52:32', '2025-04-01 08:53:17'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468666518010005', 'P3', 'ASRS-0316', 4, '2025-04-01 08:51:07', '2025-04-01 08:52:16', '2025-04-01 08:53:22', '2025-04-01 08:53:33'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468735529010002', 'P3', 'ASRS-0338', 4, '2025-04-01 08:52:16', '2025-04-01 08:53:16', '2025-04-01 08:53:57', '2025-04-01 08:54:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743468846529010002', 'P3', 'ASRS-1031', 4, '2025-04-01 08:54:07', '2025-04-01 08:54:57', '2025-04-01 08:55:38', '2025-04-01 08:58:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469241518010002', 'P3', 'ASRS-0315', 4, '2025-04-01 09:00:42', '2025-04-01 09:01:31', '2025-04-01 09:09:26', '2025-04-01 09:09:46'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469241518010005', 'P3', 'ASRS-0388', 4, '2025-04-01 09:00:42', '2025-04-01 09:01:27', '2025-04-01 09:02:06', '2025-04-01 09:09:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469286528010001', 'P3', 'ASRS-1900', 4, '2025-04-01 09:01:27', '2025-04-01 09:02:18', '2025-04-01 09:09:51', '2025-04-01 09:09:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469290526010002', 'P3', 'ASRS-0332', 4, '2025-04-01 09:01:31', '2025-04-01 09:02:29', '2025-04-01 09:10:00', '2025-04-01 09:10:13'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469337529010002', 'P3', 'ASRS-0520', 4, '2025-04-01 09:02:18', '2025-04-01 09:03:09', '2025-04-01 09:11:14', '2025-04-01 09:11:24'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469348518010002', 'P3', 'ASRS-0304', 4, '2025-04-01 09:02:29', '2025-04-01 09:03:25', '2025-04-01 09:11:30', '2025-04-01 09:12:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469388518010002', 'P3', 'ASRS-0313', 4, '2025-04-01 09:03:09', '2025-04-01 09:04:00', '2025-04-01 09:11:00', '2025-04-01 09:11:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469404529010002', 'P3', 'ASRS-0334', 4, '2025-04-01 09:03:25', '2025-04-01 09:04:24', '2025-04-01 09:10:18', '2025-04-01 09:10:54'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469926530010002', 'P3', 'ASRS-0350', 4, '2025-04-01 09:12:07', '2025-04-01 09:13:27', '2025-04-01 09:14:40', '2025-04-01 09:15:02'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469926530010005', 'P3', 'ASRS-0384', 4, '2025-04-01 09:12:07', '2025-04-01 09:13:13', '2025-04-01 09:13:55', '2025-04-01 09:14:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743469992531010002', 'P3', 'ASRS-1027', 4, '2025-04-01 09:13:13', '2025-04-01 09:14:37', '2025-04-01 09:15:18', '2025-04-01 09:18:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470311527010002', 'P3', 'ASRS-0324', 4, '2025-04-01 09:18:32', '2025-04-01 09:19:16', '2025-04-01 09:19:54', '2025-04-01 09:20:29'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470311527010005', 'P3', 'ASRS-0305', 4, '2025-04-01 09:18:32', '2025-04-01 09:19:18', '2025-04-01 09:20:35', '2025-04-01 09:20:50'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470355542010002', 'P3', 'ASRS-1245', 4, '2025-04-01 09:19:16', '2025-04-01 09:20:07', '2025-04-01 09:20:56', '2025-04-01 09:21:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470357530010002', 'P3', 'ASRS-0340', 4, '2025-04-01 09:19:18', '2025-04-01 09:20:41', '2025-04-01 09:21:23', '2025-04-01 09:21:32'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470406530010002', 'P3', 'ASRS-0336', 4, '2025-04-01 09:20:07', '2025-04-01 09:20:58', '2025-04-01 09:21:38', '2025-04-01 09:21:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470440529010002', 'P3', 'ASRS-1027', 4, '2025-04-01 09:20:41', '2025-04-01 09:21:41', '2025-04-01 09:22:24', '2025-04-01 09:22:52'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470457529010002', 'P3', 'ASRS-0331', 4, '2025-04-01 09:20:58', '2025-04-01 09:21:49', '2025-04-01 09:22:57', '2025-04-01 09:23:30'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470500529010002', 'P3', 'ASRS-0359', 4, '2025-04-01 09:21:41', '2025-04-01 09:23:05', '2025-04-01 09:23:46', '2025-04-01 09:24:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470656527010002', 'P3', 'ASRS-0318', 4, '2025-04-01 09:24:17', '2025-04-01 09:25:01', '2025-04-01 09:25:40', '2025-04-01 09:26:26'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470656528010002', 'P3', 'ASRS-0383', 4, '2025-04-01 09:24:17', '2025-04-01 09:25:18', '2025-04-01 09:26:32', '2025-04-01 09:26:42'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743470717529010002', 'P3', 'ASRS-0329', 4, '2025-04-01 09:25:18', '2025-04-01 09:26:42', '2025-04-01 09:27:23', '2025-04-01 09:45:10'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743471911518010002', 'P3', 'ASRS-0317', 4, '2025-04-01 09:45:12', '2025-04-01 09:46:03', '2025-04-01 09:46:51', '2025-04-01 09:47:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743471911518010005', 'P3', 'ASRS-1902', 4, '2025-04-01 09:45:12', '2025-04-01 09:45:56', '2025-04-01 09:47:18', '2025-04-01 09:49:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743471955530010002', 'P3', 'ASRS-0527', 4, '2025-04-01 09:45:56', '2025-04-01 09:46:49', '2025-04-01 09:49:17', '2025-04-01 09:49:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743471962529010002', 'P3', 'ASRS-1034', 4, '2025-04-01 09:46:03', '2025-04-01 09:47:23', '2025-04-01 09:49:40', '2025-04-01 09:49:47'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472008518010002', 'P3', 'ASRS-1221', 4, '2025-04-01 09:46:49', '2025-04-01 09:47:42', '2025-04-01 09:49:53', '2025-04-01 09:50:06'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472042528010002', 'P3', 'ASRS-0519', 4, '2025-04-01 09:47:23', '2025-04-01 09:48:20', '2025-04-01 09:50:12', '2025-04-01 09:50:40'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472099537010002', 'P3', 'ASRS-0303', 4, '2025-04-01 09:48:20', '2025-04-01 09:49:43', '2025-04-01 09:50:45', '2025-04-01 09:50:59'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472261542010002', 'P3', 'ASRS-0306', 4, '2025-04-01 09:51:02', '2025-04-01 09:52:21', '2025-04-01 09:52:59', '2025-04-01 09:53:20'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472261542010005', 'P3', 'ASRS-0316', 4, '2025-04-01 09:51:02', '2025-04-01 09:52:32', '2025-04-01 09:53:25', '2025-04-01 09:54:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472351536010002', 'P3', 'ASRS-0338', 4, '2025-04-01 09:52:32', '2025-04-01 09:53:54', '2025-04-01 09:54:36', '2025-04-01 09:55:05'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472506518010002', 'P3', 'ASRS-1031', 4, '2025-04-01 09:55:07', '2025-04-01 09:55:57', '2025-04-01 09:56:38', '2025-04-01 09:57:57'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472681529010002', 'P3', 'ASRS-1683', 4, '2025-04-01 09:58:02', '2025-04-01 09:58:51', '2025-04-01 09:59:32', '2025-04-01 09:59:38'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472876530010002', 'P3', 'ASRS-0315', 4, '2025-04-01 10:01:17', '2025-04-01 10:02:02', '2025-04-01 10:02:40', '2025-04-01 10:03:00'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472876530010005', 'P3', 'ASRS-0304', 4, '2025-04-01 10:01:17', '2025-04-01 10:02:06', '2025-04-01 10:03:06', '2025-04-01 10:03:09'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472921529010000', 'P3', 'ASRS-0332', 4, '2025-04-01 10:02:02', '2025-04-01 10:02:52', '2025-04-01 10:03:31', '2025-04-01 10:03:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472925529010002', 'P3', 'ASRS-0388', 4, '2025-04-01 10:02:06', '2025-04-01 10:03:02', '2025-04-01 10:03:50', '2025-04-01 10:04:01'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472971529010002', 'P3', 'ASRS-0313', 4, '2025-04-01 10:02:52', '2025-04-01 10:03:44', '2025-04-01 10:04:23', '2025-04-01 10:04:31'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743472981518010002', 'P3', 'ASRS-0350', 4, '2025-04-01 10:03:02', '2025-04-01 10:03:57', '2025-04-01 10:04:39', '2025-04-01 10:04:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473036518010002', 'P3', 'ASRS-0520', 4, '2025-04-01 10:03:57', '2025-04-01 10:05:20', '2025-04-01 10:06:01', '2025-04-01 10:06:07'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473119518010002', 'P3', 'ASRS-0334', 4, '2025-04-01 10:05:20', '2025-04-01 10:06:41', '2025-04-01 10:07:23', '2025-04-01 10:07:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473266529010002', 'P3', 'ASRS-0324', 4, '2025-04-01 10:07:47', '2025-04-01 10:08:35', '2025-04-01 10:09:22', '2025-04-01 10:09:28'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473266529010005', 'P3', 'ASRS-0305', 4, '2025-04-01 10:07:47', '2025-04-01 10:08:31', '2025-04-01 10:09:10', '2025-04-01 10:09:16'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473310540010002', 'P3', 'ASRS-0340', 4, '2025-04-01 10:08:31', '2025-04-01 10:09:22', '2025-04-01 10:10:00', '2025-04-01 10:10:04'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473361528010002', 'P3', 'ASRS-1027', 4, '2025-04-01 10:09:22', '2025-04-01 10:10:13', '2025-04-01 10:10:51', '2025-04-01 10:11:11'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473412528010002', 'P3', 'ASRS-1032', 4, '2025-04-01 10:10:13', '2025-04-01 10:11:31', '2025-04-01 10:12:10', '2025-04-01 10:12:37'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473490529010002', 'P3', 'ASRS-0359', 4, '2025-04-01 10:11:31', '2025-04-01 10:12:22', '2025-04-01 10:13:01', '2025-04-01 10:13:21'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473606529010001', 'P3', 'ASRS-0306', 4, '2025-04-01 10:13:27', '2025-04-01 10:14:53', '2025-04-01 10:15:35', '2025-04-01 10:15:43'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473606529010004', 'P3', 'ASRS-0333', 4, '2025-04-01 10:13:27', '2025-04-01 10:14:20', '2025-04-01 10:14:58', '2025-04-01 10:15:14'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473659518010002', 'P3', 'ASRS-1526', 4, '2025-04-01 10:14:20', '2025-04-01 10:15:39', '2025-04-01 10:16:18', '2025-04-01 10:16:35'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473692518010002', 'P3', 'ASRS-1902', 4, '2025-04-01 10:14:53', '2025-04-01 10:15:50', '2025-04-01 10:16:41', '2025-04-01 10:16:56'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473738518010002', 'P3', 'ASRS-1221', 4, '2025-04-01 10:15:39', '2025-04-01 10:16:33', '2025-04-01 10:17:13', '2025-04-01 10:17:19'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473749528010002', 'P3', 'ASRS-0331', 4, '2025-04-01 10:15:50', '2025-04-01 10:16:49', '2025-04-01 10:17:31', '2025-04-01 10:17:45'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473792518010002', 'P3', 'ASRS-0303', 4, '2025-04-01 10:16:33', '2025-04-01 10:17:51', '2025-04-01 10:18:29', '2025-04-01 10:18:51'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473936518010002', 'P3', 'ASRS-1034', 4, '2025-04-01 10:18:57', '2025-04-01 10:19:58', '2025-04-01 10:20:39', '2025-04-01 10:20:55'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743473997529010002', 'P3', 'ASRS-0519', 4, '2025-04-01 10:19:58', '2025-04-01 10:21:20', '2025-04-01 10:22:02', '2025-04-01 10:22:34'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474156530010002', 'P3', 'ASRS-0316', 4, '2025-04-01 10:22:37', '2025-04-01 10:23:23', '2025-04-01 10:24:01', '2025-04-01 10:24:15'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474156530010005', 'P3', 'ASRS-0338', 4, '2025-04-01 10:22:37', '2025-04-01 10:23:29', '2025-04-01 10:24:21', '2025-04-01 10:24:27'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474208529010002', 'P3', 'ASRS-1031', 4, '2025-04-01 10:23:29', '2025-04-01 10:24:47', '2025-04-01 10:25:29', '2025-04-01 10:25:39'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474341529010002', 'P3', 'ASRS-0337', 4, '2025-04-01 10:25:42', '2025-04-01 10:26:27', '2025-04-01 10:27:05', '2025-04-01 10:27:25'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474386541010002', 'P3', 'ASRS-0501', 4, '2025-04-01 10:26:27', '2025-04-01 10:27:20', '2025-04-01 10:27:58', '2025-04-01 10:29:03'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474546534010002', 'P3', 'ASRS-1524', 4, '2025-04-01 10:29:07', '2025-04-01 10:29:57', '2025-04-01 10:30:39', '2025-04-01 11:40:53'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743474596529010002', 'P3', 'ASRS-0522', 4, '2025-04-01 10:29:57', '2025-04-01 10:31:18', '2025-04-01 11:40:58', '2025-04-01 11:41:12'); -INSERT INTO `t_app_pick_task_bak` (`pick_id`, `pick_stand`, `vehicle_id`, `pick_status`, `create_time`, `send_time`, `arrive_time`, `leave_time`) VALUES ('1743478876528010002', 'P3', 'ASRS-1088', 4, '2025-04-01 11:41:17', '2025-04-01 11:42:08', '2025-04-01 11:42:46', '2025-04-01 11:43:20'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_product --- ---------------------------- -DROP TABLE IF EXISTS `t_app_product`; -CREATE TABLE `t_app_product` ( - `template_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键id', - `model` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '机型', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号--dbs零件号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '原材料号', - `goods_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '原材料物料描述', - `quantity_1_pair` int NOT NULL COMMENT '单套数量', - `box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `quantity_of_pair` int NOT NULL COMMENT '套数', - `first_import_time` datetime DEFAULT NULL COMMENT '初次导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '初次导入用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - PRIMARY KEY (`template_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_product --- ---------------------------- -BEGIN; -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798649010000', 'WL-ZL50', '4T2747', '1U0322', '滑动轴承', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798654010000', 'WL-ZL50', '4T2747', '3G2683', '钢铁制塞堵', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010000', 'WL-ZL50', '4T2747', '2S4078', '橡胶密封圈', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010001', 'WL-ZL50', '4T2747', '7J7423', '阀芯', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010002', 'WL-ZL50', '4T2747', '7S8491', '钢铁弹簧', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010003', 'WL-ZL50', '4T2747', '3J7354', '橡胶密封圈', 3, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010004', 'WL-ZL50', '4T2747', '9S4182', '钢铁制塞堵', 3, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010005', 'WL-ZL50', '4T2747', '3G4135', '钢铁制塞堵', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010006', 'WL-ZL50', '4T2747', '7M8485', '橡胶密封圈', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010007', 'WL-ZL50', '4T2747', '1086428', '安全阀', 1, 'A', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010008', 'WL-ZL50', '4T2747', '4T9312', '阀座', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798655010009', 'WL-ZL50', '4T2747', '1H9696', '橡胶密封圈', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010000', 'WL-ZL50', '4T2747', '5P1075', '钢铁制垫圈', 4, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010001', 'WL-ZL50', '4T2747', '5S7383', '钢铁制螺栓', 2, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010002', 'WL-ZL50', '4T2747', '3385494', '阀用止动块', 2, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010003', 'WL-ZL50', '4T2747', '3G8991', '钢铁弹簧', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010004', 'WL-ZL50', '4T2747', '3385495', '钢铁弹簧', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010005', 'WL-ZL50', '4T2747', '4D6433', '钢铁制垫圈', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010006', 'WL-ZL50', '4T2747', '7K0734', '钢铁制螺栓', 1, 'B', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010007', 'WL-ZL50', '4T2747', '0041963', '橡胶密封圈', 1, 'C', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010008', 'WL-ZL50', '4T2747', '8T9378', '钢铁制螺栓', 2, 'C', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798656010009', 'WL-ZL50', '4T2747', '8T9392', '钢铁制螺栓', 5, 'C', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010000', 'WL-ZL50', '4T2747', '3G4113', '钢铁安装盖', 1, 'C', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010001', 'WL-ZL50', '4T2747', '6V8188', '钢铁制螺母', 5, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010002', 'WL-ZL50', '4T2747', '4J0522', '橡胶密封圈', 2, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010003', 'WL-ZL50', '4T2747', '4J0523', '橡胶密封圈', 1, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010004', 'WL-ZL50', '4T2747', '3G4114', '钢铁安装板', 1, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010005', 'WL-ZL50', '4T2747', '3J5553', '纸制衬垫', 1, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010006', 'WL-ZL50', '4T2747', '8J5893', '钢铁安装盖', 1, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010007', 'WL-ZL50', '4T2747', '8T9383', '钢铁制螺栓', 2, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010008', 'WL-ZL50', '4T2747', '4D2886', '钢铁制管夹', 2, 'D', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798657010009', 'WL-ZL50', '4T2747', '3J5554', '纸制衬垫', 2, 'E', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798658010000', 'WL-ZL50', '4T2747', '8J4398', '钢铁安装盖', 2, 'E', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798658010001', 'WL-ZL50', '4T2747', '7X0272', '钢铁制螺栓', 4, 'E', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798658010002', 'WL-ZL50', '4T2747', '3J1907', '橡胶密封圈', 2, 'E', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309798658010003', 'WL-ZL50', '4T2747', '9S4191', '钢铁制塞堵', 2, 'E', 1, '2025-03-07 09:09:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309845336010000', 'WL-ZL50', '4T4936', '3385494', 'RETAINER', 4, 'A', 1, '2025-03-07 09:10:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309845336010001', 'WL-ZL50', '4T4936', '3G8991', 'SPRING', 2, 'A', 1, '2025-03-07 09:10:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309845336010002', 'WL-ZL50', '4T4936', '3385495', 'SPRING', 2, 'A', 1, '2025-03-07 09:10:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309845336010003', 'WL-ZL50', '4T4936', '4D6433', 'WASHER-HARD', 2, 'A', 1, '2025-03-07 09:10:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309845336010004', 'WL-ZL50', '4T4936', '7K0734', 'BOLT-LOCKING', 2, 'A', 1, '2025-03-07 09:10:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010000', 'QD1', '1096942', '9S8006', '塞子', 1, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010001', 'QD1', '1096942', '2M9780', '密封圈', 1, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010002', 'QD1', '1096942', '9S8003', '塞子', 2, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010003', 'QD1', '1096942', '1J9671', '密封圈', 2, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010004', 'QD1', '1096942', '5H4019', '盖子', 4, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010005', 'QD1', '1096942', '4J0520', '密封圈', 4, 'A', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010006', 'QD1', '1096942', '6204980', '定位环', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010007', 'QD1', '1096942', '9T9836', '节流套', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873326010008', 'QD1', '1096942', '1006211', '活塞', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010000', 'QD1', '1096942', '3L3813', '销', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010001', 'QD1', '1096942', '1P3706', '密封圈', 2, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010002', 'QD1', '1096942', '1081847', '弹簧', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010003', 'QD1', '1096942', '6E4907', '挡圈', 1, 'B', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010004', 'QD1', '1096942', '6E4532', '盖', 1, 'C', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010005', 'QD1', '1096942', '7B7525', '螺钉', 8, 'C', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010006', 'QD1', '1096942', '6E4533', '盖', 1, 'D', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010007', 'QD1', '1096942', '5S7382', '螺栓', 16, 'D', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010008', 'QD1', '1096942', '8T4896', '垫片', 16, 'E', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010009', 'QD1', '1096942', '1P4577', '法兰', 8, 'E', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010010', 'QD1', '1096942', '1096944', '铭牌', 1, 'E', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010011', 'QD1', '1096942', '1P4577', '法兰', 4, 'F', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010012', 'QD1', '1096942', '5H4019', '盖子', 2, 'F', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010013', 'QD1', '1096942', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010014', 'QD1', '1096942', '5S7382', '螺栓', 8, 'F', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309873327010015', 'QD1', '1096942', '8T4896', '垫片', 8, 'F', 4, '2025-03-07 09:11:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888052010000', 'QD#1', '1135428', '9S8006', 'PLUG-HEX. SOCKET', 1, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010000', 'QD#1', '1135428', '2M9780', 'SEAL-O-RING (T01056.67459T09)', 1, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010001', 'QD#1', '1135428', '9S8003', 'PLUG-STOR', 2, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010002', 'QD#1', '1135428', '1J9671', 'SEAL-O RING', 2, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010003', 'QD#1', '1135428', '5H4019', 'COVER', 4, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010004', 'QD#1', '1135428', '4J0520', 'SEAL-O-RING', 4, 'A', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010005', 'QD#1', '1135428', '6204980', 'RING-RETAINING', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010006', 'QD#1', '1135428', '9T9836', 'SLEEVE-ORIFICE', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010007', 'QD#1', '1135428', '1006211', 'PISTON', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010008', 'QD#1', '1135428', '3L3813', 'PIN', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010009', 'QD#1', '1135428', '1P3706', 'SEAL-RECTANGULA', 2, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010010', 'QD#1', '1135428', '1081847', 'SPRING', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010011', 'QD#1', '1135428', '6E4907', 'STOP', 1, 'B', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010012', 'QD#1', '1135428', '6E4532', 'COVER (METRIC)', 1, 'C', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010013', 'QD#1', '1135428', '7B7525', 'BOLT-SOCKET HEA', 8, 'C', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010014', 'QD#1', '1135428', '6E4533', 'COVER (METRIC)', 1, 'D', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010015', 'QD#1', '1135428', '5S7382', 'BOLT', 16, 'D', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010016', 'QD#1', '1135428', '8T4896', 'WASHER-HARD', 16, 'E', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010017', 'QD#1', '1135428', '1P4577', 'FLANGE-HALF', 8, 'E', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010018', 'QD#1', '1135428', '1145678', 'PLATE-IDENT', 1, 'E', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010019', 'QD#1', '1135428', '1P4577', '法兰', 4, 'F', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010020', 'QD#1', '1135428', '5H4019', '盖子', 2, 'F', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010021', 'QD#1', '1135428', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010022', 'QD#1', '1135428', '5S7382', '螺栓', 8, 'F', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309888053010023', 'QD#1', '1135428', '8T4896', '垫片', 8, 'F', 4, '2025-03-07 09:11:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918669010000', 'QD#1', '1135429', '9S8006', '塞子', 1, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010000', 'QD#1', '1135429', '2M9780', '密封圈', 1, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010001', 'QD#1', '1135429', '9S8003', '塞子', 2, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010002', 'QD#1', '1135429', '1J9671', '密封圈', 2, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010003', 'QD#1', '1135429', '5H4019', '盖子', 4, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010004', 'QD#1', '1135429', '4J0520', '密封圈', 4, 'A', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010005', 'QD#1', '1135429', '6204980', '定位环', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010006', 'QD#1', '1135429', '9T9836', '节流套', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010007', 'QD#1', '1135429', '1006211', '活塞', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010008', 'QD#1', '1135429', '3L3813', '销', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010009', 'QD#1', '1135429', '1P3706', '密封圈', 2, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010010', 'QD#1', '1135429', '1081847', '弹簧', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010011', 'QD#1', '1135429', '6E4907', '挡圈', 1, 'B', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010012', 'QD#1', '1135429', '6E4532', '盖', 1, 'C', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010013', 'QD#1', '1135429', '7B7525', '螺钉', 8, 'C', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010014', 'QD#1', '1135429', '6E4533', '盖', 1, 'D', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010015', 'QD#1', '1135429', '5S7382', '螺栓', 16, 'D', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010016', 'QD#1', '1135429', '8T4896', '垫片', 16, 'E', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010017', 'QD#1', '1135429', '1P4577', '法兰', 8, 'E', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010018', 'QD#1', '1135429', '1145679', '铭牌', 1, 'E', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010019', 'QD#1', '1135429', '1P4577', '法兰', 4, 'F', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010020', 'QD#1', '1135429', '5H4019', '盖子', 2, 'F', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010021', 'QD#1', '1135429', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010022', 'QD#1', '1135429', '5S7382', '螺栓', 8, 'F', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309918670010023', 'QD#1', '1135429', '8T4896', '垫片', 8, 'F', 4, '2025-03-07 09:11:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961934010000', 'WL-ZL50', '2904507', '1U0322', 'BEARING-SLEEVE', 4, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010000', 'WL-ZL50', '2904507', '3G2683', 'PLUG-O-RING', 4, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010001', 'WL-ZL50', '2904507', '2S4078', 'SEAL-O-RING', 4, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010002', 'WL-ZL50', '2904507', '1U1577', 'PLUG', 1, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010003', 'WL-ZL50', '2904507', '6K6307', 'SEAL-O-RING', 1, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010004', 'WL-ZL50', '2904507', '7S8491', 'SPRING', 4, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010005', 'WL-ZL50', '2904507', '3J7354', 'SEAL-O-RING-STOR', 3, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010006', 'WL-ZL50', '2904507', '9S4182', 'PLUG-LD STOR', 3, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010007', 'WL-ZL50', '2904507', '3G4135', 'PLUG-O-RING', 1, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010008', 'WL-ZL50', '2904507', '4J0522', 'SEAL-O-RING', 1, 'A', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010009', 'WL-ZL50', '2904507', '7M8485', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010010', 'WL-ZL50', '2904507', '3K0360', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010011', 'WL-ZL50', '2904507', '9S8005', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010012', 'WL-ZL50', '2904507', '1J8960', 'SPRING', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010013', 'WL-ZL50', '2904507', '7J7423', 'VALVE', 4, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010014', 'WL-ZL50', '2904507', '1U1578', 'VALVE', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010015', 'WL-ZL50', '2904507', '4J0522', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010016', 'WL-ZL50', '2904507', '4J0523', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010017', 'WL-ZL50', '2904507', '1086428', 'VALVE GP-D RLF-A', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010018', 'WL-ZL50', '2904507', '4T4162', 'VALVE GP-D RLF-A', 1, 'B', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010019', 'WL-ZL50', '2904507', '7X2551', 'BOLT-HEX HEAD', 5, 'C', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010020', 'WL-ZL50', '2904507', '8T4223', 'WASHER-HARD', 8, 'C', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010021', 'WL-ZL50', '2904507', '6E2377', 'VALVE GP-D RLF-A', 2, 'C', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010022', 'WL-ZL50', '2904507', '1355491', 'VALVE GP-P RLF', 1, 'C', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010023', 'WL-ZL50', '2904507', '4T9312', 'HOUSING', 3, 'C', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010024', 'WL-ZL50', '2904507', '1H9696', 'SEAL-O-RING', 3, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010025', 'WL-ZL50', '2904507', '8T4182', 'BOLT-HEX HEAD', 6, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010026', 'WL-ZL50', '2904507', '5P1075', 'WASHER-HARD', 12, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010027', 'WL-ZL50', '2904507', '3385494', 'RETAINER', 6, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010028', 'WL-ZL50', '2904507', '3385495', 'SPRING', 3, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010029', 'WL-ZL50', '2904507', '3G8991', 'SPRING', 3, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010030', 'WL-ZL50', '2904507', '0041963', 'SEAL-O RING', 3, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010031', 'WL-ZL50', '2904507', '0994691', 'BOLT-HEXHEAD', 3, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010032', 'WL-ZL50', '2904507', '2906039', 'PLATE-IDENT', 1, 'D', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010033', 'WL-ZL50', '2904507', '8T4198', 'BOLT-HEX HEAD', 6, 'E', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010034', 'WL-ZL50', '2904507', '4T9311', 'HOUSING', 3, 'E', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010035', 'WL-ZL50', '2904507', '3J1907', 'SEAL-O-RING-STOR', 7, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010036', 'WL-ZL50', '2904507', '9S4191', 'PLUG-EXT HEX', 7, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010037', 'WL-ZL50', '2904507', '3J5553', 'GASKET', 2, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010038', 'WL-ZL50', '2904507', '3J5554', 'GASKET', 6, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010039', 'WL-ZL50', '2904507', '4D2886', 'CLIP', 2, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010040', 'WL-ZL50', '2904507', '8T4179', 'BOLT-HEX HEAD', 16, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010041', 'WL-ZL50', '2904507', '8J4398', 'COVER', 6, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741309961935010042', 'WL-ZL50', '2904507', '8J5893', 'COVER', 2, 'F', 1, '2025-03-07 09:12:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010000', 'WL-ZL50', '2904514', '3G2683', '螺堵', 3, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010001', 'WL-ZL50', '2904514', '2S4078', 'O型圈', 3, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010002', 'WL-ZL50', '2904514', '1U1577', '螺堵', 1, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010003', 'WL-ZL50', '2904514', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010004', 'WL-ZL50', '2904514', '9S8005', '堵头', 1, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010005', 'WL-ZL50', '2904514', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010006', 'WL-ZL50', '2904514', '1U0322', '轴承', 3, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010007', 'WL-ZL50', '2904514', '7S8491', '弹簧', 3, 'A', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010008', 'WL-ZL50', '2904514', '7J7423', '阀', 3, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010009', 'WL-ZL50', '2904514', '1J8960', '弹簧', 1, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010010', 'WL-ZL50', '2904514', '1U1578', '阀', 1, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010011', 'WL-ZL50', '2904514', '3G4117', '盖子', 1, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010012', 'WL-ZL50', '2904514', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010013', 'WL-ZL50', '2904514', '8T4192', '螺栓', 2, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010014', 'WL-ZL50', '2904514', '6E2377', '阀', 2, 'B', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010015', 'WL-ZL50', '2904514', '1355491', '阀', 1, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010016', 'WL-ZL50', '2904514', '4T9312', '盖子', 2, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010017', 'WL-ZL50', '2904514', '1H9696', 'O型圈', 2, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010018', 'WL-ZL50', '2904514', '8T4182', '螺栓', 4, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010019', 'WL-ZL50', '2904514', '5P1075', '垫圈', 4, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010020', 'WL-ZL50', '2904514', '3G8991', '弹簧', 2, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010021', 'WL-ZL50', '2904514', '3385495', '弹簧', 2, 'C', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010022', 'WL-ZL50', '2904514', '3385494', '固定器', 4, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010023', 'WL-ZL50', '2904514', '8T4198', '螺栓', 4, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010024', 'WL-ZL50', '2904514', '5P1075', '垫片', 4, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010025', 'WL-ZL50', '2904514', '0994691', '螺栓', 2, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010026', 'WL-ZL50', '2904514', '8T4223', '垫圈', 2, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010027', 'WL-ZL50', '2904514', '0041963', 'O型圈', 2, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010028', 'WL-ZL50', '2904514', '2906046', '铭牌', 1, 'D', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310003329010029', 'WL-ZL50', '2904514', '4T9311', '盖子', 2, 'E', 1, '2025-03-07 09:13:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010000', 'M3PC 单片', '3232245', '2937639', 'PLUG ', 4, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010001', 'M3PC 单片', '3232245', '3J1907', 'SEAL-O-RING-STOR', 5, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010002', 'M3PC 单片', '3232245', '9S4191', 'PLUG-LD STOR ', 5, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010003', 'M3PC 单片', '3232245', '2833462', 'SCREEN ', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010004', 'M3PC 单片', '3232245', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010005', 'M3PC 单片', '3232245', '9S8005', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010006', 'M3PC 单片', '3232245', '3J1907', 'SEAL-O-RING-STOR', 3, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010007', 'M3PC 单片', '3232245', '9S8004', 'PLUG-LD STOR ', 3, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010008', 'M3PC 单片', '3232245', '3757263', 'VALVE GP-D RLF-B', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010009', 'M3PC 单片', '3232245', '3054563', 'VALVE GP-SHTL -B', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010010', 'M3PC 单片', '3232245', '0963831/HE', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010011', 'M3PC 单片', '3232245', '3232246', 'PLATE-IDENT ', 1, 'A', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010012', 'M3PC 单片', '3232245', '3J5553', 'GASKET', 1, 'B', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010013', 'M3PC 单片', '3232245', '7J7366', 'GASKET', 1, 'B', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010014', 'M3PC 单片', '3232245', '7J7367', 'COVER', 1, 'B', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010015', 'M3PC 单片', '3232245', '8J5893', 'COVER', 1, 'B', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741310034558010016', 'M3PC 单片', '3232245', '8T4179', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-07 09:13:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010000', 'IMV', '3467570', '3093921', '钢铁弹簧', 1, 'B1', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010001', 'IMV', '3467570', '3093922', '钢铁弹簧', 1, 'B1', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010002', 'IMV', '3467570', '3J7354', '橡胶密封圈', 6, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010003', 'IMV', '3467570', '9S8002', '钢铁制塞堵', 6, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010004', 'IMV', '3467570', '3E6730', '橡胶密封圈', 4, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010005', 'IMV', '3467570', '4J0523', '橡胶密封圈', 1, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010006', 'IMV', '3467570', '4J9535', '橡胶密封圈', 4, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010007', 'IMV', '3467570', '3112886', '钢铁弹簧', 1, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010008', 'IMV', '3467570', '3175154', '塑料密封圈', 1, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010009', 'IMV', '3467570', '3461635', '橡胶密封圈', 1, 'B2', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010010', 'IMV', '3467570', '3K0360', '橡胶密封圈', 4, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010011', 'IMV', '3467570', '9S8005', '钢铁制塞堵', 4, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010012', 'IMV', '3467570', '5P8245', '钢铁制垫圈', 4, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010013', 'IMV', '3467570', '6J2680', '橡胶密封圈', 1, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010014', 'IMV', '3467570', '8T0269', '钢铁螺栓', 8, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010015', 'IMV', '3467570', '8T0343', '钢铁制螺栓', 16, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010016', 'IMV', '3467570', '9X8256', '钢铁制垫圈', 8, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010017', 'IMV', '3467570', '3112886', '钢铁弹簧', 1, 'B3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010018', 'IMV', '3467570', '3J1907', '橡胶密封圈', 2, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010019', 'IMV', '3467570', '9S8004', '堵头', 2, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010020', 'IMV', '3467570', '4J0528', '橡胶密封圈', 1, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010021', 'IMV', '3467570', '9X8268', '钢铁制垫圈', 8, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010022', 'IMV', '3467570', '0950705', '钢铁制螺栓', 4, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010023', 'IMV', '3467570', '0950707', '钢铁制螺栓', 4, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010024', 'IMV', '3467570', '2828827', '阀用塞堵', 3, 'B4', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010025', 'IMV', '3467570', '3J1907', '橡胶密封圈', 2, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010026', 'IMV', '3467570', '6S3002', '橡胶密封圈', 2, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010027', 'IMV', '3467570', '8T2223', '钢铁制螺栓', 8, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010028', 'IMV', '3467570', '8T4121', '钢铁制垫圈', 8, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010029', 'IMV', '3467570', '3045146', '安全阀', 1, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010030', 'IMV', '3467570', '3447392', '压力变送器', 2, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010031', 'IMV', '3467570', '4485704/HE', '橡胶密封圈', 2, 'B5', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010032', 'IMV', '3467570', '3112888', '钢铁弹簧', 3, 'B6', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010033', 'IMV', '3467570', '3461634', '钢铁止动块', 4, 'B6', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010034', 'IMV', '3467570', '3576292', '塑料垫圈', 4, 'B6', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010035', 'IMV', '3467570', '3J7354', '橡胶密封圈', 4, 'B6', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010036', 'IMV', '3467570', '4J0526', '橡胶密封圈', 4, 'B6', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010037', 'IMV', '3467570', '3112888', '钢铁弹簧', 1, 'B7', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311160428010038', 'IMV', '3467570', '3262664', '电磁换向阀', 4, 'C3', 1, '2025-03-07 09:32:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185090010000', 'IMV', '3467580', '3J7354', '橡胶密封圈', 6, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010000', 'IMV', '3467580', '9S8002', '钢铁制塞堵', 6, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010001', 'IMV', '3467580', '3E6730', '橡胶密封圈', 4, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010002', 'IMV', '3467580', '4J0523', '橡胶密封圈', 1, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010003', 'IMV', '3467580', '4J9535', '橡胶密封圈', 4, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010004', 'IMV', '3467580', '3112886', '钢铁弹簧', 1, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010005', 'IMV', '3467580', '3175154', '塑料密封圈', 1, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010006', 'IMV', '3467580', '3461635', '橡胶密封圈', 1, 'B1', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010007', 'IMV', '3467580', '3K0360', '橡胶密封圈', 4, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010008', 'IMV', '3467580', '9S8005', '钢铁制塞堵', 4, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010009', 'IMV', '3467580', '5P8245', '钢铁制垫圈', 4, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010010', 'IMV', '3467580', '6J2680', '橡胶密封圈', 1, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010011', 'IMV', '3467580', '8T0269', '钢铁螺栓', 8, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010012', 'IMV', '3467580', '8T0343', '钢铁制螺栓', 16, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010013', 'IMV', '3467580', '9X8256', '钢铁制垫圈', 8, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010014', 'IMV', '3467580', '2828827', '阀用塞堵', 2, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010015', 'IMV', '3467580', '3045146', '安全阀', 1, 'B2', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010016', 'IMV', '3467580', '3J1907', '橡胶密封圈', 2, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010017', 'IMV', '3467580', '6S3002', '橡胶密封圈', 2, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010018', 'IMV', '3467580', '8T2223', '钢铁制螺栓', 8, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010019', 'IMV', '3467580', '8T4121', '钢铁制垫圈', 8, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010020', 'IMV', '3467580', '9X8268', '钢铁制垫圈', 4, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010021', 'IMV', '3467580', '0950707', '钢铁制螺栓', 4, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010022', 'IMV', '3467580', '3447392', '压力变送器', 2, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010023', 'IMV', '3467580', '4485704/HE', '橡胶密封圈', 2, 'B3', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010024', 'IMV', '3467580', '3112888', '钢铁弹簧', 3, 'B4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010025', 'IMV', '3467580', '3576292', '塑料垫圈', 4, 'B4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010026', 'IMV', '3467580', '3J7354', '橡胶密封圈', 4, 'B4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010027', 'IMV', '3467580', '4J0526', '橡胶密封圈', 4, 'B4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010028', 'IMV', '3467580', '3461634', '钢铁止动块', 4, 'B4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010029', 'IMV', '3467580', '3112888', '钢铁弹簧', 1, 'B5', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010030', 'IMV', '3467580', '3093921', '钢铁弹簧', 1, 'C', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010031', 'IMV', '3467580', '3093922', '钢铁弹簧', 1, 'C', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311185091010032', 'IMV', '3467580', '3262664', '电磁换向阀', 4, 'E4', 1, '2025-03-07 09:33:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010000', 'QD#1', '3662325', '9S8006', '塞子', 1, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010001', 'QD#1', '3662325', '2M9780', '密封圈', 1, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010002', 'QD#1', '3662325', '9S8003', '塞子', 2, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010003', 'QD#1', '3662325', '1J9671', '密封圈', 2, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010004', 'QD#1', '3662325', '5H4019', '盖子', 4, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010005', 'QD#1', '3662325', '4J0520', '密封圈', 4, 'A', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010006', 'QD#1', '3662325', '6204980', '定位环', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010007', 'QD#1', '3662325', '9T9836', '节流套', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010008', 'QD#1', '3662325', '1006211', '活塞', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010009', 'QD#1', '3662325', '3L3813', '销', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010010', 'QD#1', '3662325', '1P3706', '密封圈', 2, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010011', 'QD#1', '3662325', '1081847', '弹簧', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010012', 'QD#1', '3662325', '6E4907', '挡圈', 1, 'B', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010013', 'QD#1', '3662325', '2343043', '盖', 1, 'C', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010014', 'QD#1', '3662325', '6V8200', '螺钉', 8, 'C', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010015', 'QD#1', '3662325', '2343451', '盖', 1, 'D', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010016', 'QD#1', '3662325', '5334159', '螺栓', 8, 'D', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010017', 'QD#1', '3662325', '5334159', '螺栓', 8, 'E', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010018', 'QD#1', '3662325', '8C3206', '法兰', 8, 'E', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010019', 'QD#1', '3662325', '2707647', '铭牌', 1, 'E', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010020', 'QD#1', '3662325', '8C3206', '法兰', 4, 'F', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010021', 'QD#1', '3662325', '5H4019', '盖子', 2, 'F', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010022', 'QD#1', '3662325', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311288028010023', 'QD#1', '3662325', '5334159', '螺栓', 8, 'F', 4, '2025-03-07 09:34:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299350010000', 'QD#1', '3833300', '9S8006', '塞子', 1, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010000', 'QD#1', '3833300', '2M9780', '密封圈', 1, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010001', 'QD#1', '3833300', '9S8003', '塞子', 2, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010002', 'QD#1', '3833300', '1J9671', '密封圈', 2, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010003', 'QD#1', '3833300', '5H4019', '盖子', 4, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010004', 'QD#1', '3833300', '4J0520', '密封圈', 4, 'A', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010005', 'QD#1', '3833300', '6204980', '定位环', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010006', 'QD#1', '3833300', '9T9836', '节流套', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010007', 'QD#1', '3833300', '1006211', '活塞', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010008', 'QD#1', '3833300', '3L3813', '销', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010009', 'QD#1', '3833300', '1P3706', '密封圈', 2, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010010', 'QD#1', '3833300', '1081847', '弹簧', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010011', 'QD#1', '3833300', '6E4907', '挡圈', 1, 'B', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010012', 'QD#1', '3833300', '2343043', '盖', 1, 'C', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010013', 'QD#1', '3833300', '6V8200', '螺钉', 8, 'C', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010014', 'QD#1', '3833300', '2343451', '盖', 1, 'D', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010015', 'QD#1', '3833300', '5334159', '螺栓', 8, 'D', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010016', 'QD#1', '3833300', '5334159', '螺栓', 8, 'E', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010017', 'QD#1', '3833300', '8C3206', '法兰', 8, 'E', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010018', 'QD#1', '3833300', '2707647', '铭牌', 1, 'E', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010019', 'QD#1', '3833300', '8C3206', '法兰', 4, 'F', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010020', 'QD#1', '3833300', '5H4019', '盖子', 2, 'F', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010021', 'QD#1', '3833300', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311299351010022', 'QD#1', '3833300', '5334159', '螺栓', 8, 'F', 4, '2025-03-07 09:34:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010000', 'IMV Valve', '4270293', '3461635', '阀芯', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010001', 'IMV Valve', '4270293', '3112886', '弹簧', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010002', 'IMV Valve', '4270293', '3461636', '堵头', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010003', 'IMV Valve', '4270293', '3175154', '挡圈', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010004', 'IMV Valve', '4270293', '4J0523', 'O型圈', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010005', 'IMV Valve', '4270293', '3E6730', 'O型圈', 4, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010006', 'IMV Valve', '4270293', '4J9535', 'O型圈', 4, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010007', 'IMV Valve', '4270293', '3231219', '盖板', 1, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010008', 'IMV Valve', '4270293', '9S8002', '螺堵', 6, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010009', 'IMV Valve', '4270293', '3J7354', 'O型圈', 6, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010010', 'IMV Valve', '4270293', '3K0360', 'O型圈', 4, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010011', 'IMV Valve', '4270293', '9S8005', '螺堵', 4, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010012', 'IMV Valve', '4270293', '5P8245', '垫片', 4, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010013', 'IMV Valve', '4270293', '8T0343', '螺栓', 16, 'B1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010014', 'IMV Valve', '4270293', '9X8256', '垫片', 8, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010015', 'IMV Valve', '4270293', '8T0269', '螺栓', 8, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010016', 'IMV Valve', '4270293', '6J2680', 'O型圈', 1, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010017', 'IMV Valve', '4270293', '7Y5219/HE', 'O型圈', 2, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010018', 'IMV Valve', '4270293', '6S3002', 'O型圈', 2, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010019', 'IMV Valve', '4270293', '3J1907', 'O型圈', 2, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010020', 'IMV Valve', '4270293', '3447392', '压力传感器', 2, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010021', 'IMV Valve', '4270293', '8T2223', '螺栓', 8, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010022', 'IMV Valve', '4270293', '8T4121', '垫片', 8, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010023', 'IMV Valve', '4270293', '4563792', '溢流阀', 2, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010024', 'IMV Valve', '4270293', '8T1447', '螺栓', 4, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010025', 'IMV Valve', '4270293', '9X8268', '垫片', 4, 'B2', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010026', 'IMV Valve', '4270293', '3112864', '密封圈', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010027', 'IMV Valve', '4270293', '3J7354', 'O型圈', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010028', 'IMV Valve', '4270293', '3576292', '挡圈', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010029', 'IMV Valve', '4270293', '4J0526', 'O型圈', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010030', 'IMV Valve', '4270293', '3112888', '弹簧', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010031', 'IMV Valve', '4270293', '3112866', '挡圈', 8, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010032', 'IMV Valve', '4270293', '3461634', '挡圈螺栓', 4, 'B3', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010033', 'IMV Valve', '4270293', '3789425', '阀芯', 2, 'C1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010034', 'IMV Valve', '4270293', '3789426', '阀芯', 2, 'C1', 1, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010035', 'IMV Valve', '4270293', '3093911', '轴套', 4, 'C2', 2, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311327299010036', 'IMV Valve', '4270293', '3262664', '比例电磁阀', 4, 'C3', 2, '2025-03-07 09:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347009010000', 'QD#1', '4529472', '9S8006', '塞子', 1, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010000', 'QD#1', '4529472', '2M9780', '密封圈', 1, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010001', 'QD#1', '4529472', '9S8003', '塞子', 2, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010002', 'QD#1', '4529472', '1J9671', '密封圈', 2, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010003', 'QD#1', '4529472', '5H4019', '盖子', 4, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010004', 'QD#1', '4529472', '4J0520', '密封圈', 4, 'A', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010005', 'QD#1', '4529472', '1442894', '球形堵头', 2, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010006', 'QD#1', '4529472', '6204980', '定位环', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010007', 'QD#1', '4529472', '9T9836', '节流套', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010008', 'QD#1', '4529472', '1006211', '活塞', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010009', 'QD#1', '4529472', '3L3813', '销', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010010', 'QD#1', '4529472', '1P3706', '密封圈', 2, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010011', 'QD#1', '4529472', '1081847', '弹簧', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010012', 'QD#1', '4529472', '6E4907', '挡圈', 1, 'B', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010013', 'QD#1', '4529472', '2343043', '盖', 1, 'C', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010014', 'QD#1', '4529472', '6V8200', '螺钉', 8, 'C', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010015', 'QD#1', '4529472', '2343451', '盖', 1, 'D', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010016', 'QD#1', '4529472', '8C3206', '法兰', 8, 'E', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010017', 'QD#1', '4529472', '4535972', '铭牌', 1, 'E', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010018', 'QD#1', '4529472', '2855628', '电磁阀', 1, 'F', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010019', 'QD#1', '4529472', '9S4182', '堵头', 1, 'F', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010020', 'QD#1', '4529472', '3J7354', 'o型圈', 1, 'F', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010021', 'QD1', '4529472', '8C3206', '法兰', 4, 'G', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010022', 'QD1', '4529472', '5H4019', '盖子', 2, 'G', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010023', 'QD1', '4529472', '4J0520', 'O型圈', 2, 'G', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010024', 'QD1', '4529472', '5334159', '螺栓', 8, 'G', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311347010010025', 'QD1', '4529472', '2660531', '保护套', 1, 'G', 4, '2025-03-07 09:35:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010000', 'Check Valve', '5772157', '4I3510/HE', 'SPRING', 1, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010001', 'Check Valve', '5772157', '6K6307', 'SEAL-O-RING', 1, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010002', 'Check Valve', '5772157', '6V8218', 'SEAL-ORING', 1, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010003', 'Check Valve', '5772157', '8T4121', 'WASHER-HARD', 2, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010004', 'Check Valve', '5772157', '8T4137', 'BOLT-HEX HEAD', 2, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010005', 'Check Valve', '5772157', '8T4223', 'WASHER-HARD', 4, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010006', 'Check Valve', '5772157', '8T4244', 'NUT-HEX', 1, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010007', 'Check Valve', '5772157', '8T4956', 'BOLT-HEX HEAD', 4, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010008', 'Check Valve', '5772157', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010009', 'Check Valve', '5772157', '0951573/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010010', 'Check Valve', '5772157', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010011', 'Check Valve', '5772157', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010012', 'Check Valve', '5772157', '0951601/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010013', 'Check Valve', '5772157', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010014', 'Check Valve', '5772157', '1710037/HE', 'VALVE', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010015', 'Check Valve', '5772157', '2324113/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010016', 'Check Valve', '5772157', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010017', 'Check Valve', '5772157', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010018', 'Check Valve', '5772157', '3237773/HE', 'FILTER', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010019', 'Check Valve', '5772157', '4802136/HE', 'COLLAR', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010020', 'Check Valve', '5772157', '5075974/HE', 'SEAT-VALVE', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010021', 'Check Valve', '5772157', '5181324/HE', 'PLUG', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010022', 'Check Valve', '5772157', '5181325/HE', 'RETAINER-SPRING', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010023', 'Check Valve', '5772157', '5181328/HE', 'COVER-PISTON', 1, 'C', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010024', 'Check Valve', '5772157', '5181331/HE', 'SPRING-CHECK V', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010025', 'Check Valve', '5772157', '5181332/HE', 'PLUG-CV STOPPER', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010026', 'Check Valve', '5772157', '5181333/HE', 'COVER-CHECK V', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010027', 'Check Valve', '5772157', '5536203/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010028', 'Check Valve', '5772157', '5536205/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010029', 'Check Valve', '5772157', '5181315/HE', 'VALVE-CHECK', 1, 'D', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010030', 'Check Valve', '5772157', '5496515/HE', 'SPRING-RETURN', 1, 'E', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010031', 'Check Valve', '5772157', '5674312/HE-57', 'PLATE-IDENT', 1, 'E', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741311458923010032', 'Check Valve', '5772157', '5772158/HE', 'STEM GP-VALVE', 1, 'E', 1, '2025-03-07 09:37:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373654010000', 'MG Stack', '6E3038', '3603688', '螺堵', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010000', 'MG Stack', '6E3038', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010001', 'MG Stack', '6E3038', '8T4189', '螺栓', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010002', 'MG Stack', '6E3038', '8T4224', '垫圈', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010003', 'MG Stack', '6E3038', '7S0530', '夹子', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010004', 'MG Stack', '6E3038', '6E3024', '铭牌', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010005', 'MG Stack', '6E3038', '8T4186', '螺栓', 3, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010006', 'MG Stack', '6E3038', '8T4896', '垫圈', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010007', 'MG Stack', '6E3038', '7X2546', '螺栓', 2, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010008', 'MG Stack', '6E3038', '8T6408', '螺栓', 1, 'A', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010009', 'MG Stack', '6E3038', '1010509', '密封板', 5, 'B', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010010', 'MG Stack', '6E3038', '2191891', '塑料堵头', 8, 'B', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010011', 'MG Stack', '6E3038', '2191893', '塑料堵头', 2, 'C', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741312373655010012', 'MG Stack', '6E3038', '2521631', '塑料堵头', 1, 'C', 2, '2025-03-07 09:52:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010000', 'MG Stack', '1048660', '9S8005', '螺堵', 2, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010001', 'MG Stack', '1048660', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010002', 'MG Stack', '1048660', '9S4180', '螺堵', 1, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010003', 'MG Stack', '1048660', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010004', 'MG Stack', '1048660', '2521631', '塑料螺堵', 1, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010005', 'MG Stack', '1048660', '2191893', '塑料螺堵', 2, 'A', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010006', 'MG Stack', '1048660', '8T4189', '螺栓', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010007', 'MG Stack', '1048660', '8T4224', '垫圈', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010008', 'MG Stack', '1048660', '7S0530', '夹子', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010009', 'MG Stack', '1048660', '1070505', '铭牌', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010010', 'MG Stack', '1048660', '8T6408', '螺栓', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010011', 'MG Stack', '1048660', '8T4172', '螺栓', 3, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010012', 'MG Stack', '1048660', '8T4896', '垫圈', 1, 'B', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010013', 'MG Stack', '1048660', '7X2546', '螺栓', 2, 'C', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314926526010014', 'MG Stack', '1048660', '1010509', '密封板', 6, 'C', 2, '2025-03-07 10:35:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010000', 'MG Stack', '3701262', '9S8005', '螺堵', 2, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010001', 'MG Stack', '3701262', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010002', 'MG Stack', '3701262', '9S4180', '螺堵', 1, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010003', 'MG Stack', '3701262', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010004', 'MG Stack', '3701262', '2521631', '塑料螺堵', 1, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010005', 'MG Stack', '3701262', '2191893', '塑料螺堵', 2, 'A', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010006', 'MG Stack', '3701262', '8T4189', '螺栓', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010007', 'MG Stack', '3701262', '8T4224', '垫圈', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010008', 'MG Stack', '3701262', '7S0530', '夹子', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997362010009', 'MG Stack', '3701262', '3701264', '铭牌', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010000', 'MG Stack', '3701262', '8T6408', '螺栓', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010001', 'MG Stack', '3701262', '8T4172', '螺栓', 3, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010002', 'MG Stack', '3701262', '8T4896', '垫圈', 1, 'B', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010003', 'MG Stack', '3701262', '7X2546', '螺栓', 2, 'C', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010004', 'MG Stack', '3701262', '1010509', '密封板', 6, 'C', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741314997364010005', 'MG Stack', '3701262', '2191891', '塑料螺堵', 8, 'D', 2, '2025-03-07 10:36:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010000', 'MG Stack', '5757796', '9S8005', '螺堵', 2, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010001', 'MG Stack', '5757796', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010002', 'MG Stack', '5757796', '9S4180', '螺堵', 1, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010003', 'MG Stack', '5757796', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010004', 'MG Stack', '5757796', '7S0530', '夹子', 1, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010005', 'MG Stack', '5757796', '8T4189', '螺栓', 1, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010006', 'MG Stack', '5757796', '8T4224', '垫圈', 1, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010007', 'MG Stack', '5757796', '8T4172', '螺栓', 3, 'A', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010008', 'MG Stack', '5757796', '1010509', '密封板', 6, 'B', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010009', 'MG Stack', '5757796', '5757826', '铭牌', 1, 'B', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010010', 'MG Stack', '5757796', '8T4896', '垫圈', 1, 'B', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010011', 'MG Stack', '5757796', '7X2546', '螺栓', 2, 'B', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010012', 'MG Stack', '5757796', '8T6408', '螺栓', 1, 'B', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010013', 'MG Stack', '5757796', '2191891', '塑料螺堵', 8, 'C', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010014', 'MG Stack', '5757796', '2191893', '塑料螺堵', 2, 'C', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741315048357010015', 'MG Stack', '5757796', '2521631', '塑料螺堵', 1, 'C', 2, '2025-03-07 10:37:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329687782010000', 'Diff lock valve', '3714745', '1119916/HE', '电磁阀', 1, 'A', 2, '2025-03-07 14:41:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329687782010001', 'Diff lock valve', '3714745', '3714753', '阀体', 1, 'A', 2, '2025-03-07 14:41:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329687782010002', 'Diff lock valve', '3714745', '8T0288', '螺栓', 2, 'A', 2, '2025-03-07 14:41:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329687782010003', 'Diff lock valve', '3714745', '3717958', '铭牌', 1, 'A', 2, '2025-03-07 14:41:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010000', 'selector', '1399571', '3J1907', 'O型圈', 2, 'A', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010001', 'selector', '1399571', '9S4191', '螺堵', 2, 'A', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010002', 'selector', '1399571', '2521631', '塑料螺堵', 2, 'A', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010003', 'selector', '1399571', '1083866', '堵头', 2, 'B', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010004', 'selector', '1399571', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010005', 'selector', '1399571', '1401114', '铭牌', 1, 'B', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010006', 'selector', '1399571', '7S8553', '弹簧', 1, 'B', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741329900050010007', 'selector', '1399571', '1809935', '垫片', 1, 'B', 10, '2025-03-07 14:45:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665200010000', 'Neu', '1649613', '9T8668', '堵头', 1, 'A', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665201010000', 'Neu', '1649613', '3D2824', 'O型圈', 1, 'A', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665201010001', 'Neu', '1649613', '5F9035', '弹簧', 1, 'A', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665201010002', 'Neu', '1649613', '4475613', '唇形密封', 1, 'A', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665201010003', 'Neu', '1649613', '6J4568', '保护套', 1, 'B', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330665201010004', 'Neu', '1649613', '2521631', '堵头', 3, 'B', 10, '2025-03-07 14:57:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010000', 'RCV', '5912177', '5A3604', 'BOLT-HEX SOCKET', 4, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010001', 'RCV', '5912177', '0951599/HE', 'SEAL-O-RING', 2, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010002', 'RCV', '5912177', '4533451/HE', 'WASHER-HARD', 4, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010003', 'RCV', '5912177', '4913418/HE', 'COVER-VALVE', 2, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010004', 'RCV', '5912177', '5674312/HE-77', 'PLATE-IDENT', 1, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010005', 'RCV', '5912177', '5931671/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010006', 'RCV', '5912177', '5931672/HE', 'SLEEVE-CHECK V', 1, 'A', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010007', 'RCV', '5912177', '5931673/HE', 'SPRING-CHECK V', 1, 'B', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010008', 'RCV', '5912177', '5942736/HE', 'VALVE-CHECK', 1, 'B', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010009', 'RCV', '5912177', '5942737/HE', 'SLEEVE-CHECK V', 1, 'B', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741330878468010010', 'RCV', '5912177', '5942738/HE', 'SPRING-CHECK V', 1, 'B', 1, '2025-03-07 15:01:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010000', 'Check Valve', '6036775', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010001', 'Check Valve', '6036775', '8J6815', 'PLUG-NPTF', 2, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010002', 'Check Valve', '6036775', '5181315/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010003', 'Check Valve', '6036775', '5181331/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010004', 'Check Valve', '6036775', '0951601/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010005', 'Check Valve', '6036775', '5181332/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010006', 'Check Valve', '6036775', '2324113/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010007', 'Check Valve', '6036775', '8T4223', 'WASHER-HARD', 4, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010008', 'Check Valve', '6036775', '8T4956', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010009', 'Check Valve', '6036775', '5181333/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010010', 'Check Valve', '6036775', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010011', 'Check Valve', '6036775', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010012', 'Check Valve', '6036775', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010013', 'Check Valve', '6036775', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010014', 'Check Valve', '6036775', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010015', 'Check Valve', '6036775', '0951584/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010016', 'Check Valve', '6036775', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010017', 'Check Valve', '6036775', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010018', 'Check Valve', '6036775', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010019', 'Check Valve', '6036775', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010020', 'Check Valve', '6036775', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010021', 'Check Valve', '6036775', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010022', 'Check Valve', '6036775', '5181317/HE', 'STEM GP-VALVE', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010023', 'Check Valve', '6036775', '6K6307', 'SEAL-O-RING', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010024', 'Check Valve', '6036775', '5181324/HE', 'PLUG', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010025', 'Check Valve', '6036775', '5181325/HE', 'RETAINER-SPRING', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010026', 'Check Valve', '6036775', '5181326/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010027', 'Check Valve', '6036775', '5181327/HE-14', '5181327/HE&5313314/HE', 1, 'D', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010028', 'Check Valve', '6036775', '6V8218', 'SEAL-ORING', 1, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010029', 'Check Valve', '6036775', '8T4121', 'WASHER-HARD', 2, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010030', 'Check Valve', '6036775', '8T4137', 'BOLT-HEX HEAD', 2, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010031', 'Check Valve', '6036775', '5181328/HE', 'COVER-PISTON', 1, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010032', 'Check Valve', '6036775', '5674312/HE-75', 'ID Plate', 1, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010033', 'Check Valve', '6036775', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010034', 'Check Valve', '6036775', '3603692', 'PLUG-HD STOR', 2, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010035', 'Check Valve', '6036775', '5536203/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741331682259010036', 'Check Valve', '6036775', '5536204/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-07 15:14:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010000', 'selector', '1U2226', '3J1907', 'O型圈', 2, 'A', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010001', 'selector', '1U2226', '3603692', '螺堵', 2, 'A', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010002', 'selector', '1U2226', '2521631', '塑料螺堵', 2, 'A', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010003', 'selector', '1U2226', '1083866', '堵头', 2, 'B', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010004', 'selector', '1U2226', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010005', 'selector', '1U2226', '1181472', '铭牌', 1, 'B', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010006', 'selector', '1U2226', '7S8553', '弹簧', 1, 'B', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741334367950010007', 'selector', '1U2226', '1809935', '垫片', 1, 'B', 10, '2025-03-07 15:59:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010000', 'MG Segment', '1242883', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010001', 'MG Segment', '1242883', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010002', 'MG Segment', '1242883', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010003', 'MG Segment', '1242883', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010004', 'MG Segment', '1242883', '3405472', '右手柄', 1, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010005', 'MG Segment', '1242883', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010006', 'MG Segment', '1242883', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010007', 'MG Segment', '1242883', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010008', 'MG Segment', '1242883', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010009', 'MG Segment', '1242883', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010010', 'MG Segment', '1242883', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010011', 'MG Segment', '1242883', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010012', 'MG Segment', '1242883', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010013', 'MG Segment', '1242883', '1063659', '活塞', 1, 'B', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010014', 'MG Segment', '1242883', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010015', 'MG Segment', '1242883', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010016', 'MG Segment', '1242883', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010017', 'MG Segment', '1242883', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010018', 'MG Segment', '1242883', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010019', 'MG Segment', '1242883', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010020', 'MG Segment', '1242883', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010021', 'MG Segment', '1242883', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010022', 'MG Segment', '1242883', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010023', 'MG Segment', '1242883', '1243330', '阀芯', 1, 'D', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010024', 'MG Segment', '1242883', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010025', 'MG Segment', '1242883', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010026', 'MG Segment', '1242883', '1118233', '弹簧', 1, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010027', 'MG Segment', '1242883', '1011978', '盖板', 1, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010028', 'MG Segment', '1242883', '8T4189', '螺栓', 2, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010029', 'MG Segment', '1242883', '8T4224', '垫片', 2, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010030', 'MG Segment', '1242883', '2227774', '溢流阀', 1, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741583336273010031', 'MG Segment', '1242883', '1242880', '铭牌', 1, 'F', 8, '2025-03-10 13:08:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010000', 'MG Segment', '1070547', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010001', 'MG Segment', '1070547', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010002', 'MG Segment', '1070547', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010003', 'MG Segment', '1070547', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010004', 'MG Segment', '1070547', '3405470', '右手柄', 1, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010005', 'MG Segment', '1070547', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010006', 'MG Segment', '1070547', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010007', 'MG Segment', '1070547', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010008', 'MG Segment', '1070547', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010009', 'MG Segment', '1070547', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010010', 'MG Segment', '1070547', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010011', 'MG Segment', '1070547', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010012', 'MG Segment', '1070547', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010013', 'MG Segment', '1070547', '1063660', '活塞', 2, 'B', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010014', 'MG Segment', '1070547', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010015', 'MG Segment', '1070547', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010016', 'MG Segment', '1070547', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010017', 'MG Segment', '1070547', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010018', 'MG Segment', '1070547', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010019', 'MG Segment', '1070547', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010020', 'MG Segment', '1070547', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010021', 'MG Segment', '1070547', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010022', 'MG Segment', '1070547', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010023', 'MG Segment', '1070547', '2213678', '阀芯', 1, 'D', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010024', 'MG Segment', '1070547', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010025', 'MG Segment', '1070547', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010026', 'MG Segment', '1070547', '1118234', '弹簧', 1, 'F', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010027', 'MG Segment', '1070547', '1011980', '盖板', 1, 'F', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010028', 'MG Segment', '1070547', '2227774', '溢流阀', 1, 'F', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010029', 'MG Segment', '1070547', '8T6869', '螺栓', 2, 'G', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010030', 'MG Segment', '1070547', '8T4224', '垫片', 2, 'G', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010031', 'MG Segment', '1070547', '1070523', '铭牌', 1, 'G', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741584916547010032', 'MG Segment', '1070547', '1084916', '制动组件', 1, 'G', 8, '2025-03-10 13:35:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010000', 'MG Segment', '1199551', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010001', 'MG Segment', '1199551', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010002', 'MG Segment', '1199551', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010003', 'MG Segment', '1199551', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010004', 'MG Segment', '1199551', '3405470', '右手柄', 1, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010005', 'MG Segment', '1199551', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010006', 'MG Segment', '1199551', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010007', 'MG Segment', '1199551', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010008', 'MG Segment', '1199551', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010009', 'MG Segment', '1199551', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010010', 'MG Segment', '1199551', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010011', 'MG Segment', '1199551', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010012', 'MG Segment', '1199551', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010013', 'MG Segment', '1199551', '1063659', '活塞', 1, 'B', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010014', 'MG Segment', '1199551', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010015', 'MG Segment', '1199551', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010016', 'MG Segment', '1199551', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010017', 'MG Segment', '1199551', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010018', 'MG Segment', '1199551', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010019', 'MG Segment', '1199551', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010020', 'MG Segment', '1199551', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010021', 'MG Segment', '1199551', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010022', 'MG Segment', '1199551', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010023', 'MG Segment', '1199551', '1024574', '阀芯', 1, 'D', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010024', 'MG Segment', '1199551', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010025', 'MG Segment', '1199551', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010026', 'MG Segment', '1199551', '1118233', '弹簧', 1, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010027', 'MG Segment', '1199551', '1011978', '盖板', 1, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010028', 'MG Segment', '1199551', '8T4189', '螺栓', 2, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010029', 'MG Segment', '1199551', '8T4224', '垫片', 2, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010030', 'MG Segment', '1199551', '1398477', '溢流阀', 1, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585215950010031', 'MG Segment', '1199551', '1199543', '铭牌', 1, 'F', 8, '2025-03-10 13:40:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010000', 'MG Segment', '1378104', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010001', 'MG Segment', '1378104', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010002', 'MG Segment', '1378104', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010003', 'MG Segment', '1378104', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010004', 'MG Segment', '1378104', '3405472', '右手柄', 1, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010005', 'MG Segment', '1378104', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010006', 'MG Segment', '1378104', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010007', 'MG Segment', '1378104', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010008', 'MG Segment', '1378104', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010009', 'MG Segment', '1378104', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010010', 'MG Segment', '1378104', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010011', 'MG Segment', '1378104', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010012', 'MG Segment', '1378104', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010013', 'MG Segment', '1378104', '1063659', '活塞', 1, 'B', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010014', 'MG Segment', '1378104', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010015', 'MG Segment', '1378104', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010016', 'MG Segment', '1378104', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010017', 'MG Segment', '1378104', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010018', 'MG Segment', '1378104', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010019', 'MG Segment', '1378104', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010020', 'MG Segment', '1378104', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010021', 'MG Segment', '1378104', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010022', 'MG Segment', '1378104', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010023', 'MG Segment', '1378104', '1024577', '阀芯', 1, 'D', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010024', 'MG Segment', '1378104', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010025', 'MG Segment', '1378104', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010026', 'MG Segment', '1378104', '1118233', '弹簧', 1, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010027', 'MG Segment', '1378104', '1011978', '盖板', 1, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010028', 'MG Segment', '1378104', '8T4189', '螺栓', 2, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010029', 'MG Segment', '1378104', '8T4224', '垫片', 2, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010030', 'MG Segment', '1378104', '1398472', '溢流阀', 2, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585299336010031', 'MG Segment', '1378104', '1379832', '铭牌', 1, 'F', 8, '2025-03-10 13:41:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010000', 'MG Segment', '3701237', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010001', 'MG Segment', '3701237', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010002', 'MG Segment', '3701237', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010003', 'MG Segment', '3701237', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010004', 'MG Segment', '3701237', '3405470', '右手柄', 1, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010005', 'MG Segment', '3701237', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010006', 'MG Segment', '3701237', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010007', 'MG Segment', '3701237', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010008', 'MG Segment', '3701237', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010009', 'MG Segment', '3701237', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010010', 'MG Segment', '3701237', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010011', 'MG Segment', '3701237', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010012', 'MG Segment', '3701237', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010013', 'MG Segment', '3701237', '1063660', '活塞', 2, 'B', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010014', 'MG Segment', '3701237', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010015', 'MG Segment', '3701237', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010016', 'MG Segment', '3701237', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010017', 'MG Segment', '3701237', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010018', 'MG Segment', '3701237', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010019', 'MG Segment', '3701237', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010020', 'MG Segment', '3701237', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010021', 'MG Segment', '3701237', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010022', 'MG Segment', '3701237', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010023', 'MG Segment', '3701237', '2213678', '阀芯', 1, 'D', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010024', 'MG Segment', '3701237', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010025', 'MG Segment', '3701237', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010026', 'MG Segment', '3701237', '1118234', '弹簧', 1, 'F', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010027', 'MG Segment', '3701237', '1011980', '盖板', 1, 'F', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010028', 'MG Segment', '3701237', '2227774', '溢流阀', 1, 'F', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010029', 'MG Segment', '3701237', '8T6869', '螺栓', 2, 'G', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010030', 'MG Segment', '3701237', '8T4224', '垫片', 2, 'G', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010031', 'MG Segment', '3701237', '3701238', '铭牌', 1, 'G', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585328528010032', 'MG Segment', '3701237', '1084916', '制动组件', 1, 'G', 8, '2025-03-10 13:42:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010000', 'MG Segment', '3701247', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010001', 'MG Segment', '3701247', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010002', 'MG Segment', '3701247', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010003', 'MG Segment', '3701247', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010004', 'MG Segment', '3701247', '3405472', '右手柄', 1, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010005', 'MG Segment', '3701247', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010006', 'MG Segment', '3701247', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010007', 'MG Segment', '3701247', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010008', 'MG Segment', '3701247', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010009', 'MG Segment', '3701247', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010010', 'MG Segment', '3701247', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010011', 'MG Segment', '3701247', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010012', 'MG Segment', '3701247', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010013', 'MG Segment', '3701247', '1063659', '活塞', 1, 'B', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010014', 'MG Segment', '3701247', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010015', 'MG Segment', '3701247', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010016', 'MG Segment', '3701247', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010017', 'MG Segment', '3701247', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010018', 'MG Segment', '3701247', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010019', 'MG Segment', '3701247', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010020', 'MG Segment', '3701247', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010021', 'MG Segment', '3701247', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010022', 'MG Segment', '3701247', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010023', 'MG Segment', '3701247', '1011149', '阀芯', 1, 'D', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010024', 'MG Segment', '3701247', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010025', 'MG Segment', '3701247', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010026', 'MG Segment', '3701247', '1118233', '弹簧', 1, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010027', 'MG Segment', '3701247', '1011978', '盖板', 1, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010028', 'MG Segment', '3701247', '8T4189', '螺栓', 2, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010029', 'MG Segment', '3701247', '8T4224', '垫片', 2, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585348789010030', 'MG Segment', '3701247', '3701248', '铭牌', 1, 'F', 8, '2025-03-10 13:42:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010000', 'MG Segment', '3701249', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010001', 'MG Segment', '3701249', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010002', 'MG Segment', '3701249', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010003', 'MG Segment', '3701249', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010004', 'MG Segment', '3701249', '3405472', '右手柄', 1, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010005', 'MG Segment', '3701249', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010006', 'MG Segment', '3701249', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010007', 'MG Segment', '3701249', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010008', 'MG Segment', '3701249', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010009', 'MG Segment', '3701249', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010010', 'MG Segment', '3701249', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010011', 'MG Segment', '3701249', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010012', 'MG Segment', '3701249', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010013', 'MG Segment', '3701249', '1063659', '活塞', 1, 'B', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010014', 'MG Segment', '3701249', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010015', 'MG Segment', '3701249', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010016', 'MG Segment', '3701249', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010017', 'MG Segment', '3701249', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010018', 'MG Segment', '3701249', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010019', 'MG Segment', '3701249', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010020', 'MG Segment', '3701249', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010021', 'MG Segment', '3701249', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010022', 'MG Segment', '3701249', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010023', 'MG Segment', '3701249', '1011154', '阀芯', 1, 'D', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010024', 'MG Segment', '3701249', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010025', 'MG Segment', '3701249', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010026', 'MG Segment', '3701249', '1118233', '弹簧', 1, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010027', 'MG Segment', '3701249', '1011978', '盖板', 1, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010028', 'MG Segment', '3701249', '8T4189', '螺栓', 2, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010029', 'MG Segment', '3701249', '8T4224', '垫片', 2, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585357595010030', 'MG Segment', '3701249', '3701250', '铭牌', 1, 'F', 8, '2025-03-10 13:42:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010000', 'MG Segment', '3701251', '9S8005', '堵头', 1, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010001', 'MG Segment', '3701251', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010002', 'MG Segment', '3701251', '9J0404', '堵头', 2, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010003', 'MG Segment', '3701251', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010004', 'MG Segment', '3701251', '3405470', '右手柄', 1, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010005', 'MG Segment', '3701251', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010006', 'MG Segment', '3701251', '6E4502', '堵头', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010007', 'MG Segment', '3701251', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010008', 'MG Segment', '3701251', '6E3019', '阀', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010009', 'MG Segment', '3701251', '6E5153', '弹簧', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010010', 'MG Segment', '3701251', '1082187', '堵头', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010011', 'MG Segment', '3701251', '5B9318', '钢球', 1, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010012', 'MG Segment', '3701251', '9J0403', '弹簧', 2, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010013', 'MG Segment', '3701251', '1063660', '活塞', 2, 'B', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010014', 'MG Segment', '3701251', '6E3007', '弹簧', 1, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010015', 'MG Segment', '3701251', '1011973', '轴承座', 4, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010016', 'MG Segment', '3701251', '8T4189', '螺栓', 2, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010017', 'MG Segment', '3701251', '8T4224', '垫片', 2, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010018', 'MG Segment', '3701251', '1027412', '弹簧', 1, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010019', 'MG Segment', '3701251', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010020', 'MG Segment', '3701251', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010021', 'MG Segment', '3701251', '1011971', '杆体', 1, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010022', 'MG Segment', '3701251', '1012480', '盖板', 1, 'C', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010023', 'MG Segment', '3701251', '2213676', '阀芯', 1, 'D', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010024', 'MG Segment', '3701251', '1011984', '阀座', 1, 'E', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010025', 'MG Segment', '3701251', '8T4138', '螺栓', 2, 'F', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010026', 'MG Segment', '3701251', '1118234', '弹簧', 1, 'F', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010027', 'MG Segment', '3701251', '1011980', '盖板', 1, 'F', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010028', 'MG Segment', '3701251', '2227774', '溢流阀', 1, 'F', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010029', 'MG Segment', '3701251', '8T6869', '螺栓', 2, 'G', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010030', 'MG Segment', '3701251', '8T4224', '垫片', 2, 'G', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010031', 'MG Segment', '3701251', '3701252', '铭牌', 1, 'G', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741585366708010032', 'MG Segment', '3701251', '1084916', '制动组件', 1, 'G', 8, '2025-03-10 13:42:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010000', 'Fenix', '4906531', '1483483', 'PLUG ', 2, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010001', 'Fenix', '4906531', '4D0514', 'PLUG-PTF ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010002', 'Fenix', '4906531', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010003', 'Fenix', '4906531', '9S8002', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010004', 'Fenix', '4906531', '9T8685', 'VALVE ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010005', 'Fenix', '4906531', '2N7029', 'SPRING-CONT PIN ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010006', 'Fenix', '4906531', '3D2824', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010007', 'Fenix', '4906531', '3788543', 'PLUG ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010008', 'Fenix', '4906531', '4812473', 'VALVE GP-P RLF-B', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010009', 'Fenix', '4906531', '4812471', 'VALVE GP-CHECK ', 1, 'A', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010010', 'Fenix', '4906531', '2608590', 'VALVE GP-SHTL -B', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010011', 'Fenix', '4906531', '7J9933', 'SEAL-O RING ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010012', 'Fenix', '4906531', '4829841', 'RING-BACKUP ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010013', 'Fenix', '4906531', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010014', 'Fenix', '4906531', '4681138', 'PLUG-RETAINER ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010015', 'Fenix', '4906531', '1483483', 'PLUG ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010016', 'Fenix', '4906531', '2Y2347', 'SEAL-O-RING ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010017', 'Fenix', '4906531', '1H1023', 'SEAL-O RING ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010018', 'Fenix', '4906531', '4908810', 'HOUSING ', 1, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010019', 'Fenix', '4906531', '4681141', 'RETAINER ', 2, 'B', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010020', 'Fenix', '4906531', '4681135', 'SPRING ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010021', 'Fenix', '4906531', '4681145', 'BOLT-FLAT ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010022', 'Fenix', '4906531', '3P1979', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010023', 'Fenix', '4906531', '4681339', 'HOUSING ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010024', 'Fenix', '4906531', '1323877/EY', 'BOLT-HEX HEAD ', 2, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010025', 'Fenix', '4906531', '9X8256', 'WASHER ', 2, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010026', 'Fenix', '4906531', '7X5315', 'COUPLING-QDISC ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010027', 'Fenix', '4906531', '7X5308', 'CAP-DUST ', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010028', 'Fenix', '4906531', '4689932', 'MANIFOLD GP-CONT', 1, 'C', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010029', 'Fenix', '4906531', '7X2535', 'BOLT-HEX HEAD ', 2, 'D', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396499010030', 'Fenix', '4906531', '9X8256', 'WASHER ', 2, 'D', 1, '2025-03-11 15:33:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396500010000', 'Fenix', '4906531', '7X5315', 'COUPLING-QDISC ', 1, 'D', 1, '2025-03-11 15:33:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396500010001', 'Fenix', '4906531', '7X5308', 'CAP-DUST ', 1, 'D', 1, '2025-03-11 15:33:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396500010002', 'Fenix', '4906531', '5542333/HE', 'CAP-CONNECTOR ', 2, 'D', 1, '2025-03-11 15:33:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741678396500010003', 'Fenix', '4906531', '4993695', 'PLATE-IDENT ', 1, 'D', 1, '2025-03-11 15:33:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010000', 'Fenix', '6429812', '1483483', 'PLUG', 2, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010001', 'Fenix', '6429812', '9J8126', 'PLUG-NPTF', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010002', 'Fenix', '6429812', '9S8002', 'PLUG', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010003', 'Fenix', '6429812', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010004', 'Fenix', '6429812', '2608590', 'VALVE GP-HITF-B', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010005', 'Fenix', '6429812', '9T8685', 'VALVE', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010006', 'Fenix', '6429812', '2N7029', 'SPRING', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010007', 'Fenix', '6429812', '3788543', 'PLUG', 1, 'A', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010008', 'Fenix', '6429812', '3D2824', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010009', 'Fenix', '6429812', '4841390', 'PLUG AS', 2, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010010', 'Fenix', '6429812', '6293326', 'SPOLL', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010011', 'Fenix', '6429812', '4681136', 'SPRING', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010012', 'Fenix', '6429812', '4681139', 'PLUG', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010013', 'Fenix', '6429812', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010014', 'Fenix', '6429812', '7J9933', 'SEAL', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010015', 'Fenix', '6429812', '4829841', 'RING', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010016', 'Fenix', '6429812', '5Y2425/G', 'WASHER', 2, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010017', 'Fenix', '6429812', '5112163', 'VALVE', 1, 'B', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010018', 'Fenix', '6429812', '4681141', 'RETAINER', 2, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010019', 'Fenix', '6429812', '4681135', 'SPRING', 1, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010020', 'Fenix', '6429812', '4681145', 'BOLT', 1, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010021', 'Fenix', '6429812', '1483483', 'PLUG', 1, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010022', 'Fenix', '6429812', '4681339', 'HOUSING', 1, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010023', 'Fenix', '6429812', '3P1979', 'SEAL', 1, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010024', 'Fenix', '6429812', '7X7888', 'BOLT', 2, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010025', 'Fenix', '6429812', '9X8256', 'WASHER', 2, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010026', 'Fenix', '6429812', '7X5308', 'CAP', 2, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010027', 'Fenix', '6429812', '7X5315', 'COUPLING', 2, 'C', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010028', 'Fenix', '6429812', '4689932', 'MANIFOLD', 1, 'D', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010029', 'Fenix', '6429812', '7X2535', 'BOLT', 2, 'D', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010030', 'Fenix', '6429812', '9X8256', 'WASHER', 2, 'D', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010031', 'Fenix', '6429812', '6429811', 'PLATE', 1, 'D', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679130111010032', 'Fenix', '6429812', '5542333/HE', 'CAP', 2, 'D', 1, '2025-03-11 15:45:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010000', 'Fenix', '4906530', '1483483', 'PLUG ', 2, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010001', 'Fenix', '4906530', '4D0514', 'PLUG-PTF ', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010002', 'Fenix', '4906530', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010003', 'Fenix', '4906530', '9S8002', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010004', 'Fenix', '4906530', '9T8685', 'VALVE ', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010005', 'Fenix', '4906530', '2N7029', 'SPRING-CONT PIN ', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010006', 'Fenix', '4906530', '3D2824', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010007', 'Fenix', '4906530', '3788543', 'PLUG ', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010008', 'Fenix', '4906530', '4812471', 'VALVE GP-CHECK ', 2, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010009', 'Fenix', '4906530', '2608590', 'VALVE GP-SHTL -B', 1, 'A', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010010', 'Fenix', '4906530', '7J9933', 'SEAL-O RING ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010011', 'Fenix', '4906530', '4829841', 'RING-BACKUP ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010012', 'Fenix', '4906530', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010013', 'Fenix', '4906530', '4681138', 'PLUG-RETAINER ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010014', 'Fenix', '4906530', '2Y2347', 'SEAL-O-RING ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010015', 'Fenix', '4906530', '1H1023', 'SEAL-O RING ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010016', 'Fenix', '4906530', '4908810', 'HOUSING ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010017', 'Fenix', '4906530', '4681141', 'RETAINER ', 2, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010018', 'Fenix', '4906530', '4681135', 'SPRING ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010019', 'Fenix', '4906530', '4681145', 'BOLT-FLAT ', 1, 'B', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010020', 'Fenix', '4906530', '3P1979', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010021', 'Fenix', '4906530', '4681339', 'HOUSING ', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010022', 'Fenix', '4906530', '1323877/EY', 'BOLT-HEX HEAD ', 2, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010023', 'Fenix', '4906530', '9X8256', 'WASHER ', 2, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010024', 'Fenix', '4906530', '7X5315', 'COUPLING-QDISC ', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463200010025', 'Fenix', '4906530', '7X5308', 'CAP-DUST ', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010000', 'Fenix', '4906530', '1483483', 'PLUG ', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010001', 'Fenix', '4906530', '4689932', 'MANIFOLD GP-CONT', 1, 'C', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010002', 'Fenix', '4906530', '7X2535', 'BOLT-HEX HEAD ', 2, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010003', 'Fenix', '4906530', '9X8256', 'WASHER ', 2, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010004', 'Fenix', '4906530', '7X5315', 'COUPLING-QDISC ', 1, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010005', 'Fenix', '4906530', '7X5308', 'CAP-DUST ', 1, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010006', 'Fenix', '4906530', '5542333/HE', 'CAP-CONNECTOR ', 2, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010007', 'Fenix', '4906530', '4993694', 'PLATE-IDENT ', 1, 'D', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741679463202010008', 'Fenix', '4906530', '4674763', 'STEM-RIPPER LIFT', 1, 'E', 1, '2025-03-11 15:51:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010000', 'Check Valve', '5089741', '4I3510/HE', 'SPRING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010001', 'Check Valve', '5089741', '7E4846', 'SEAL-O RING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010002', 'Check Valve', '5089741', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010003', 'Check Valve', '5089741', '8T4244', 'NUT-HEX', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010004', 'Check Valve', '5089741', '8T6759', 'PLUG-INTL HEX', 4, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010005', 'Check Valve', '5089741', '0951573/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010006', 'Check Valve', '5089741', '0951578/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010007', 'Check Valve', '5089741', '0951584/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010008', 'Check Valve', '5089741', '0951587/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010009', 'Check Valve', '5089741', '0951786/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010010', 'Check Valve', '5089741', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010011', 'Check Valve', '5089741', '1710037/HE', 'VALVE', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010012', 'Check Valve', '5089741', '5075972/HE', 'PLUG-CV STOPPER', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010013', 'Check Valve', '5089741', '5075973/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010014', 'Check Valve', '5089741', '5075975/HE', 'BODY-VALVE', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010015', 'Check Valve', '5089741', '5075976/HE', 'ADJUSTER', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010016', 'Check Valve', '5089741', '5075983/HE', 'PLUG-STOPPER', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010017', 'Check Valve', '5089741', '5075984/HE', 'RETAINER-SPRING', 1, 'B', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010018', 'Check Valve', '5089741', '5075985/HE', 'SPRING-RETURN', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010019', 'Check Valve', '5089741', '5075987/HE', 'COVER-PISTON', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010020', 'Check Valve', '5089741', '5075988/HE', 'BOLT-FLANGE HEAD', 2, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010021', 'Check Valve', '5089741', '5075989/HE', 'BOLT-FLANGE HEAD', 4, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010022', 'Check Valve', '5089741', '3237773/HE', 'FILTER', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010023', 'Check Valve', '5089741', '4802136/HE', ' OLLAR', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010024', 'Check Valve', '5089741', '5075974/HE', 'SEAT-VALVE', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010025', 'Check Valve', '5089741', '5075986/HE-44', '5075986/HE&5373244/HE', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010026', 'Check Valve', '5089741', '5573858/HE', 'VALVE-CHECK', 1, 'C', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010027', 'Check Valve', '5089741', '5177914/HE', 'STEM GP-VALVE', 1, 'D', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010028', 'Check Valve', '5089741', '5573859/HE', 'SPRING-CHECK V', 1, 'D', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010029', 'Check Valve', '5089741', '5601780/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010030', 'Check Valve', '5089741', '5601782/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759496581010031', 'Check Valve', '5089741', '5674312/HE-41', 'PLATE-IDENT', 1, 'D', 1, '2025-03-12 14:04:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010000', 'Diff lock valve', '6209758', '3J1907', '橡胶密封圈', 9, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010001', 'Diff lock valve', '6209758', '7I2272', '钢铁螺栓', 2, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010002', 'Diff lock valve', '6209758', '1119916/HE', '电磁阀', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010003', 'Diff lock valve', '6209758', '9S8004', '堵头', 9, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010004', 'Diff lock valve', '6209758', '2660531', '插座盖', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010005', 'Diff lock valve', '6209758', '3676001', '钢铁制塞堵组件', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010006', 'Diff lock valve', '6209758', '3884493', '止回阀', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010007', 'Diff lock valve', '6209758', '5677649', '橡胶密封圈', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759512344010008', 'Diff lock valve', '6209758', '6209759', 'VALVE GP', 1, 'A', 2, '2025-03-12 14:05:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010000', 'QD#1', '5585127', '9S8006', '塞子', 1, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010001', 'QD#1', '5585127', '2M9780', '密封圈', 1, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010002', 'QD#1', '5585127', '9S8003', '塞子', 2, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010003', 'QD#1', '5585127', '1J9671', '密封圈', 2, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010004', 'QD#1', '5585127', '5H4019', '盖子', 4, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010005', 'QD#1', '5585127', '4J0520', '密封圈', 4, 'A', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010006', 'QD#1', '5585127', '1442894', '球形堵头', 2, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010007', 'QD#1', '5585127', '1U1968', '定位环', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010008', 'QD#1', '5585127', '5585142', '节流套', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010009', 'QD#1', '5585127', '1006211', '活塞', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010010', 'QD#1', '5585127', '3L3813', '销', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010011', 'QD#1', '5585127', '1P3706', '密封圈', 2, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010012', 'QD#1', '5585127', '1081847', '弹簧', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010013', 'QD#1', '5585127', '6E4907', '挡圈', 1, 'B', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010014', 'QD#1', '5585127', '2343043', '盖', 1, 'C', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010015', 'QD#1', '5585127', '6V8200', '螺钉', 8, 'C', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010016', 'QD#1', '5585127', '2343451', '盖', 1, 'D', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010017', 'QD#1', '5585127', '5334159', '螺栓', 16, 'D', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010018', 'QD#1', '5585127', '8C3206', '法兰', 8, 'E', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010019', 'QD#1', '5585127', '5585141', '铭牌', 1, 'E', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010020', 'QD#1', '5585127', '2855628', '电磁阀', 1, 'F', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010021', 'QD#1', '5585127', '9S4182', '堵头', 1, 'F', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010022', 'QD#1', '5585127', '3J7354', 'o型圈', 1, 'F', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010023', 'QD#1', '5585127', '8C3206', '法兰', 4, 'G', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010024', 'QD#1', '5585127', '5H4019', '盖子', 2, 'G', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010025', 'QD#1', '5585127', '4J0520', 'O型圈', 2, 'G', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010026', 'QD#1', '5585127', '2660531', '保护套', 1, 'G', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759533062010027', 'QD#1', '5585127', '5334159', '堵头', 8, 'G', 4, '2025-03-12 14:05:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010000', 'MG Stack', '1303116', '2191891', 'PLUG', 8, 'A', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010001', 'MG Stack', '1303116', '9S4180', '螺堵', 1, 'A', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010002', 'MG Stack', '1303116', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010003', 'MG Stack', '1303116', '2521631', '螺堵', 1, 'A', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010004', 'MG Stack', '1303116', '2191893', 'O型圈', 2, 'A', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010005', 'MG Stack', '1303116', '8T4189', '螺栓', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010006', 'MG Stack', '1303116', '8T4224', '垫圈', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010007', 'MG Stack', '1303116', '7S0530', '夹子', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010008', 'MG Stack', '1303116', '1303093', '铭牌', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010009', 'MG Stack', '1303116', '8T6408', '螺栓', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010010', 'MG Stack', '1303116', '8T4186', '螺栓', 3, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010011', 'MG Stack', '1303116', '8T4896', '垫圈', 1, 'B', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010012', 'MG Stack', '1303116', '1010509', '密封板', 5, 'C', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759563373010013', 'MG Stack', '1303116', '7X2546', '螺栓', 2, 'C', 2, '2025-03-12 14:06:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010000', 'MG Segment', '6E3029', '9S8005', '堵头', 1, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010001', 'MG Segment', '6E3029', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010002', 'MG Segment', '6E3029', '9J0404', '堵头', 2, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010003', 'MG Segment', '6E3029', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010004', 'MG Segment', '6E3029', '3405470', '右手柄', 1, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010005', 'MG Segment', '6E3029', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010006', 'MG Segment', '6E3029', '6E4502', '堵头', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010007', 'MG Segment', '6E3029', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010008', 'MG Segment', '6E3029', '6E3019', '阀', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010009', 'MG Segment', '6E3029', '6E5153', '弹簧', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010010', 'MG Segment', '6E3029', '1082187', '堵头', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010011', 'MG Segment', '6E3029', '5B9318', '钢球', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010012', 'MG Segment', '6E3029', '9J0403', '弹簧', 2, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010013', 'MG Segment', '6E3029', '1063659', '活塞', 1, 'B', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010014', 'MG Segment', '6E3029', '6E3007', '弹簧', 1, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010015', 'MG Segment', '6E3029', '1011973', '轴承座', 4, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010016', 'MG Segment', '6E3029', '8T4189', '螺栓', 2, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010017', 'MG Segment', '6E3029', '8T4224', '垫片', 2, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010018', 'MG Segment', '6E3029', '1027412', '弹簧', 1, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010019', 'MG Segment', '6E3029', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010020', 'MG Segment', '6E3029', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010021', 'MG Segment', '6E3029', '1011971', '杆体', 1, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010022', 'MG Segment', '6E3029', '1012480', '盖板', 1, 'C', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010023', 'MG Segment', '6E3029', '1011149', '阀芯', 1, 'D', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010024', 'MG Segment', '6E3029', '1011984', '阀座', 1, 'E', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010025', 'MG Segment', '6E3029', '8T4138', '螺栓', 2, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010026', 'MG Segment', '6E3029', '1118233', '弹簧', 1, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010027', 'MG Segment', '6E3029', '1011978', '盖板', 1, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010028', 'MG Segment', '6E3029', '8T4189', '螺栓', 2, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010029', 'MG Segment', '6E3029', '8T4224', '垫片', 2, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759699518010030', 'MG Segment', '6E3029', '1070513', '铭牌', 1, 'F', 8, '2025-03-12 14:08:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010000', 'MG Segment', '6E3030', '9S8005', '堵头', 1, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010001', 'MG Segment', '6E3030', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010002', 'MG Segment', '6E3030', '9J0404', '堵头', 2, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010003', 'MG Segment', '6E3030', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010004', 'MG Segment', '6E3030', '3405470', '右手柄', 1, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010005', 'MG Segment', '6E3030', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010006', 'MG Segment', '6E3030', '6E4502', '堵头', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010007', 'MG Segment', '6E3030', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010008', 'MG Segment', '6E3030', '6E3019', '阀', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010009', 'MG Segment', '6E3030', '6E5153', '弹簧', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010010', 'MG Segment', '6E3030', '1082187', '堵头', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010011', 'MG Segment', '6E3030', '5B9318', '钢球', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010012', 'MG Segment', '6E3030', '9J0403', '弹簧', 2, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010013', 'MG Segment', '6E3030', '1063659', '活塞', 1, 'B', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010014', 'MG Segment', '6E3030', '6E3007', '弹簧', 1, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010015', 'MG Segment', '6E3030', '1011973', '轴承座', 4, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010016', 'MG Segment', '6E3030', '8T4189', '螺栓', 2, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010017', 'MG Segment', '6E3030', '8T4224', '垫片', 2, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010018', 'MG Segment', '6E3030', '1027412', '弹簧', 1, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010019', 'MG Segment', '6E3030', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010020', 'MG Segment', '6E3030', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010021', 'MG Segment', '6E3030', '1011971', '杆体', 1, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010022', 'MG Segment', '6E3030', '1012480', '盖板', 1, 'C', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010023', 'MG Segment', '6E3030', '1011154', '阀芯', 1, 'D', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010024', 'MG Segment', '6E3030', '1011984', '阀座', 1, 'E', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010025', 'MG Segment', '6E3030', '8T4138', '螺栓', 2, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010026', 'MG Segment', '6E3030', '1118233', '弹簧', 1, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010027', 'MG Segment', '6E3030', '1011978', '盖板', 1, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010028', 'MG Segment', '6E3030', '8T4189', '螺栓', 2, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010029', 'MG Segment', '6E3030', '8T4224', '垫片', 2, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759834802010030', 'MG Segment', '6E3030', '1070515', '铭牌', 1, 'F', 8, '2025-03-12 14:10:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010000', 'MG Segment', '6E3028', '9S8005', '堵头', 1, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010001', 'MG Segment', '6E3028', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010002', 'MG Segment', '6E3028', '9J0404', '堵头', 2, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010003', 'MG Segment', '6E3028', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010004', 'MG Segment', '6E3028', '3405470', '右手柄', 1, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010005', 'MG Segment', '6E3028', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010006', 'MG Segment', '6E3028', '6E4502', '堵头', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010007', 'MG Segment', '6E3028', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010008', 'MG Segment', '6E3028', '6E3019', '阀', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010009', 'MG Segment', '6E3028', '6E5153', '弹簧', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010010', 'MG Segment', '6E3028', '1082187', '堵头', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010011', 'MG Segment', '6E3028', '5B9318', '钢球', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010012', 'MG Segment', '6E3028', '9J0403', '弹簧', 2, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010013', 'MG Segment', '6E3028', '1063659', '活塞', 1, 'B', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010014', 'MG Segment', '6E3028', '6E3007', '弹簧', 1, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010015', 'MG Segment', '6E3028', '1011973', '轴承座', 4, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010016', 'MG Segment', '6E3028', '8T4189', '螺栓', 2, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010017', 'MG Segment', '6E3028', '8T4224', '垫片', 2, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010018', 'MG Segment', '6E3028', '1027412', '弹簧', 1, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010019', 'MG Segment', '6E3028', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010020', 'MG Segment', '6E3028', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010021', 'MG Segment', '6E3028', '1011971', '杆体', 1, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010022', 'MG Segment', '6E3028', '1012480', '盖板', 1, 'C', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010023', 'MG Segment', '6E3028', '1011148', '阀芯', 1, 'D', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010024', 'MG Segment', '6E3028', '1011984', '阀座', 1, 'E', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010025', 'MG Segment', '6E3028', '8T4138', '螺栓', 2, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010026', 'MG Segment', '6E3028', '1118233', '弹簧', 1, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010027', 'MG Segment', '6E3028', '1011978', '盖板', 1, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010028', 'MG Segment', '6E3028', '8T4189', '螺栓', 2, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010029', 'MG Segment', '6E3028', '8T4224', '垫片', 2, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759849594010030', 'MG Segment', '6E3028', '1070512', '铭牌', 1, 'F', 8, '2025-03-12 14:10:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010000', 'QD#1', '5385733', '2M9780', '橡胶密封圈', 1, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010001', 'QD#1', '5385733', '3603681', '钢铁制塞堵', 1, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010002', 'QD#1', '5385733', '3603678', '钢铁制塞堵', 1, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010003', 'QD#1', '5385733', '2147567', '橡胶密封圈', 1, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010004', 'QD#1', '5385733', '5H4019', '钢铁安装盖', 6, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010005', 'QD#1', '5385733', '4J0520', '橡胶密封圈', 6, 'A', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010006', 'QD#1', '5385733', '5B9318', '钢珠', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010007', 'QD#1', '5385733', '4J7533', '橡胶密封圈', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010008', 'QD#1', '5385733', '6E4502', '钢铁制塞堵', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010009', 'QD#1', '5385733', '9J8126', '钢铁制塞堵', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010010', 'QD#1', '5385733', '1P3706', '橡胶密封圈', 2, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010011', 'QD#1', '5385733', '6E4907', '阀用止动挡圈', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010012', 'QD#1', '5385733', '2474579', '钢铁拉簧', 1, 'B', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010013', 'QD#1', '5385733', '2343043', '阀用盖板', 1, 'C', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010014', 'QD#1', '5385733', '6V8200', '钢铁制螺栓', 8, 'C', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010015', 'QD#1', '5385733', '2343451', '阀用盖板', 1, 'D', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010016', 'QD#1', '5385733', '8T4196', '钢铁制螺栓', 24, 'D', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010017', 'QD#1', '5385733', '8C3206', '钢铁制法兰', 12, 'E', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010018', 'QD#1', '5385733', '8T4121', '钢铁制垫圈', 24, 'E', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759866790010019', 'QD#1', '5385733', '5385736', '铭牌', 1, 'E', 4, '2025-03-12 14:11:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474826010000', 'Check Valve', '4903958', '5A3604', 'BOLT-HEX SOCKET', 4, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474826010001', 'Check Valve', '4903958', '0951599/HE', 'SEAL-O-RING', 2, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474826010002', 'Check Valve', '4903958', '4533451/HE', 'WASHER-HARD', 4, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474826010003', 'Check Valve', '4903958', '4913418/HE', 'COVER-VALVE', 2, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474827010000', 'Check Valve', '4903958', '5674312/HE-58', 'PLATE-IDENT', 1, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474827010001', 'Check Valve', '4903958', '5931671/HE', 'VALVE-CHECK', 2, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474827010002', 'Check Valve', '4903958', '5931672/HE', 'SLEEVE-CHECK V', 2, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911474827010003', 'Check Valve', '4903958', '5931673/HE', 'SPRING-CHECK V', 2, 'A', 1, '2025-03-14 08:17:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010000', 'Check Valve', '5075967', '4I3510/HE', 'SPRING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010001', 'Check Valve', '5075967', '7E4846', 'SEAL-O RING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010002', 'Check Valve', '5075967', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010003', 'Check Valve', '5075967', '8J6815', 'PLUG-NPTF', 2, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010004', 'Check Valve', '5075967', '8T4244', 'NUT-HEX', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010005', 'Check Valve', '5075967', '8T6759', 'PLUG-INTL HEX', 4, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010006', 'Check Valve', '5075967', '0951573/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010007', 'Check Valve', '5075967', '0951578/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499150010008', 'Check Valve', '5075967', '0951584/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010000', 'Check Valve', '5075967', '0951587/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010001', 'Check Valve', '5075967', '0951786/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010002', 'Check Valve', '5075967', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010003', 'Check Valve', '5075967', '1710037/HE', 'VALVE', 1, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010004', 'Check Valve', '5075967', '3J1907', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010005', 'Check Valve', '5075967', '3603692', 'PLUG-HD STOR', 2, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010006', 'Check Valve', '5075967', '5075986/HE-44', '5075986/HE&5373244/HE', 1, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010007', 'Check Valve', '5075967', '5573858/HE', 'VALVE-CHECK', 1, 'B', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010008', 'Check Valve', '5075967', '5075972/HE', 'PLUG-CV STOPPER', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010009', 'Check Valve', '5075967', '5075973/HE', 'COVER-CHECK V', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010010', 'Check Valve', '5075967', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010011', 'Check Valve', '5075967', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010012', 'Check Valve', '5075967', '5075977/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010013', 'Check Valve', '5075967', '5075983/HE', 'PLUG-STOPPER', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010014', 'Check Valve', '5075967', '5075984/HE', 'RETAINER-SPRING', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010015', 'Check Valve', '5075967', '5075985/HE', 'SPRING-RETURN', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010016', 'Check Valve', '5075967', '5075987/HE', 'COVER-PISTON', 1, 'C', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010017', 'Check Valve', '5075967', '5075988/HE', 'BOLT-FLANGE HEAD', 2, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010018', 'Check Valve', '5075967', '5075989/HE', 'BOLT-FLANGE HEAD', 4, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010019', 'Check Valve', '5075967', '3237773/HE', 'FILTER', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010020', 'Check Valve', '5075967', '4802136/HE', 'COLLAR', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010021', 'Check Valve', '5075967', '5075974/HE', 'SEAT-VALVE', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010022', 'Check Valve', '5075967', '5573859/HE', 'SPRING-CHECK V', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499151010023', 'Check Valve', '5075967', '5601780/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499152010000', 'Check Valve', '5075967', '5601781/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911499152010001', 'Check Valve', '5075967', '5674312/HE-67', 'PLATE-IDENT', 1, 'D', 1, '2025-03-14 08:18:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010000', 'Check Valve', '5611790', '8T6759', 'PLUG-INTL HEX', 4, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010001', 'Check Valve', '5611790', '8J6815', 'PLUG-NPTF', 2, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010002', 'Check Valve', '5611790', '5573858/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010003', 'Check Valve', '5611790', '5573859/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010004', 'Check Valve', '5611790', '5075972/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010005', 'Check Valve', '5611790', '0951587/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010006', 'Check Valve', '5611790', '0951786/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010007', 'Check Valve', '5611790', '5075989/HE', 'BOLT-FLANGE HEAD', 4, 'A', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010008', 'Check Valve', '5611790', '5075973/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010009', 'Check Valve', '5611790', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010010', 'Check Valve', '5611790', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010011', 'Check Valve', '5611790', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010012', 'Check Valve', '5611790', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010013', 'Check Valve', '5611790', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010014', 'Check Valve', '5611790', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010015', 'Check Valve', '5611790', '5075975/HE', 'BODY-VALVE', 1, 'B', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010016', 'Check Valve', '5611790', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010017', 'Check Valve', '5611790', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010018', 'Check Valve', '5611790', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010019', 'Check Valve', '5611790', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010020', 'Check Valve', '5611790', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010021', 'Check Valve', '5611790', '5611791/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010022', 'Check Valve', '5611790', '5075984/HE', 'RETAINER-SPRING', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010023', 'Check Valve', '5611790', '5075983/HE', 'PLUG-STOPPER', 1, 'C', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010024', 'Check Valve', '5611790', '7M8485', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010025', 'Check Valve', '5611790', '5075985/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010026', 'Check Valve', '5611790', '5075986/HE-44', '5075986/HE&5373244/HE', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010027', 'Check Valve', '5611790', '7E4846', 'SEAL-O RING', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010028', 'Check Valve', '5611790', '5075987/HE', 'COVER-PISTON', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010029', 'Check Valve', '5611790', '5075988/HE', 'BOLT-FLANGE HEAD', 2, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010030', 'Check Valve', '5611790', '5674312/HE-90', 'PLATE-IDENT', 1, 'D', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010031', 'Check Valve', '5611790', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010032', 'Check Valve', '5611790', '3603692', 'PLUG-HD STOR', 2, 'E', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010033', 'Check Valve', '5611790', '5601780/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911519581010034', 'Check Valve', '5611790', '5601781/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:18:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675910010000', 'Check Valve', '5181312', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675910010001', 'Check Valve', '5181312', '8J6815', 'PLUG-NPTF', 2, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675910010002', 'Check Valve', '5181312', '5181315/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675910010003', 'Check Valve', '5181312', '5181331/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675910010004', 'Check Valve', '5181312', '0951601/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010000', 'Check Valve', '5181312', '5181332/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010001', 'Check Valve', '5181312', '2324113/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010002', 'Check Valve', '5181312', '8T4223', 'WASHER-HARD', 4, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010003', 'Check Valve', '5181312', '8T4956', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010004', 'Check Valve', '5181312', '5181333/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010005', 'Check Valve', '5181312', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010006', 'Check Valve', '5181312', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010007', 'Check Valve', '5181312', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010008', 'Check Valve', '5181312', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010009', 'Check Valve', '5181312', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010010', 'Check Valve', '5181312', '0951584/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010011', 'Check Valve', '5181312', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010012', 'Check Valve', '5181312', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010013', 'Check Valve', '5181312', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010014', 'Check Valve', '5181312', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010015', 'Check Valve', '5181312', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675911010016', 'Check Valve', '5181312', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675912010000', 'Check Valve', '5181312', '5181317/HE', 'STEM GP-VALVE', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675912010001', 'Check Valve', '5181312', '6K6307', 'SEAL-O-RING', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675912010002', 'Check Valve', '5181312', '5181324/HE', 'PLUG', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675912010003', 'Check Valve', '5181312', '5181325/HE', 'RETAINER-SPRING', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675913010000', 'Check Valve', '5181312', '5181326/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675913010001', 'Check Valve', '5181312', '5181327/HE-14', '5181327/HE&5313314/HE', 1, 'D', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675913010002', 'Check Valve', '5181312', '6V8218', 'SEAL-ORING', 1, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675914010000', 'Check Valve', '5181312', '8T4121', 'WASHER-HARD', 2, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675914010001', 'Check Valve', '5181312', '8T4137', 'BOLT-HEX HEAD', 2, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675914010002', 'Check Valve', '5181312', '5181328/HE', 'COVER-PISTON', 1, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675914010003', 'Check Valve', '5181312', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675919010000', 'Check Valve', '5181312', '5674312/HE-12', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675919010001', 'Check Valve', '5181312', '3603692', 'PLUG-HD STOR', 2, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675919010002', 'Check Valve', '5181312', '5536203/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911675919010003', 'Check Valve', '5181312', '5536204/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:21:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854397010000', 'Neu', '2965662', '9T8668', '堵头', 1, 'A', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854398010000', 'Neu', '2965662', '3D2824', 'O型圈', 1, 'A', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854398010001', 'Neu', '2965662', '2935263', '弹簧', 1, 'A', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854398010002', 'Neu', '2965662', '4475613', '唇形密封', 1, 'A', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854398010003', 'Neu', '2965662', '6J4568', '保护套', 1, 'B', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741911854398010004', 'Neu', '2965662', '2521631', '堵头', 3, 'B', 10, '2025-03-14 08:24:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010000', 'Check Valve', '5181337', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010001', 'Check Valve', '5181337', '5181315/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010002', 'Check Valve', '5181337', '5181331/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010003', 'Check Valve', '5181337', '0951601/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010004', 'Check Valve', '5181337', '5181332/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010005', 'Check Valve', '5181337', '2324113/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010006', 'Check Valve', '5181337', '8T4223', 'WASHER-HARD', 4, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010007', 'Check Valve', '5181337', '8T4956', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010008', 'Check Valve', '5181337', '5181333/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010009', 'Check Valve', '5181337', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010010', 'Check Valve', '5181337', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010011', 'Check Valve', '5181337', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010012', 'Check Valve', '5181337', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010013', 'Check Valve', '5181337', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010014', 'Check Valve', '5181337', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010015', 'Check Valve', '5181337', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010016', 'Check Valve', '5181337', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010017', 'Check Valve', '5181337', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010018', 'Check Valve', '5181337', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302897010019', 'Check Valve', '5181337', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010000', 'Check Valve', '5181337', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010001', 'Check Valve', '5181337', '5181340/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010002', 'Check Valve', '5181337', '6K6307', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010003', 'Check Valve', '5181337', '5181324/HE', 'PLUG', 1, 'C', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010004', 'Check Valve', '5181337', '5181325/HE', 'RETAINER-SPRING', 1, 'D', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010005', 'Check Valve', '5181337', '5181326/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010006', 'Check Valve', '5181337', '5181327/HE-14', '5181327/HE&5313314/HE', 1, 'D', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010007', 'Check Valve', '5181337', '6V8218', 'SEAL-ORING', 1, 'D', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010008', 'Check Valve', '5181337', '8T4121', 'WASHER-HARD', 2, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010009', 'Check Valve', '5181337', '8T4137', 'BOLT-HEX HEAD', 2, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010010', 'Check Valve', '5181337', '5181328/HE', 'COVER-PISTON', 1, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010011', 'Check Valve', '5181337', '5674312/HE-37', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010012', 'Check Valve', '5181337', '5536203/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913302898010013', 'Check Valve', '5181337', '5536205/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 08:48:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010000', 'selector', '6E5566', '3J1907', 'O型圈', 2, 'A', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010001', 'selector', '6E5566', '9S4191', '螺堵', 2, 'A', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010002', 'selector', '6E5566', '2521631', '塑料螺堵', 2, 'A', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010003', 'selector', '6E5566', '1083866', '堵头', 2, 'B', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010004', 'selector', '6E5566', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010005', 'selector', '6E5566', '1181470', '铭牌', 1, 'B', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913323507010006', 'selector', '6E5566', '7S8553', '弹簧', 1, 'B', 10, '2025-03-14 08:48:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010000', 'Neu', '3215283', '9J0477', '堵头', 1, 'A', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010001', 'Neu', '3215283', '4K1388', 'O型圈', 1, 'A', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010002', 'Neu', '3215283', '6J4694', '堵头', 1, 'A', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010003', 'Neu', '3215283', '1J9671', 'O型圈', 1, 'A', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010004', 'Neu', '3215283', '4B9782', '钢球', 1, 'B', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010005', 'Neu', '3215283', '4H8380', '穿销', 1, 'B', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010006', 'Neu', '3215283', '1A8096', '弹簧', 1, 'B', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010007', 'Neu', '3215283', '7B8194', '弹簧', 1, 'B', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010008', 'Neu', '3215283', '4475614', '唇形密封', 1, 'B', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010009', 'Neu', '3215283', '1U3142', '保护套', 1, 'C', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010010', 'Neu', '3215283', '2521631', '堵头', 3, 'C', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010011', 'Neu', '3215283', '1J9671', 'O型圈', 1, 'C', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913356564010012', 'Neu', '3215283', '3603691', '堵头', 1, 'C', 10, '2025-03-14 08:49:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507770010000', 'Neu', '2119696', '2119695', '堵头', 1, 'A', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507770010001', 'Neu', '2119696', '3D2824', 'O型圈', 1, 'A', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507770010002', 'Neu', '2119696', '8Y5928', '弹簧', 1, 'A', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507771010000', 'Neu', '2119696', '4475613', '唇形密封', 1, 'A', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507771010001', 'Neu', '2119696', '2260267', '保护套', 1, 'B', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913507771010002', 'Neu', '2119696', '2521631', '堵头', 3, 'B', 10, '2025-03-14 08:51:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605250010000', 'QD#1', '2343042', '9S8006', '塞子', 1, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605250010001', 'QD#1', '2343042', '2M9780', '密封圈', 1, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605250010002', 'QD#1', '2343042', '9S8003', '塞子', 2, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605250010003', 'QD#1', '2343042', '1J9671', '密封圈', 2, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605250010004', 'QD#1', '2343042', '5H4019', '盖子', 4, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010000', 'QD#1', '2343042', '4J0520', '密封圈', 4, 'A', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010001', 'QD#1', '2343042', '6204980', '定位环', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010002', 'QD#1', '2343042', '9T9836', '节流套', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010003', 'QD#1', '2343042', '1006211', '活塞', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010004', 'QD#1', '2343042', '3L3813', '销', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010005', 'QD#1', '2343042', '1P3706', '密封圈', 2, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010006', 'QD#1', '2343042', '1081847', '弹簧', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010007', 'QD#1', '2343042', '6E4907', '挡圈', 1, 'B', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010008', 'QD#1', '2343042', '2343043', '盖', 1, 'C', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010009', 'QD#1', '2343042', '6V8200', '螺钉', 8, 'C', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010010', 'QD#1', '2343042', '2343451', '盖', 1, 'D', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010011', 'QD#1', '2343042', '5334159', '螺栓', 8, 'D', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010012', 'QD#1', '2343042', '8C3206', '法兰', 8, 'E', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010013', 'QD#1', '2343042', '2343453', '铭牌', 1, 'E', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010014', 'QD#1', '2343042', '5334159', '堵头', 8, 'E', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010015', 'QD#1', '2343042', '8C3206', '法兰', 4, 'F', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605251010016', 'QD#1', '2343042', '5H4019', '盖子', 2, 'F', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605252010000', 'QD#1', '2343042', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913605252010001', 'QD#1', '2343042', '5334159', '螺栓', 8, 'F', 4, '2025-03-14 08:53:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626163010000', 'Check Valve', '5573856', '8T6759', 'PLUG-INTL HEX', 4, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626163010001', 'Check Valve', '5573856', '5573858/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626163010002', 'Check Valve', '5573856', '5573859/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626163010003', 'Check Valve', '5573856', '0951587/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626163010004', 'Check Valve', '5573856', '5075972/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626166010000', 'Check Valve', '5573856', '0951786/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626166010001', 'Check Valve', '5573856', '5075989/HE', 'BOLT-FLANGE HEAD', 4, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626166010002', 'Check Valve', '5573856', '5075973/HE', 'COVER-CHECK V', 1, 'A', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626167010000', 'Check Valve', '5573856', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626167010001', 'Check Valve', '5573856', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010000', 'Check Valve', '5573856', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010001', 'Check Valve', '5573856', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010002', 'Check Valve', '5573856', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010003', 'Check Valve', '5573856', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010004', 'Check Valve', '5573856', '5075975/HE', 'BODY-VALVE', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010005', 'Check Valve', '5573856', '0951573/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010006', 'Check Valve', '5573856', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010007', 'Check Valve', '5573856', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010008', 'Check Valve', '5573856', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010009', 'Check Valve', '5573856', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010010', 'Check Valve', '5573856', '5573860/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010011', 'Check Valve', '5573856', '5075984/HE', 'RETAINER-SPRING', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626168010012', 'Check Valve', '5573856', '7M8485', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010000', 'Check Valve', '5573856', '5075983/HE', 'PLUG-STOPPER', 1, 'C', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010001', 'Check Valve', '5573856', '5075985/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010002', 'Check Valve', '5573856', '5075986/HE-44', '5075986/HE&5373244/HE', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010003', 'Check Valve', '5573856', '7E4846', 'SEAL-O RING', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010004', 'Check Valve', '5573856', '5075988/HE', 'BOLT-FLANGE HEAD', 2, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010005', 'Check Valve', '5573856', '5075987/HE', 'COVER-PISTON', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010006', 'Check Valve', '5573856', '4B4158', 'SCREW-DRIVE', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010007', 'Check Valve', '5573856', '5601780/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010008', 'Check Valve', '5573856', '5674312/HE-6', 'PLATE-IDENT', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913626169010009', 'Check Valve', '5573856', '5601782/HE', 'COVER-PORT PROTN', 1, 'D', 1, '2025-03-14 08:53:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649526010000', 'LS', '4869861', '8J6815', '节流堵头', 2, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649526010001', 'LS', '4869861', '3699151', '节流堵头', 1, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010000', 'LS', '4869861', '9S8002', '堵头', 18, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010001', 'LS', '4869861', '3J7354', 'O型圈', 18, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010002', 'LS', '4869861', '9S8006', '堵头', 1, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010003', 'LS', '4869861', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010004', 'LS', '4869861', '9S8004', '堵头', 1, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010005', 'LS', '4869861', '3J1907', 'O型圈', 1, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010006', 'LS', '4869861', '1T0936', '节流堵头', 2, 'A', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010007', 'LS', '4869861', '4T1860', '梭阀', 1, 'B', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010008', 'LS', '4869861', '5102219', '阀', 1, 'B', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010009', 'LS', '4869861', '4T4932', '阀', 1, 'B', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010010', 'LS', '4869861', '4882889', '阀', 1, 'C', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010011', 'LS', '4869861', '4925637', '阀', 1, 'C', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010012', 'LS', '4869861', '5194820', '阀', 1, 'C', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010013', 'LS', '4869861', '1411233', '阀', 1, 'C', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010014', 'LS', '4869861', '5102188', '铭牌', 1, 'C', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010015', 'LS', '4869861', '9X8267', '垫片', 2, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010016', 'LS', '4869861', '5C9553', '螺栓', 2, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010017', 'LS', '4869861', '5563719', '固定锁片', 1, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010018', 'LS', '4869861', '5554235', 'PLATE', 1, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010019', 'LS', '4869861', '5862152', 'Film', 1, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913649527010020', 'LS', '4869861', '4315624/HE', 'Film', 1, 'D', 2, '2025-03-14 08:54:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721667010000', 'QD#1', '3402788', '9S8006', '塞子', 1, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010000', 'QD#1', '3402788', '2M9780', '密封圈', 1, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010001', 'QD#1', '3402788', '9S8003', '塞子', 2, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010002', 'QD#1', '3402788', '1J9671', '密封圈', 2, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010003', 'QD#1', '3402788', '5H4019', '盖子', 4, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010004', 'QD#1', '3402788', '4J0520', '密封圈', 4, 'A', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010005', 'QD#1', '3402788', '1442894', '球形堵头', 2, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010006', 'QD#1', '3402788', '1U1968', '定位环', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010007', 'QD#1', '3402788', '9T9836', '节流套', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010008', 'QD#1', '3402788', '1006211', '活塞', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010009', 'QD#1', '3402788', '3L3813', '销', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010010', 'QD#1', '3402788', '1P3706', '密封圈', 2, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010011', 'QD#1', '3402788', '1081847', '弹簧', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010012', 'QD#1', '3402788', '6E4907', '挡圈', 1, 'B', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010013', 'QD#1', '3402788', '2343043', '盖', 1, 'C', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010014', 'QD#1', '3402788', '6V8200', '螺钉', 8, 'C', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010015', 'QD#1', '3402788', '2343451', '盖', 1, 'D', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010016', 'QD#1', '3402788', '5334159', '螺栓', 16, 'D', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010017', 'QD#1', '3402788', '8C3206', '法兰', 8, 'E', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010018', 'QD#1', '3402788', '3402789', '铭牌', 1, 'E', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010019', 'QD#1', '3402788', '2855628', '电磁阀', 1, 'F', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010020', 'QD#1', '3402788', '9S4182', '堵头', 1, 'F', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010021', 'QD#1', '3402788', '3J7354', 'o型圈', 1, 'F', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010022', 'QD#1', '3402788', '8C3206', '法兰', 4, 'G', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010023', 'QD#1', '3402788', '5H4019', '盖子', 2, 'G', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010024', 'QD#1', '3402788', '4J0520', 'O型圈', 2, 'G', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010025', 'QD#1', '3402788', '5334159', '螺栓', 8, 'G', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913721668010026', 'QD#1', '3402788', '2660531', '保护套', 1, 'G', 4, '2025-03-14 08:55:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010000', 'QD#3', '9T5653', '4J7101', '衬套', 1, 'A', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010001', 'QD#3', '9T5653', '7F8268', 'O型圈', 1, 'A', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010002', 'QD#3', '9T5653', '6B0863', '垫圈', 1, 'A', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010003', 'QD#3', '9T5653', '9T5785', '铭牌', 1, 'A', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010004', 'QD#3', '9T5653', '7M1297', '弹簧', 1, 'A', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010005', 'QD#3', '9T5653', '8T9383', '螺栓', 7, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010006', 'QD#3', '9T5653', '1J8476', '盖板', 1, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010007', 'QD#3', '9T5653', '3J3712', '衬垫', 1, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010008', 'QD#3', '9T5653', '1S1476', '吊环', 1, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010009', 'QD#3', '9T5653', '7X0352', '螺栓', 2, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010010', 'QD#3', '9T5653', '6J5899', '盖板', 1, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010011', 'QD#3', '9T5653', '8T4122', '垫片', 2, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010012', 'QD#3', '9T5653', '7X0448', '螺母', 2, 'B', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010013', 'QD#3', '9T5653', '4J7316', '衬垫', 1, 'C', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913761874010014', 'QD#3', '9T5653', '4J7315', '盖板', 1, 'C', 4, '2025-03-14 08:56:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808616010000', 'QD#1', '5853920', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010000', 'QD#1', '5853920', '9S8006', 'PLUG-LD STOR', 1, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010001', 'QD#1', '5853920', '1J9671', 'SEAL-O-RING', 2, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010002', 'QD#1', '5853920', '9S8003', 'PLUG-LD STOR', 2, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010003', 'QD#1', '5853920', '5H4019', 'COVER', 6, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010004', 'QD#1', '5853920', '4J0520', 'SEAL-O-RING', 6, 'A', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010005', 'QD#1', '5853920', '6204980', 'RING-RETAINING', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010006', 'QD#1', '5853920', '5086203', 'SLEEVE-ORIFICE', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010007', 'QD#1', '5853920', '1006211', 'PISTON', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010008', 'QD#1', '5853920', '3L3813', 'PIN', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010009', 'QD#1', '5853920', '1P3706', 'SEAL-RECTANGULAR', 2, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010010', 'QD#1', '5853920', '1081847', 'SPRING', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010011', 'QD#1', '5853920', '6E4907', 'STOP', 1, 'B', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010012', 'QD#1', '5853920', '2343043', 'COVER (METRIC)', 1, 'C', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010013', 'QD#1', '5853920', '1081781', 'BOLT-SOCKET HD', 8, 'C', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010014', 'QD#1', '5853920', '2343451', 'COVER (METRIC)', 1, 'D', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010015', 'QD#1', '5853920', '5334159', '钢铁制螺栓', 24, 'D', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010016', 'QD#1', '5853920', '8C3206', 'FLANGE-SPLIT', 12, 'E', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913808617010017', 'QD#1', '5853920', '5853921', 'PLATE-IDENT', 1, 'E', 4, '2025-03-14 08:56:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010000', 'QD#2', '4T4205', '4J0522', '密封o型圈', 3, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010001', 'QD#2', '4T4205', '4J5573', '密封o型圈', 1, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010002', 'QD#2', '4T4205', '3443549', '节流套', 1, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010003', 'QD#2', '4T4205', '7M1297', '弹簧', 1, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010004', 'QD#2', '4T4205', '8M2530', '螺栓', 2, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010005', 'QD#2', '4T4205', '1D4566', '螺栓', 5, 'A', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010006', 'QD#2', '4T4205', '4J0526', '密封o型圈', 1, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010007', 'QD#2', '4T4205', '4T4207', '节流螺钉', 1, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010008', 'QD#2', '4T4205', '6V1849', '盖', 1, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010009', 'QD#2', '4T4205', '4T4206', '标牌', 1, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010010', 'QD#2', '4T4205', '4J0525', 'o型圈', 1, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010011', 'QD#2', '4T4205', '8T8919', '螺栓', 2, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010012', 'QD#2', '4T4205', '5P1076', '垫片', 2, 'B', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010013', 'QD#2', '4T4205', '2D0094', '衬垫', 2, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010014', 'QD#2', '4T4205', '7J3554', '盖子', 2, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010015', 'QD#2', '4T4205', '3J5554', '衬垫', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010016', 'QD#2', '4T4205', '8J4398', '盖子', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010017', 'QD#2', '4T4205', '5P8167', '螺栓', 4, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010018', 'QD#2', '4T4205', '7X0272', '螺栓', 2, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010019', 'QD#2', '4T4205', '6J5899', '盖子', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010020', 'QD#2', '4T4205', '7X0352', '螺栓', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010021', 'QD#2', '4T4205', '7X0358', '螺栓', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010022', 'QD#2', '4T4205', '7X0448', '螺母', 2, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913829708010023', 'QD#2', '4T4205', '7S0530', '吊环', 1, 'C', 4, '2025-03-14 08:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930742010000', 'WL-ZL50', '4736798', '1415497', '钢铁弹簧', 1, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010000', 'WL-ZL50', '4736798', '1415498', '钢铁弹簧', 1, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010001', 'WL-ZL50', '4736798', '1422864', '阀用止动挡圈', 1, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010002', 'WL-ZL50', '4736798', '5S6980', '钢铁簧环', 1, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010003', 'WL-ZL50', '4736798', '1883365', '钢铁弹簧', 1, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010004', 'WL-ZL50', '4736798', '1744321', '线轴', 2, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010005', 'WL-ZL50', '4736798', '1734012', '钢铁弹簧', 2, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010006', 'WL-ZL50', '4736798', '3161438', '插装阀组件', 2, 'A', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010007', 'WL-ZL50', '4736798', '3265212', '电磁线圈', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010008', 'WL-ZL50', '4736798', '1919247', '钢铁制垫圈', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010009', 'WL-ZL50', '4736798', '1982914', '钢铁制螺母', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010010', 'WL-ZL50', '4736798', '3603679', '钢铁制塞堵', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010011', 'WL-ZL50', '4736798', '3J1907', '橡胶密封圈', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010012', 'WL-ZL50', '4736798', '3676001', '钢铁制塞堵组件', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010013', 'WL-ZL50', '4736798', '4D3107', '橡胶密封圈', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010014', 'WL-ZL50', '4736798', '1H1023', '橡胶密封圈', 4, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010015', 'WL-ZL50', '4736798', '6K0806', '塑料制扎带', 2, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010016', 'WL-ZL50', '4736798', '2071617', '铭牌', 1, 'B', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010017', 'WL-ZL50', '4736798', '1267654', '钢铁制间隔垫圈', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010018', 'WL-ZL50', '4736798', '1415497', '钢铁弹簧', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010019', 'WL-ZL50', '4736798', '1415498', '钢铁弹簧', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010020', 'WL-ZL50', '4736798', '1422864', '阀用止动挡圈', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010021', 'WL-ZL50', '4736798', '5S6980', '钢铁簧环', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010022', 'WL-ZL50', '4736798', '1899807', '钢铁弹簧', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010023', 'WL-ZL50', '4736798', '2071621', '铭牌', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010024', 'WL-ZL50', '4736798', '8T6870', '钢铁制螺栓', 4, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010025', 'WL-ZL50', '4736798', '7J7423', '阀', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010026', 'WL-ZL50', '4736798', '7S8491', '钢铁弹簧', 1, 'C', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010027', 'WL-ZL50', '4736798', '1U0322', '滑动轴承', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010028', 'WL-ZL50', '4736798', '2S4078', '橡胶密封圈', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010029', 'WL-ZL50', '4736798', '9S4191', '钢铁制塞堵', 3, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010030', 'WL-ZL50', '4736798', '3J1907', '橡胶密封圈', 3, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010031', 'WL-ZL50', '4736798', '4J0522', '橡胶密封圈', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010032', 'WL-ZL50', '4736798', '4J0523', '橡胶密封圈', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010033', 'WL-ZL50', '4736798', '3209706', '堵头', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010034', 'WL-ZL50', '4736798', '9S8006', '螺堵组件', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010035', 'WL-ZL50', '4736798', '2M9780', '橡胶密封圈', 1, 'D', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010036', 'WL-ZL50', '4736798', '9S4183', '钢铁制塞堵', 1, 'E', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010037', 'WL-ZL50', '4736798', '3D2824', '橡胶密封圈', 1, 'E', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010038', 'WL-ZL50', '4736798', '7X7960', '钢铁制螺栓', 5, 'E', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010039', 'WL-ZL50', '4736798', '8T4223', '钢铁制垫圈', 10, 'E', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010040', 'WL-ZL50', '4736798', '8T4244', '钢铁制螺母', 6, 'E', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010041', 'WL-ZL50', '4736798', '3G2683', '钢铁制塞堵', 1, 'F', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010042', 'WL-ZL50', '4736798', '5337922/HO', '圆形铁板', 4, 'G', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010043', 'WL-ZL50', '4736798', '3309801', '溢流阀', 1, 'H', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010044', 'WL-ZL50', '4736798', '4710143', 'VALVEGP-RELIEF', 1, 'H', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010045', 'WL-ZL50', '4736798', '1397559', '安全阀', 1, 'I', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010046', 'WL-ZL50', '4736798', '2042124', '溢流阀', 1, 'I', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010047', 'WL-ZL50', '4736798', '4710158', '铭牌', 1, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010048', 'WL-ZL50', '4736798', '8J5893', '钢铁安装盖', 3, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010049', 'WL-ZL50', '4736798', '3J5553', '纸制衬垫', 3, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010050', 'WL-ZL50', '4736798', '8T4179', '钢铁制螺栓', 6, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010051', 'WL-ZL50', '4736798', '4D2886', '钢铁制管夹', 2, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010052', 'WL-ZL50', '4736798', '8J4398', '钢铁安装盖', 2, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010053', 'WL-ZL50', '4736798', '3J5554', '纸制衬垫', 2, 'J', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010054', 'WL-ZL50', '4736798', '8T4137', '钢铁制螺栓', 4, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010055', 'WL-ZL50', '4736798', '1488336', '钢铁制螺纹接头组件', 4, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010056', 'WL-ZL50', '4736798', '1488434', '钢铁制三通管组件', 2, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010057', 'WL-ZL50', '4736798', '1488424', '钢铁制三通管组件', 1, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010058', 'WL-ZL50', '4736798', '6V9829', '钢铁制塞堵', 2, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010059', 'WL-ZL50', '4736798', '6V3965', '取样阀', 1, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010060', 'WL-ZL50', '4736798', '2147568', '橡胶密封圈', 1, 'K', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010061', 'WL-ZL50', '4736798', '6V0852', '橡胶防尘盖', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010062', 'WL-ZL50', '4736798', '1899263', '管子', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010063', 'WL-ZL50', '4736798', '2172573', '管子', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010064', 'WL-ZL50', '4736798', '1488368', '钢铁制螺纹弯管组件', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010065', 'WL-ZL50', '4736798', '1488369', '钢铁制螺纹弯管组件', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010066', 'WL-ZL50', '4736798', '1505005/S', '胶管组件', 1, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741913930743010067', 'WL-ZL50', '4736798', '2660531', '塑料塞子', 2, 'L', 3, '2025-03-14 08:58:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010000', 'Check Valve', '5772154', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010001', 'Check Valve', '5772154', '8J6815', 'PLUG-NPTF', 2, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010002', 'Check Valve', '5772154', '5181315/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010003', 'Check Valve', '5772154', '0951601/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010004', 'Check Valve', '5772154', '2324113/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010005', 'Check Valve', '5772154', '5181332/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010006', 'Check Valve', '5772154', '5181333/HE', 'COVER-CHECK V', 1, 'A', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010007', 'Check Valve', '5772154', '8T4223', 'WASHER-HARD', 4, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010008', 'Check Valve', '5772154', '8T4956', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010009', 'Check Valve', '5772154', '5181331/HE', 'SPRING-CHECK V', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010010', 'Check Valve', '5772154', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010011', 'Check Valve', '5772154', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010012', 'Check Valve', '5772154', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010013', 'Check Valve', '5772154', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010014', 'Check Valve', '5772154', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010015', 'Check Valve', '5772154', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010016', 'Check Valve', '5772154', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010017', 'Check Valve', '5772154', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010018', 'Check Valve', '5772154', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010019', 'Check Valve', '5772154', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010020', 'Check Valve', '5772154', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010021', 'Check Valve', '5772154', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010022', 'Check Valve', '5772154', '5772155/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010023', 'Check Valve', '5772154', '5181324/HE', 'PLUG', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010024', 'Check Valve', '5772154', '6K6307', 'SEAL-O-RING', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010025', 'Check Valve', '5772154', '5181325/HE', 'RETAINER-SPRING', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010026', 'Check Valve', '5772154', '5496515/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010027', 'Check Valve', '5772154', '5181327/HE-14', '5181327/HE&5313314/HE', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010028', 'Check Valve', '5772154', '6V8218', 'SEAL-ORING', 1, 'D', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010029', 'Check Valve', '5772154', '8T4121', 'WASHER-HARD', 2, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010030', 'Check Valve', '5772154', '8T4137', 'BOLT-HEX HEAD', 2, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010031', 'Check Valve', '5772154', '5181328/HE', 'COVER-PISTON', 1, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010032', 'Check Valve', '5772154', '5674312/HE-54', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010033', 'Check Valve', '5772154', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010034', 'Check Valve', '5772154', '3603692', 'PLUG-HD STOR', 2, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010035', 'Check Valve', '5772154', '5536203/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914213683010036', 'Check Valve', '5772154', '5536204/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-14 09:03:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352817010000', 'selector', '6E3078', '3J1907', 'O型圈', 2, 'A', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352817010001', 'selector', '6E3078', '9S4191', '螺堵', 2, 'A', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352818010000', 'selector', '6E3078', '2521631', '塑料螺堵', 2, 'A', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352818010001', 'selector', '6E3078', '1083866', '堵头', 2, 'B', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352818010002', 'selector', '6E3078', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352818010003', 'selector', '6E3078', '1181471', '铭牌', 1, 'B', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914352818010004', 'selector', '6E3078', '7S8553', '弹簧', 1, 'B', 10, '2025-03-14 09:05:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010000', 'MTV', '2130087', '5H8985', 'PIN-SPRING', 1, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010001', 'MTV', '2130087', '8E8439', 'DOWEL', 1, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010002', 'MTV', '2130087', '7T5101', 'ORIFICE', 1, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010003', 'MTV', '2130087', '9S8001', 'PLUG-LD STOR', 6, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010004', 'MTV', '2130087', '2385078', 'SEAL-O-RING-STOR', 6, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010005', 'MTV', '2130087', '8P7386', 'SPOOL', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010006', 'MTV', '2130087', '4B9880', 'BALL', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010007', 'MTV', '2130087', '4M2381', 'SPRING', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010008', 'MTV', '2130087', '1S1636', 'RETAINER', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010009', 'MTV', '2130087', '1S1638', 'RING-RETAINING', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010010', 'MTV', '2130087', '5M2504', 'SLUG', 2, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010011', 'MTV', '2130087', '9S8008', 'PLUG-LD STOR', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010012', 'MTV', '2130087', '2385082', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010013', 'MTV', '2130087', '9W7410', 'SPRING', 1, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010014', 'MTV', '2130087', '6V3683', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010015', 'MTV', '2130087', '5J1036', 'SHIM', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010016', 'MTV', '2130087', '5J2721', 'SHIM', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010017', 'MTV', '2130087', '6J3993', 'SHIM', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010018', 'MTV', '2130087', '4M1751', 'SPACER', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010019', 'MTV', '2130087', '1305300', 'CLIP', 1, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010020', 'MTV', '2130087', '0S1618', 'BOLT', 2, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010021', 'MTV', '2130087', '9M1974', 'WASHER-HARD', 1, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010022', 'MTV', '2130087', '9S8004', 'PLUG-LD STOR', 3, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010023', 'MTV', '2130087', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010024', 'MTV', '2130087', '6V3965', 'ADAPTER-STR', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010025', 'MTV', '2130087', '2147568', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010026', 'MTV', '2130087', '9P0683', 'SPRING', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010027', 'MTV', '2130087', '1607578', 'BODY-LOAD PISTON', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010028', 'MTV', '2130087', '9S8001', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010029', 'MTV', '2130087', '2385078', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010030', 'MTV', '2130087', '8L2777', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010031', 'MTV', '2130087', '3706345', 'ORIFICE AS.', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010032', 'MTV', '2130087', '9D7884', 'SPRING', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010033', 'MTV', '2130087', '6T0094', 'PISTON-SELECTOR', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010034', 'MTV', '2130087', '6T0093', 'PISTON-LOAD', 1, 'C', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010035', 'MTV', '2130087', '5J6153', 'SHIM', 2, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010036', 'MTV', '2130087', '8H9190', 'SHIM-CARRIER', 2, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010037', 'MTV', '2130087', '8M2932', 'SHIM', 2, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010038', 'MTV', '2130087', '7M7316', 'SPRING', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010039', 'MTV', '2130087', '8E4592', 'STOP', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010040', 'MTV', '2130087', '5L9018', 'BOLT-SOCKET HEAD', 2, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010041', 'MTV', '2130087', '5P0537', 'WASHER-HARD', 2, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010042', 'MTV', '2130087', '9W6964', 'VALVE AS-EXHAUST', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010043', 'MTV', '2130087', '9S8003', 'PLUG-LD STOR', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010044', 'MTV', '2130087', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010045', 'MTV', '2130087', '3023813', 'VALVE GP-SOL', 1, 'D', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010046', 'MTV', '2130087', '9S8008', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010047', 'MTV', '2130087', '2385082', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010048', 'MTV', '2130087', '6V6353', 'SEAL-O-RING', 1, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010049', 'MTV', '2130087', '0S1618', 'BOLT', 4, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010050', 'MTV', '2130087', '9M1974', 'WASHER-HARD', 4, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010051', 'MTV', '2130087', '2153379', 'PLATE-IDENT', 1, 'A', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010052', 'MTV', '2130087', '5M2894', 'WASHER-HARD', 3, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010053', 'MTV', '2130087', '5F4899', 'BOLT', 3, 'E', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010054', 'MTV', '2130087', '8E8867', 'COVER', 1, 'F', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010055', 'MTV', '2130087', '8E8868', 'GASKET', 1, 'F', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010056', 'MTV', '2130087', '1552269', 'RECEPTACLE AS', 1, 'F', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010057', 'MTV', '2130087', '8T8737', 'PLUG-SEAL', 2, 'F', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010058', 'MTV', '2130087', '6V0852', 'CAP-DUST', 1, 'F', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914472830010059', 'MTV', '2130087', '6I9512', 'COVER', 1, 'G', 1, '2025-03-14 09:07:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010000', 'MG Segment', '6E3031', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010001', 'MG Segment', '6E3031', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010002', 'MG Segment', '6E3031', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010003', 'MG Segment', '6E3031', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010004', 'MG Segment', '6E3031', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010005', 'MG Segment', '6E3031', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010006', 'MG Segment', '6E3031', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010007', 'MG Segment', '6E3031', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010008', 'MG Segment', '6E3031', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010009', 'MG Segment', '6E3031', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010010', 'MG Segment', '6E3031', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010011', 'MG Segment', '6E3031', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010012', 'MG Segment', '6E3031', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010013', 'MG Segment', '6E3031', '1063660', '活塞', 2, 'B', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010014', 'MG Segment', '6E3031', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010015', 'MG Segment', '6E3031', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010016', 'MG Segment', '6E3031', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010017', 'MG Segment', '6E3031', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010018', 'MG Segment', '6E3031', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010019', 'MG Segment', '6E3031', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491561010020', 'MG Segment', '6E3031', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010000', 'MG Segment', '6E3031', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010001', 'MG Segment', '6E3031', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010002', 'MG Segment', '6E3031', '2213676', '阀芯', 1, 'D', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010003', 'MG Segment', '6E3031', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010004', 'MG Segment', '6E3031', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010005', 'MG Segment', '6E3031', '1118234', '弹簧', 1, 'F', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010006', 'MG Segment', '6E3031', '1011980', '盖板', 1, 'F', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010007', 'MG Segment', '6E3031', '2227774', '溢流阀', 1, 'F', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010008', 'MG Segment', '6E3031', '8T6869', '螺栓', 2, 'G', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010009', 'MG Segment', '6E3031', '8T4224', '垫片', 2, 'G', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010010', 'MG Segment', '6E3031', '1070516', '铭牌', 1, 'G', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914491562010011', 'MG Segment', '6E3031', '1084916', '制动组件', 1, 'G', 8, '2025-03-14 09:08:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010000', 'MG Segment', '1070545', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010001', 'MG Segment', '1070545', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010002', 'MG Segment', '1070545', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010003', 'MG Segment', '1070545', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010004', 'MG Segment', '1070545', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010005', 'MG Segment', '1070545', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010006', 'MG Segment', '1070545', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010007', 'MG Segment', '1070545', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010008', 'MG Segment', '1070545', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010009', 'MG Segment', '1070545', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010010', 'MG Segment', '1070545', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010011', 'MG Segment', '1070545', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010012', 'MG Segment', '1070545', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010013', 'MG Segment', '1070545', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010014', 'MG Segment', '1070545', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010015', 'MG Segment', '1070545', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010016', 'MG Segment', '1070545', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010017', 'MG Segment', '1070545', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010018', 'MG Segment', '1070545', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010019', 'MG Segment', '1070545', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010020', 'MG Segment', '1070545', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010021', 'MG Segment', '1070545', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010022', 'MG Segment', '1070545', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010023', 'MG Segment', '1070545', '1011148', '阀芯', 1, 'D', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010024', 'MG Segment', '1070545', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010025', 'MG Segment', '1070545', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010026', 'MG Segment', '1070545', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010027', 'MG Segment', '1070545', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010028', 'MG Segment', '1070545', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010029', 'MG Segment', '1070545', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010030', 'MG Segment', '1070545', '1398472', '溢流阀', 1, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914513401010031', 'MG Segment', '1070545', '1070522', '铭牌', 1, 'F', 8, '2025-03-14 09:08:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010000', 'QD#1', '3367287', '9S8006', '塞子', 1, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010001', 'QD#1', '3367287', '2M9780', '密封圈', 1, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010002', 'QD#1', '3367287', '9S8003', '塞子', 2, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010003', 'QD#1', '3367287', '1J9671', '密封圈', 2, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010004', 'QD#1', '3367287', '5H4019', '盖子', 4, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010005', 'QD#1', '3367287', '4J0520', '密封圈', 4, 'A', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010006', 'QD#1', '3367287', '6204980', '定位环', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010007', 'QD#1', '3367287', '9T9836', '节流套', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010008', 'QD#1', '3367287', '1006211', '活塞', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010009', 'QD#1', '3367287', '3L3813', '销', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010010', 'QD#1', '3367287', '1081847', '弹簧', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010011', 'QD#1', '3367287', '6E4907', '挡圈', 1, 'B', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010012', 'QD#1', '3367287', '2343043', '盖', 1, 'C', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010013', 'QD#1', '3367287', '6V8200', '螺钉', 8, 'C', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010014', 'QD#1', '3367287', '2343451', '盖', 1, 'D', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010015', 'QD#1', '3367287', '5334159', '螺栓', 8, 'D', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010016', 'QD#1', '3367287', '5334159', '螺栓', 8, 'E', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010017', 'QD#1', '3367287', '8C3206', '法兰', 8, 'E', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010018', 'QD#1', '3367287', '3398884', '铭牌', 1, 'E', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010019', 'QD#1', '3367287', '8C3206', '法兰', 4, 'F', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010020', 'QD#1', '3367287', '5H4019', '盖子', 2, 'F', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010021', 'QD#1', '3367287', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914561168010022', 'QD#1', '3367287', '5334159', '螺栓', 8, 'F', 4, '2025-03-14 09:09:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010000', 'WL-ZL50', '2904512', '3G2683', '螺堵', 3, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010001', 'WL-ZL50', '2904512', '2S4078', 'O型圈', 3, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010002', 'WL-ZL50', '2904512', '1U1577', '螺堵', 1, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010003', 'WL-ZL50', '2904512', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010004', 'WL-ZL50', '2904512', '9S8005', '堵头', 1, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010005', 'WL-ZL50', '2904512', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010006', 'WL-ZL50', '2904512', '1U0322', '轴承', 3, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010007', 'WL-ZL50', '2904512', '7S8491', '弹簧', 3, 'A', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010008', 'WL-ZL50', '2904512', '7J7423', '阀', 3, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010009', 'WL-ZL50', '2904512', '1J8960', '弹簧', 1, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010010', 'WL-ZL50', '2904512', '1U1578', '阀', 1, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010011', 'WL-ZL50', '2904512', '3G4117', '盖子', 1, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010012', 'WL-ZL50', '2904512', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010013', 'WL-ZL50', '2904512', '8T4192', '螺栓', 2, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010014', 'WL-ZL50', '2904512', '6E2377', '阀', 2, 'B', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010015', 'WL-ZL50', '2904512', '6E6003', '阀', 1, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010016', 'WL-ZL50', '2904512', '4T9312', '盖子', 2, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010017', 'WL-ZL50', '2904512', '1H9696', 'O型圈', 2, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010018', 'WL-ZL50', '2904512', '8T4182', '螺栓', 4, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010019', 'WL-ZL50', '2904512', '5P1075', '垫圈', 4, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010020', 'WL-ZL50', '2904512', '3G8991', '弹簧', 2, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010021', 'WL-ZL50', '2904512', '3385495', '弹簧', 2, 'C', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010022', 'WL-ZL50', '2904512', '3385494', '固定器', 4, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010023', 'WL-ZL50', '2904512', '8T4198', '螺栓', 4, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010024', 'WL-ZL50', '2904512', '5P1075', '垫片', 4, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010025', 'WL-ZL50', '2904512', '0994691', '螺栓', 2, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010026', 'WL-ZL50', '2904512', '8T4223', '垫圈', 2, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010027', 'WL-ZL50', '2904512', '0041963', 'O型圈', 2, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010028', 'WL-ZL50', '2904512', '2906044', '铭牌', 1, 'D', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010029', 'WL-ZL50', '2904512', '4T9311', '盖子', 2, 'E', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010030', 'WL-ZL50', '2904512', '4D2886', '吊环', 2, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010031', 'WL-ZL50', '2904512', '3J1907', 'O型圈', 5, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010032', 'WL-ZL50', '2904512', '9S4191', '堵头', 5, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010033', 'WL-ZL50', '2904512', '3J5553', '纸垫片', 2, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010034', 'WL-ZL50', '2904512', '3J5554', '纸垫片', 4, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010035', 'WL-ZL50', '2904512', '8J4398', '盖板', 4, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010036', 'WL-ZL50', '2904512', '8J5893', '盖板', 2, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914618807010037', 'WL-ZL50', '2904512', '8T4179', '螺栓', 12, 'F', 1, '2025-03-14 09:10:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010000', 'QD#2', '4T4204', '4J0522', '密封o型圈', 3, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010001', 'QD#2', '4T4204', '4J5573', '密封o型圈', 1, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010002', 'QD#2', '4T4204', '3G5209', '节流套', 1, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010003', 'QD#2', '4T4204', '7M1297', '弹簧', 1, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010004', 'QD#2', '4T4204', '8M2530', '螺栓', 2, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010005', 'QD#2', '4T4204', '1D4566', '螺栓', 5, 'A', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010006', 'QD#2', '4T4204', '4J0526', '密封o型圈', 1, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010007', 'QD#2', '4T4204', '4T4207', '节流螺钉', 1, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010008', 'QD#2', '4T4204', '6V1849', '盖', 1, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010009', 'QD#2', '4T4204', '4T4209', '标牌', 1, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010010', 'QD#2', '4T4204', '4J0525', 'o型圈', 1, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010011', 'QD#2', '4T4204', '8T8919', '螺栓', 2, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010012', 'QD#2', '4T4204', '5P1076', '垫片', 2, 'B', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010013', 'QD#2', '4T4204', '2D0094', '衬垫', 2, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010014', 'QD#2', '4T4204', '7J3554', '盖子', 2, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010015', 'QD#2', '4T4204', '3J5554', '衬垫', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010016', 'QD#2', '4T4204', '8J4398', '盖子', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010017', 'QD#2', '4T4204', '5P8167', '螺栓', 4, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010018', 'QD#2', '4T4204', '7X0272', '螺栓', 2, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010019', 'QD#2', '4T4204', '6J5899', '盖子', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010020', 'QD#2', '4T4204', '7X0352', '螺栓', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010021', 'QD#2', '4T4204', '7X0358', '螺栓', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010022', 'QD#2', '4T4204', '7X0448', '螺母', 2, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914639374010023', 'QD#2', '4T4204', '7S0530', '吊环', 1, 'C', 4, '2025-03-14 09:10:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010000', 'B valve', '1260747', '1248335', 'VALVEAS-CONTROL', 1, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010001', 'B valve', '1260747', '6V8218', 'SEAL', 1, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010002', 'B valve', '1260747', '3603697', 'PLUG-LD STOR', 4, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010003', 'B valve', '1260747', '7M8485', 'SEAL-O-RING-STOR', 4, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010004', 'B valve', '1260747', '3603692', 'PLUG-LD STOR', 1, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741914918926010005', 'B valve', '1260747', '3J1907', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 09:15:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010000', 'MG Stack', '1303118', '9S8005', '螺堵', 2, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010001', 'MG Stack', '1303118', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010002', 'MG Stack', '1303118', '9S4180', '螺堵', 1, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010003', 'MG Stack', '1303118', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010004', 'MG Stack', '1303118', '2521631', '塑料堵头', 1, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010005', 'MG Stack', '1303118', '2191893', '塑料堵头', 2, 'A', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010006', 'MG Stack', '1303118', '8T4189', '螺栓', 1, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010007', 'MG Stack', '1303118', '8T4224', '垫圈', 1, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010008', 'MG Stack', '1303118', '7S0530', '夹子', 1, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010009', 'MG Stack', '1303118', '1303095', '铭牌', 1, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010010', 'MG Stack', '1303118', '8T4172', '螺栓', 3, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010011', 'MG Stack', '1303118', '8T4896', '垫圈', 1, 'B', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010012', 'MG Stack', '1303118', '2191891', '塑料堵头', 8, 'C', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010013', 'MG Stack', '1303118', '7X2546', '螺栓', 2, 'C', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010014', 'MG Stack', '1303118', '1010509', '密封板', 6, 'C', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916622656010015', 'MG Stack', '1303118', '8T6408', '钢铁制螺栓', 1, 'C', 2, '2025-03-14 09:43:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010000', 'MG Segment', '6E3034', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010001', 'MG Segment', '6E3034', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010002', 'MG Segment', '6E3034', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010003', 'MG Segment', '6E3034', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010004', 'MG Segment', '6E3034', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010005', 'MG Segment', '6E3034', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010006', 'MG Segment', '6E3034', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010007', 'MG Segment', '6E3034', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010008', 'MG Segment', '6E3034', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010009', 'MG Segment', '6E3034', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010010', 'MG Segment', '6E3034', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010011', 'MG Segment', '6E3034', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010012', 'MG Segment', '6E3034', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010013', 'MG Segment', '6E3034', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010014', 'MG Segment', '6E3034', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010015', 'MG Segment', '6E3034', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010016', 'MG Segment', '6E3034', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010017', 'MG Segment', '6E3034', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010018', 'MG Segment', '6E3034', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010019', 'MG Segment', '6E3034', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010020', 'MG Segment', '6E3034', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010021', 'MG Segment', '6E3034', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010022', 'MG Segment', '6E3034', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010023', 'MG Segment', '6E3034', '1011155', '阀芯', 1, 'D', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010024', 'MG Segment', '6E3034', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010025', 'MG Segment', '6E3034', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010026', 'MG Segment', '6E3034', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010027', 'MG Segment', '6E3034', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010028', 'MG Segment', '6E3034', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010029', 'MG Segment', '6E3034', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010030', 'MG Segment', '6E3034', '1398472', '溢流阀', 1, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916645671010031', 'MG Segment', '6E3034', '1070517', '铭牌', 1, 'F', 8, '2025-03-14 09:44:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010000', 'MG Segment', '6E3036', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010001', 'MG Segment', '6E3036', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010002', 'MG Segment', '6E3036', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010003', 'MG Segment', '6E3036', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010004', 'MG Segment', '6E3036', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010005', 'MG Segment', '6E3036', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010006', 'MG Segment', '6E3036', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010007', 'MG Segment', '6E3036', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010008', 'MG Segment', '6E3036', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734577010009', 'MG Segment', '6E3036', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010000', 'MG Segment', '6E3036', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010001', 'MG Segment', '6E3036', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010002', 'MG Segment', '6E3036', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010003', 'MG Segment', '6E3036', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010004', 'MG Segment', '6E3036', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010005', 'MG Segment', '6E3036', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010006', 'MG Segment', '6E3036', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010007', 'MG Segment', '6E3036', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010008', 'MG Segment', '6E3036', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010009', 'MG Segment', '6E3036', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010010', 'MG Segment', '6E3036', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010011', 'MG Segment', '6E3036', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010012', 'MG Segment', '6E3036', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010013', 'MG Segment', '6E3036', '1024577', '阀芯', 1, 'D', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010014', 'MG Segment', '6E3036', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010015', 'MG Segment', '6E3036', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010016', 'MG Segment', '6E3036', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010017', 'MG Segment', '6E3036', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010018', 'MG Segment', '6E3036', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010019', 'MG Segment', '6E3036', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010020', 'MG Segment', '6E3036', '1398472', '溢流阀', 1, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916734578010021', 'MG Segment', '6E3036', '1070519', '铭牌', 1, 'F', 8, '2025-03-14 09:45:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010000', 'MG Segment', '1303110', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010001', 'MG Segment', '1303110', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010002', 'MG Segment', '1303110', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010003', 'MG Segment', '1303110', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010004', 'MG Segment', '1303110', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010005', 'MG Segment', '1303110', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010006', 'MG Segment', '1303110', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010007', 'MG Segment', '1303110', '4J7533', '密封O型圈', 2, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010008', 'MG Segment', '1303110', '9S4180', '堵头', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010009', 'MG Segment', '1303110', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010010', 'MG Segment', '1303110', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010011', 'MG Segment', '1303110', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010012', 'MG Segment', '1303110', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010013', 'MG Segment', '1303110', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010014', 'MG Segment', '1303110', '1063660', '活塞', 2, 'B', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010015', 'MG Segment', '1303110', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010016', 'MG Segment', '1303110', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010017', 'MG Segment', '1303110', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010018', 'MG Segment', '1303110', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010019', 'MG Segment', '1303110', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010020', 'MG Segment', '1303110', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010021', 'MG Segment', '1303110', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010022', 'MG Segment', '1303110', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010023', 'MG Segment', '1303110', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010024', 'MG Segment', '1303110', '2213676', '阀芯', 1, 'D', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010025', 'MG Segment', '1303110', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010026', 'MG Segment', '1303110', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010027', 'MG Segment', '1303110', '1118234', '弹簧', 1, 'F', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010028', 'MG Segment', '1303110', '1303088', '铭牌', 1, 'F', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010029', 'MG Segment', '1303110', '1398477', '溢流阀', 1, 'F', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916763398010030', 'MG Segment', '1303110', '1303535', '制动器', 1, 'G', 8, '2025-03-14 09:46:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010000', 'MG Segment', '1199550', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010001', 'MG Segment', '1199550', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010002', 'MG Segment', '1199550', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010003', 'MG Segment', '1199550', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010004', 'MG Segment', '1199550', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010005', 'MG Segment', '1199550', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010006', 'MG Segment', '1199550', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010007', 'MG Segment', '1199550', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010008', 'MG Segment', '1199550', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010009', 'MG Segment', '1199550', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010010', 'MG Segment', '1199550', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010011', 'MG Segment', '1199550', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010012', 'MG Segment', '1199550', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010013', 'MG Segment', '1199550', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010014', 'MG Segment', '1199550', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010015', 'MG Segment', '1199550', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010016', 'MG Segment', '1199550', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010017', 'MG Segment', '1199550', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010018', 'MG Segment', '1199550', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010019', 'MG Segment', '1199550', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010020', 'MG Segment', '1199550', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010021', 'MG Segment', '1199550', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010022', 'MG Segment', '1199550', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010023', 'MG Segment', '1199550', '1011148', '阀芯', 1, 'D', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010024', 'MG Segment', '1199550', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010025', 'MG Segment', '1199550', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010026', 'MG Segment', '1199550', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010027', 'MG Segment', '1199550', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010028', 'MG Segment', '1199550', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010029', 'MG Segment', '1199550', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010030', 'MG Segment', '1199550', '1398476', '溢流阀', 1, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916777116010031', 'MG Segment', '1199550', '1199542', '铭牌', 1, 'F', 8, '2025-03-14 09:46:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010000', 'MG Stack', '5757795', '9S8005', '螺堵', 2, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010001', 'MG Stack', '5757795', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010002', 'MG Stack', '5757795', '9S4180', '螺堵', 1, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010003', 'MG Stack', '5757795', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010004', 'MG Stack', '5757795', '7S0530', '夹子', 1, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010005', 'MG Stack', '5757795', '8T4189', '螺栓', 1, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010006', 'MG Stack', '5757795', '8T4224', '垫圈', 1, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010007', 'MG Stack', '5757795', '8T4172', '螺栓', 3, 'A', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010008', 'MG Stack', '5757795', '1010509', '密封板', 6, 'B', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010009', 'MG Stack', '5757795', '5757825', '铭牌', 1, 'B', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010010', 'MG Stack', '5757795', '8T4896', '垫圈', 1, 'B', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010011', 'MG Stack', '5757795', '7X2546', '螺栓', 2, 'B', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010012', 'MG Stack', '5757795', '8T6408', '螺栓', 1, 'B', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010013', 'MG Stack', '5757795', '2191891', '塑料螺堵', 8, 'C', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010014', 'MG Stack', '5757795', '2521631', '塑料螺堵', 1, 'C', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916866204010015', 'MG Stack', '5757795', '2191893', '塑料螺堵', 2, 'D', 2, '2025-03-14 09:47:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888810010000', 'MG Segment', '5805847', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010000', 'MG Segment', '5805847', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010001', 'MG Segment', '5805847', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010002', 'MG Segment', '5805847', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010003', 'MG Segment', '5805847', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010004', 'MG Segment', '5805847', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010005', 'MG Segment', '5805847', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010006', 'MG Segment', '5805847', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010007', 'MG Segment', '5805847', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010008', 'MG Segment', '5805847', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010009', 'MG Segment', '5805847', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010010', 'MG Segment', '5805847', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010011', 'MG Segment', '5805847', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010012', 'MG Segment', '5805847', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010013', 'MG Segment', '5805847', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010014', 'MG Segment', '5805847', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010015', 'MG Segment', '5805847', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010016', 'MG Segment', '5805847', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010017', 'MG Segment', '5805847', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010018', 'MG Segment', '5805847', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010019', 'MG Segment', '5805847', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010020', 'MG Segment', '5805847', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010021', 'MG Segment', '5805847', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010022', 'MG Segment', '5805847', '1243330', '阀芯', 1, 'D', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010023', 'MG Segment', '5805847', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010024', 'MG Segment', '5805847', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010025', 'MG Segment', '5805847', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010026', 'MG Segment', '5805847', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010027', 'MG Segment', '5805847', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010028', 'MG Segment', '5805847', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010029', 'MG Segment', '5805847', '1398476', '溢流阀', 1, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916888811010030', 'MG Segment', '5805847', '5805850', '铭牌', 1, 'F', 8, '2025-03-14 09:48:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010000', 'MG Stack', '1303124', '9S8005', '螺堵', 4, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010001', 'MG Stack', '1303124', '3K0360', 'O型圈', 4, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010002', 'MG Stack', '1303124', '2191891', '堵头组件', 8, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010003', 'MG Stack', '1303124', '9S4180', '螺堵', 1, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010004', 'MG Stack', '1303124', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010005', 'MG Stack', '1303124', '2521631', '堵头组件', 1, 'A', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010006', 'MG Stack', '1303124', '2191893', '堵头组件', 2, 'A1', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010007', 'MG Stack', '1303124', '8T4189', '螺栓', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010008', 'MG Stack', '1303124', '8T4224', '垫圈', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010009', 'MG Stack', '1303124', '7S0530', '夹子', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010010', 'MG Stack', '1303124', '1303101', '铭牌', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010011', 'MG Stack', '1303124', '8T6408', '螺栓', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010012', 'MG Stack', '1303124', '7X2543', '螺栓', 3, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010013', 'MG Stack', '1303124', '8T4896', '垫圈', 1, 'B', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010014', 'MG Stack', '1303124', '7X2546', '螺栓', 2, 'C', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741916973000010015', 'MG Stack', '1303124', '5615574', '密封板', 7, 'C', 2, '2025-03-14 09:49:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010000', 'MG Segment', '1303111', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010001', 'MG Segment', '1303111', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010002', 'MG Segment', '1303111', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010003', 'MG Segment', '1303111', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010004', 'MG Segment', '1303111', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010005', 'MG Segment', '1303111', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010006', 'MG Segment', '1303111', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010007', 'MG Segment', '1303111', '4J7533', '密封O型圈', 2, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010008', 'MG Segment', '1303111', '9S4180', '堵头', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010009', 'MG Segment', '1303111', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010010', 'MG Segment', '1303111', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010011', 'MG Segment', '1303111', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010012', 'MG Segment', '1303111', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010013', 'MG Segment', '1303111', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010014', 'MG Segment', '1303111', '1063660', '活塞', 2, 'B', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010015', 'MG Segment', '1303111', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010016', 'MG Segment', '1303111', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010017', 'MG Segment', '1303111', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010018', 'MG Segment', '1303111', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010019', 'MG Segment', '1303111', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010020', 'MG Segment', '1303111', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010021', 'MG Segment', '1303111', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010022', 'MG Segment', '1303111', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010023', 'MG Segment', '1303111', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010024', 'MG Segment', '1303111', '2213678', '阀芯', 1, 'D', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010025', 'MG Segment', '1303111', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010026', 'MG Segment', '1303111', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010027', 'MG Segment', '1303111', '1118234', '弹簧', 1, 'F', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010028', 'MG Segment', '1303111', '1303089', '铭牌', 1, 'F', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010029', 'MG Segment', '1303111', '1398477', '溢流阀', 1, 'F', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917041034010030', 'MG Segment', '1303111', '1303535', '制动器', 1, 'G', 8, '2025-03-14 09:50:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010000', 'MG Stack', '5829209', '2191891', '塑料塞堵', 8, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010001', 'MG Stack', '5829209', '2191893', '塑料塞堵', 2, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010002', 'MG Stack', '5829209', '2521631', 'PLUG', 1, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010003', 'MG Stack', '5829209', '9S4180', 'PLUG-LD STOR', 1, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010004', 'MG Stack', '5829209', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010005', 'MG Stack', '5829209', '2147568', 'SEAL-O-RING-STOR', 2, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010006', 'MG Stack', '5829209', '9S4191', 'PLUG-EXT HEX', 2, 'A', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010007', 'MG Stack', '5829209', '8T6408', 'BOLT-HEX HEAD', 1, 'B', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010008', 'MG Stack', '5829209', '7X2546', 'BOLT-HEX HEAD', 2, 'B', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010009', 'MG Stack', '5829209', '8T4896', 'WASHER-HARD', 1, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010010', 'MG Stack', '5829209', '5850308', 'PLATE-IDENT', 1, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010011', 'MG Stack', '5829209', '7S0530', 'CLIP', 1, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010012', 'MG Stack', '5829209', '8T4189', 'BOLT-HEX HEAD', 1, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010013', 'MG Stack', '5829209', '8T4224', 'WASHER-HARD', 1, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010014', 'MG Stack', '5829209', '8T4121', 'WASHER-HARD', 3, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010015', 'MG Stack', '5829209', '8T4186', 'BOLT-HEX HEAD', 3, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917108880010016', 'MG Stack', '5829209', '2660531', 'CAP-CONNECTOR', 2, 'C', 2, '2025-03-14 09:51:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010000', 'Mg Segment', '5829211', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010001', 'Mg Segment', '5829211', '9S8005', 'PLUG-LD STOR', 1, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010002', 'Mg Segment', '5829211', '9S4180', 'PLUG-LD STOR', 1, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010003', 'Mg Segment', '5829211', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010004', 'Mg Segment', '5829211', '9J0404', 'PLUG', 2, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010005', 'Mg Segment', '5829211', '3613549', 'MDSE AR', 2, 'A', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123060010006', 'Mg Segment', '5829211', '3405470', 'LEVER AS. (RH)', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010000', 'Mg Segment', '5829211', '8M4437', 'SEAL-O RING', 2, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010001', 'Mg Segment', '5829211', '3675511', 'PLUG', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010002', 'Mg Segment', '5829211', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010003', 'Mg Segment', '5829211', '6E3019', 'VALVE', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010004', 'Mg Segment', '5829211', '6E5153', 'SPRING', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010005', 'Mg Segment', '5829211', '3307751', 'PLUG-PIPE', 1, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010006', 'Mg Segment', '5829211', '1063660', 'PISTON', 2, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010007', 'Mg Segment', '5829211', '9J0403', 'SPRING', 2, 'B', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010008', 'Mg Segment', '5829211', '5B9318', 'BALL', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010009', 'Mg Segment', '5829211', '6E3007', 'SPRING', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010010', 'Mg Segment', '5829211', '1011973', 'RETAINER', 4, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010011', 'Mg Segment', '5829211', '8T4189', 'BOLT-HEX HEAD', 2, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010012', 'Mg Segment', '5829211', '8T4224', 'WASHER-HARD', 2, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010013', 'Mg Segment', '5829211', '1027412', 'SPRING', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010014', 'Mg Segment', '5829211', '2K8199', 'SEAL-O RING', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010015', 'Mg Segment', '5829211', '4D9986', 'SEAL-O-RING', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010016', 'Mg Segment', '5829211', '1011971', 'LEVER', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010017', 'Mg Segment', '5829211', '1012480', 'COVER', 1, 'C', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010018', 'Mg Segment', '5829211', '2213676', 'STEM', 1, 'D', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010019', 'Mg Segment', '5829211', '1011984', 'BODY', 1, 'E', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010020', 'Mg Segment', '5829211', '8T4138', 'BOLT-HEX HEAD', 2, 'F', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010021', 'Mg Segment', '5829211', '1398477', 'VALVE GP-D RLF-', 1, 'F', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010022', 'Mg Segment', '5829211', '1118234', 'SPRING', 1, 'F', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010023', 'Mg Segment', '5829211', '1303535', 'DETENT GP-CONT', 1, 'F', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917123061010024', 'Mg Segment', '5829211', '5850312', 'PLATE-IDENT', 1, 'F', 8, '2025-03-14 09:52:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010000', 'MG Stack', '5793325', '9S4180', 'PLUG-LD STOR', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010001', 'MG Stack', '5793325', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010002', 'MG Stack', '5793325', '3K0360', 'SEAL-O-RING-STOR', 2, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010003', 'MG Stack', '5793325', '9S8005', 'PLUG-INTL HEX', 2, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010004', 'MG Stack', '5793325', '7S0530', 'CLIP', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010005', 'MG Stack', '5793325', '8T4189', 'BOLT-HEX HEAD', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010006', 'MG Stack', '5793325', '8T4224', 'WASHER-HARD', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010007', 'MG Stack', '5793325', '8T4896', 'WASHER-HARD', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010008', 'MG Stack', '5793325', '5804141', 'PLATE-IDENT', 1, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010009', 'MG Stack', '5793325', '8T4172', 'BOLT-HEX HEAD', 3, 'A', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010010', 'MG Stack', '5793325', '5615574', 'SEAL-INTEGRAL', 6, 'B', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010011', 'MG Stack', '5793325', '7X2546', 'BOLT-HEX HEAD', 2, 'B', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010012', 'MG Stack', '5793325', '8T6408', 'BOLT-HEX HEAD', 1, 'B', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010013', 'MG Stack', '5793325', '2191891', 'PLUG AS.', 8, 'B', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010014', 'MG Stack', '5793325', '2191893', 'PLUG AS.', 2, 'C', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917220299010015', 'MG Stack', '5793325', '2521631', 'PLUG AS.', 1, 'C', 2, '2025-03-14 09:53:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347765010000', 'MG Segment', '1070554', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010000', 'MG Segment', '1070554', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010001', 'MG Segment', '1070554', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010002', 'MG Segment', '1070554', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010003', 'MG Segment', '1070554', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010004', 'MG Segment', '1070554', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010005', 'MG Segment', '1070554', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010006', 'MG Segment', '1070554', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010007', 'MG Segment', '1070554', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010008', 'MG Segment', '1070554', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010009', 'MG Segment', '1070554', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010010', 'MG Segment', '1070554', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010011', 'MG Segment', '1070554', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010012', 'MG Segment', '1070554', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010013', 'MG Segment', '1070554', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010014', 'MG Segment', '1070554', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010015', 'MG Segment', '1070554', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010016', 'MG Segment', '1070554', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010017', 'MG Segment', '1070554', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010018', 'MG Segment', '1070554', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010019', 'MG Segment', '1070554', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010020', 'MG Segment', '1070554', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010021', 'MG Segment', '1070554', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010022', 'MG Segment', '1070554', '1024569', '阀芯', 1, 'D', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010023', 'MG Segment', '1070554', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010024', 'MG Segment', '1070554', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010025', 'MG Segment', '1070554', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010026', 'MG Segment', '1070554', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010027', 'MG Segment', '1070554', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010028', 'MG Segment', '1070554', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010029', 'MG Segment', '1070554', '1398472', '溢流阀', 1, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917347766010030', 'MG Segment', '1070554', '1070527', '铭牌', 1, 'F', 8, '2025-03-14 09:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010000', 'MG Segment', '1070555', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010001', 'MG Segment', '1070555', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010002', 'MG Segment', '1070555', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010003', 'MG Segment', '1070555', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010004', 'MG Segment', '1070555', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010005', 'MG Segment', '1070555', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010006', 'MG Segment', '1070555', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010007', 'MG Segment', '1070555', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010008', 'MG Segment', '1070555', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010009', 'MG Segment', '1070555', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010010', 'MG Segment', '1070555', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010011', 'MG Segment', '1070555', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010012', 'MG Segment', '1070555', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010013', 'MG Segment', '1070555', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010014', 'MG Segment', '1070555', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010015', 'MG Segment', '1070555', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010016', 'MG Segment', '1070555', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010017', 'MG Segment', '1070555', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010018', 'MG Segment', '1070555', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010019', 'MG Segment', '1070555', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010020', 'MG Segment', '1070555', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010021', 'MG Segment', '1070555', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010022', 'MG Segment', '1070555', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010023', 'MG Segment', '1070555', '2234897', '阀芯', 1, 'D', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010024', 'MG Segment', '1070555', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010025', 'MG Segment', '1070555', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010026', 'MG Segment', '1070555', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010027', 'MG Segment', '1070555', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010028', 'MG Segment', '1070555', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010029', 'MG Segment', '1070555', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917531700010030', 'MG Segment', '1070555', '1070529', '铭牌', 1, 'F', 8, '2025-03-14 09:58:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010000', 'MG Segment', '5793326', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010001', 'MG Segment', '5793326', '9S8005', 'PLUG-INTL HEX', 1, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010002', 'MG Segment', '5793326', '9J0404', 'PLUG', 2, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010003', 'MG Segment', '5793326', '3613549', 'MDSE AR', 2, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010004', 'MG Segment', '5793326', '3405472', 'LEVER AS. (LH)', 1, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010005', 'MG Segment', '5793326', '8M4437', 'SEAL-O RING', 2, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010006', 'MG Segment', '5793326', '6E4502', 'PLUG', 1, 'A', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010007', 'MG Segment', '5793326', '4J7533', 'SEAL-O-RING-STOR', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010008', 'MG Segment', '5793326', '6E3019', 'VALVE', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010009', 'MG Segment', '5793326', '6E5153', 'SPRING', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010010', 'MG Segment', '5793326', '1082187', 'PLUG-PIPE', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010011', 'MG Segment', '5793326', '1063659', 'PISTON', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010012', 'MG Segment', '5793326', '9J0403', 'SPRING', 2, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010013', 'MG Segment', '5793326', '5B9318', 'BALL', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010014', 'MG Segment', '5793326', '6E3007', 'SPRING', 1, 'B', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010015', 'MG Segment', '5793326', '1011973', 'RETAINER', 4, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010016', 'MG Segment', '5793326', '1027412', 'SPRING', 1, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010017', 'MG Segment', '5793326', '8T4189', 'BOLT-HEX HEAD', 4, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010018', 'MG Segment', '5793326', '8T4224', 'WASHER-HARD', 4, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010019', 'MG Segment', '5793326', '2K8199', 'SEAL-O RING', 2, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010020', 'MG Segment', '5793326', '4D9986', 'SEAL-O-RING', 1, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010021', 'MG Segment', '5793326', '1011971', 'LEVER', 1, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010022', 'MG Segment', '5793326', '1012480', 'COVER', 1, 'C', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010023', 'MG Segment', '5793326', '8T4138', 'BOLT-HEX HEAD', 2, 'D', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010024', 'MG Segment', '5793326', '1011978', 'COVER', 1, 'D', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010025', 'MG Segment', '5793326', '1118233', 'SPRING', 1, 'D', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010026', 'MG Segment', '5793326', '5804142', 'PLATE-IDENT', 1, 'D', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010027', 'MG Segment', '5793326', '1398472', 'VALVE GP-D RLF-', 1, 'D', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010028', 'MG Segment', '5793326', '1011984', 'BODY', 1, 'E', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917556626010029', 'MG Segment', '5793326', '1243331', 'STEM', 1, 'F', 8, '2025-03-14 09:59:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010000', 'MG Segment', '1303115', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010001', 'MG Segment', '1303115', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010002', 'MG Segment', '1303115', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010003', 'MG Segment', '1303115', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010004', 'MG Segment', '1303115', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010005', 'MG Segment', '1303115', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010006', 'MG Segment', '1303115', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010007', 'MG Segment', '1303115', '4J7533', '密封O型圈', 2, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010008', 'MG Segment', '1303115', '9S4180', '堵头', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010009', 'MG Segment', '1303115', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010010', 'MG Segment', '1303115', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010011', 'MG Segment', '1303115', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010012', 'MG Segment', '1303115', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010013', 'MG Segment', '1303115', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010014', 'MG Segment', '1303115', '1063660', '活塞', 2, 'B', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010015', 'MG Segment', '1303115', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010016', 'MG Segment', '1303115', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010017', 'MG Segment', '1303115', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010018', 'MG Segment', '1303115', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010019', 'MG Segment', '1303115', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010020', 'MG Segment', '1303115', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010021', 'MG Segment', '1303115', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010022', 'MG Segment', '1303115', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010023', 'MG Segment', '1303115', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010024', 'MG Segment', '1303115', '2213680', '阀芯', 1, 'D', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010025', 'MG Segment', '1303115', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010026', 'MG Segment', '1303115', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010027', 'MG Segment', '1303115', '1118234', '弹簧', 1, 'F', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010028', 'MG Segment', '1303115', '1303092', '铭牌', 1, 'F', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010029', 'MG Segment', '1303115', '1398477', '溢流阀', 1, 'F', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917578888010030', 'MG Segment', '1303115', '1303535', '制动器', 1, 'G', 8, '2025-03-14 09:59:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010000', 'MG Segment', '1243455', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010001', 'MG Segment', '1243455', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010002', 'MG Segment', '1243455', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010003', 'MG Segment', '1243455', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010004', 'MG Segment', '1243455', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010005', 'MG Segment', '1243455', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010006', 'MG Segment', '1243455', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010007', 'MG Segment', '1243455', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010008', 'MG Segment', '1243455', '6E3019', '阀', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010009', 'MG Segment', '1243455', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010010', 'MG Segment', '1243455', '1082187', '堵头', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010011', 'MG Segment', '1243455', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010012', 'MG Segment', '1243455', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010013', 'MG Segment', '1243455', '1063659', '活塞', 1, 'B', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010014', 'MG Segment', '1243455', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010015', 'MG Segment', '1243455', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010016', 'MG Segment', '1243455', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010017', 'MG Segment', '1243455', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010018', 'MG Segment', '1243455', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010019', 'MG Segment', '1243455', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010020', 'MG Segment', '1243455', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010021', 'MG Segment', '1243455', '1011971', '杆体', 1, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010022', 'MG Segment', '1243455', '1012480', '盖板', 1, 'C', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010023', 'MG Segment', '1243455', '1024574', '阀芯', 1, 'D', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010024', 'MG Segment', '1243455', '1011984', '阀座', 1, 'E', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010025', 'MG Segment', '1243455', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010026', 'MG Segment', '1243455', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010027', 'MG Segment', '1243455', '1011978', '盖板', 1, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010028', 'MG Segment', '1243455', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010029', 'MG Segment', '1243455', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010030', 'MG Segment', '1243455', '1398476', '溢流阀', 1, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917596399010031', 'MG Segment', '1243455', '1243454', '铭牌', 1, 'F', 8, '2025-03-14 09:59:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010000', 'MG Stack', '1303135', '2191891', '塑料塞堵', 8, 'A', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010001', 'MG Stack', '1303135', '9S4180', '螺堵', 1, 'A', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010002', 'MG Stack', '1303135', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010003', 'MG Stack', '1303135', '2521631', '塑料制塞堵组件', 1, 'A', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010004', 'MG Stack', '1303135', '2191893', '塑料塞堵', 2, 'A1', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010005', 'MG Stack', '1303135', '8T4189', '螺栓', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010006', 'MG Stack', '1303135', '8T4224', '垫圈', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010007', 'MG Stack', '1303135', '7S0530', '夹子', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010008', 'MG Stack', '1303135', '1303109', '铭牌', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010009', 'MG Stack', '1303135', '1376720', '螺栓', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010010', 'MG Stack', '1303135', '8T4186', '螺栓', 3, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010011', 'MG Stack', '1303135', '8T4896', '垫圈', 1, 'B', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010012', 'MG Stack', '1303135', '5615574', '密封板', 5, 'C', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917736921010013', 'MG Stack', '1303135', '7X2546', '螺栓', 2, 'C', 2, '2025-03-14 10:02:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010000', 'MG Segment', '1070560', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010001', 'MG Segment', '1070560', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010002', 'MG Segment', '1070560', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010003', 'MG Segment', '1070560', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010004', 'MG Segment', '1070560', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010005', 'MG Segment', '1070560', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010006', 'MG Segment', '1070560', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010007', 'MG Segment', '1070560', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010008', 'MG Segment', '1070560', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010009', 'MG Segment', '1070560', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010010', 'MG Segment', '1070560', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010011', 'MG Segment', '1070560', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010012', 'MG Segment', '1070560', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010013', 'MG Segment', '1070560', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010014', 'MG Segment', '1070560', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010015', 'MG Segment', '1070560', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010016', 'MG Segment', '1070560', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010017', 'MG Segment', '1070560', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010018', 'MG Segment', '1070560', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010019', 'MG Segment', '1070560', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010020', 'MG Segment', '1070560', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010021', 'MG Segment', '1070560', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010022', 'MG Segment', '1070560', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010023', 'MG Segment', '1070560', '1024574', '阀芯', 1, 'D', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010024', 'MG Segment', '1070560', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010025', 'MG Segment', '1070560', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010026', 'MG Segment', '1070560', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010027', 'MG Segment', '1070560', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010028', 'MG Segment', '1070560', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010029', 'MG Segment', '1070560', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917752264010030', 'MG Segment', '1070560', '1070534', '铭牌', 1, 'F', 8, '2025-03-14 10:02:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010000', 'MG Segment', '1070562', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010001', 'MG Segment', '1070562', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010002', 'MG Segment', '1070562', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010003', 'MG Segment', '1070562', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010004', 'MG Segment', '1070562', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010005', 'MG Segment', '1070562', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010006', 'MG Segment', '1070562', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010007', 'MG Segment', '1070562', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010008', 'MG Segment', '1070562', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010009', 'MG Segment', '1070562', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010010', 'MG Segment', '1070562', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010011', 'MG Segment', '1070562', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010012', 'MG Segment', '1070562', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010013', 'MG Segment', '1070562', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010014', 'MG Segment', '1070562', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010015', 'MG Segment', '1070562', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010016', 'MG Segment', '1070562', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010017', 'MG Segment', '1070562', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010018', 'MG Segment', '1070562', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010019', 'MG Segment', '1070562', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010020', 'MG Segment', '1070562', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010021', 'MG Segment', '1070562', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010022', 'MG Segment', '1070562', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010023', 'MG Segment', '1070562', '1024577', '阀芯', 1, 'D', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010024', 'MG Segment', '1070562', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010025', 'MG Segment', '1070562', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010026', 'MG Segment', '1070562', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010027', 'MG Segment', '1070562', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010028', 'MG Segment', '1070562', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010029', 'MG Segment', '1070562', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917771684010030', 'MG Segment', '1070562', '1070537', '铭牌', 1, 'F', 8, '2025-03-14 10:02:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010000', 'MG Segment', '1070563', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010001', 'MG Segment', '1070563', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010002', 'MG Segment', '1070563', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010003', 'MG Segment', '1070563', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010004', 'MG Segment', '1070563', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010005', 'MG Segment', '1070563', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010006', 'MG Segment', '1070563', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010007', 'MG Segment', '1070563', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010008', 'MG Segment', '1070563', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010009', 'MG Segment', '1070563', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010010', 'MG Segment', '1070563', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010011', 'MG Segment', '1070563', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010012', 'MG Segment', '1070563', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010013', 'MG Segment', '1070563', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010014', 'MG Segment', '1070563', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010015', 'MG Segment', '1070563', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010016', 'MG Segment', '1070563', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010017', 'MG Segment', '1070563', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010018', 'MG Segment', '1070563', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010019', 'MG Segment', '1070563', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010020', 'MG Segment', '1070563', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010021', 'MG Segment', '1070563', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010022', 'MG Segment', '1070563', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010023', 'MG Segment', '1070563', '1063661', '阀芯', 1, 'D', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010024', 'MG Segment', '1070563', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010025', 'MG Segment', '1070563', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010026', 'MG Segment', '1070563', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010027', 'MG Segment', '1070563', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010028', 'MG Segment', '1070563', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010029', 'MG Segment', '1070563', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917784190010030', 'MG Segment', '1070563', '1070539', '铭牌', 1, 'F', 8, '2025-03-14 10:03:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924846010000', 'MG Segment', '1303114', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010000', 'MG Segment', '1303114', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010001', 'MG Segment', '1303114', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010002', 'MG Segment', '1303114', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010003', 'MG Segment', '1303114', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010004', 'MG Segment', '1303114', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010005', 'MG Segment', '1303114', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010006', 'MG Segment', '1303114', '4J7533', '密封O型圈', 2, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010007', 'MG Segment', '1303114', '9S4180', '堵头', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010008', 'MG Segment', '1303114', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010009', 'MG Segment', '1303114', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010010', 'MG Segment', '1303114', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010011', 'MG Segment', '1303114', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010012', 'MG Segment', '1303114', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010013', 'MG Segment', '1303114', '1063660', '活塞', 2, 'B', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010014', 'MG Segment', '1303114', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010015', 'MG Segment', '1303114', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010016', 'MG Segment', '1303114', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924847010017', 'MG Segment', '1303114', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010000', 'MG Segment', '1303114', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010001', 'MG Segment', '1303114', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010002', 'MG Segment', '1303114', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010003', 'MG Segment', '1303114', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010004', 'MG Segment', '1303114', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010005', 'MG Segment', '1303114', '2213680', '阀芯', 1, 'D', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010006', 'MG Segment', '1303114', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010007', 'MG Segment', '1303114', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010008', 'MG Segment', '1303114', '1118234', '弹簧', 1, 'F', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010009', 'MG Segment', '1303114', '1303091', '铭牌', 1, 'F', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010010', 'MG Segment', '1303114', '1398477', '溢流阀', 1, 'F', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741917924848010011', 'MG Segment', '1303114', '1303535', '制动器', 1, 'G', 8, '2025-03-14 10:05:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010000', 'MG Stack', '5829206', '3K0360', 'SEAL-O-RING-STOR', 2, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010001', 'MG Stack', '5829206', '9S8005', 'PLUG-LD STOR', 2, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010002', 'MG Stack', '5829206', '9S4180', 'PLUG-LD STOR', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010003', 'MG Stack', '5829206', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010004', 'MG Stack', '5829206', '2147568', 'SEAL-O-RING-STOR', 2, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010005', 'MG Stack', '5829206', '9S4191', 'PLUG-EXT HEX', 2, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010006', 'MG Stack', '5829206', '8T4896', 'WASHER-HARD', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010007', 'MG Stack', '5829206', '5850315', 'PLATE-IDENT', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010008', 'MG Stack', '5829206', '8T4189', 'BOLT-HEX HEAD', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010009', 'MG Stack', '5829206', '7S0530', 'CLIP', 1, 'A', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010010', 'MG Stack', '5829206', '1010509', 'SEAL-INTEGRAL', 6, 'B', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010011', 'MG Stack', '5829206', '8T6408', 'BOLT-HEX HEAD', 1, 'B', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010012', 'MG Stack', '5829206', '7X2546', 'BOLT-HEX HEAD', 2, 'B', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010013', 'MG Stack', '5829206', '8T4224', 'WASHER-HARD', 1, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010014', 'MG Stack', '5829206', '8T4121', 'WASHER-HARD', 3, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010015', 'MG Stack', '5829206', '8T4172', 'BOLT-HEX HEAD', 3, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010016', 'MG Stack', '5829206', '2191891', 'PLUG AS.', 8, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010017', 'MG Stack', '5829206', '2521631', 'Plug Assembly', 1, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010018', 'MG Stack', '5829206', '2660531', 'CAP-CONNECTOR', 2, 'C', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918004704010019', 'MG Stack', '5829206', '2191893', 'PLUG AS.', 2, 'D', 2, '2025-03-14 10:06:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010000', 'MG Segment', '5829210', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010001', 'MG Segment', '5829210', '9S8005', 'PLUG-LD STOR', 1, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010002', 'MG Segment', '5829210', '9S4180', 'PLUG-LD STOR', 1, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010003', 'MG Segment', '5829210', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010004', 'MG Segment', '5829210', '9J0404', 'PLUG', 2, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010005', 'MG Segment', '5829210', '3613549', 'MDSE AR', 2, 'A', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010006', 'MG Segment', '5829210', '3405472', 'LEVER AS. (LH)', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010007', 'MG Segment', '5829210', '8M4437', 'SEAL-O RING', 2, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010008', 'MG Segment', '5829210', '3675511', 'PLUG', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010009', 'MG Segment', '5829210', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010010', 'MG Segment', '5829210', '6E3019', 'VALVE', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010011', 'MG Segment', '5829210', '6E5153', 'SPRING', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010012', 'MG Segment', '5829210', '3307751', 'PLUG-PIPE', 1, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010013', 'MG Segment', '5829210', '1063660', 'PISTON', 2, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010014', 'MG Segment', '5829210', '9J0403', 'SPRING', 2, 'B', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010015', 'MG Segment', '5829210', '5B9318', 'BALL', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010016', 'MG Segment', '5829210', '6E3007', 'SPRING', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010017', 'MG Segment', '5829210', '1011973', 'RETAINER', 4, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010018', 'MG Segment', '5829210', '8T4189', 'BOLT-HEX HEAD', 2, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010019', 'MG Segment', '5829210', '8T4224', 'WASHER-HARD', 2, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010020', 'MG Segment', '5829210', '1027412', 'SPRING', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010021', 'MG Segment', '5829210', '2K8199', 'SEAL-O RING', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010022', 'MG Segment', '5829210', '4D9986', 'SEAL-O-RING', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010023', 'MG Segment', '5829210', '1011971', 'LEVER', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010024', 'MG Segment', '5829210', '1012480', 'COVER', 1, 'C', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010025', 'MG Segment', '5829210', '2213676', 'STEM', 1, 'D', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010026', 'MG Segment', '5829210', '1011984', 'BODY', 1, 'E', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010027', 'MG Segment', '5829210', '8T4138', 'BOLT-HEX HEAD', 2, 'F', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010028', 'MG Segment', '5829210', '1398477', 'VALVE GP-D RLF-', 1, 'F', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010029', 'MG Segment', '5829210', '1118234', 'SPRING', 1, 'F', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010030', 'MG Segment', '5829210', '1303535', 'DETENT GP-CONT', 1, 'F', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918020511010031', 'MG Segment', '5829210', '5850311', 'PLATE-IDENT', 1, 'F', 8, '2025-03-14 10:07:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010000', 'MG Stack', '5890385', '3K0360', '橡胶密封圈', 2, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010001', 'MG Stack', '5890385', '9S8005', '钢铁制塞堵', 2, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010002', 'MG Stack', '5890385', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010003', 'MG Stack', '5890385', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010004', 'MG Stack', '5890385', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010005', 'MG Stack', '5890385', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010006', 'MG Stack', '5890385', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010007', 'MG Stack', '5890385', '8T4172', '钢铁制螺栓', 3, 'A', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010008', 'MG Stack', '5890385', '1010509', '密封衬垫', 6, 'B', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010009', 'MG Stack', '5890385', '8T4896', '钢铁制垫圈', 1, 'B', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010010', 'MG Stack', '5890385', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010011', 'MG Stack', '5890385', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010012', 'MG Stack', '5890385', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010013', 'MG Stack', '5890385', '2191893', '塑料塞堵', 2, 'C', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918074528010014', 'MG Stack', '5890385', '2191891', '塑料塞堵', 8, 'D', 2, '2025-03-14 10:07:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010000', 'MG Segment', '1934431', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010001', 'MG Segment', '1934431', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010002', 'MG Segment', '1934431', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010003', 'MG Segment', '1934431', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010004', 'MG Segment', '1934431', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010005', 'MG Segment', '1934431', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010006', 'MG Segment', '1934431', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010007', 'MG Segment', '1934431', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010008', 'MG Segment', '1934431', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010009', 'MG Segment', '1934431', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010010', 'MG Segment', '1934431', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010011', 'MG Segment', '1934431', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010012', 'MG Segment', '1934431', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010013', 'MG Segment', '1934431', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010014', 'MG Segment', '1934431', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010015', 'MG Segment', '1934431', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010016', 'MG Segment', '1934431', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010017', 'MG Segment', '1934431', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010018', 'MG Segment', '1934431', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010019', 'MG Segment', '1934431', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010020', 'MG Segment', '1934431', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010021', 'MG Segment', '1934431', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010022', 'MG Segment', '1934431', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010023', 'MG Segment', '1934431', '1011148', '阀芯', 1, 'D', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010024', 'MG Segment', '1934431', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010025', 'MG Segment', '1934431', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010026', 'MG Segment', '1934431', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010027', 'MG Segment', '1934431', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010028', 'MG Segment', '1934431', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010029', 'MG Segment', '1934431', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010030', 'MG Segment', '1934431', '1398475', '溢流阀', 1, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918091325010031', 'MG Segment', '1934431', '1934430', '铭牌', 1, 'F', 8, '2025-03-14 10:08:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010000', 'HMS', '5973476', '1482557', 'PLUG', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010001', 'HMS', '5973476', '2828827', 'PLUG-EXPANSION', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010002', 'HMS', '5973476', '5973482', 'VALVE', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010003', 'HMS', '5973476', '4954349', 'SPRING ', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010004', 'HMS', '5973476', '6002074', 'COVER ', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010005', 'HMS', '5973476', '0951594/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010006', 'HMS', '5973476', '0951789/HE', 'RING BACK UP', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010007', 'HMS', '5973476', '8T4196', 'BOLT-HEX HEAD ', 4, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010008', 'HMS', '5973476', '8T4121', 'WASHER-HARD', 4, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010009', 'HMS', '5973476', '5774360', 'VALVE GP-CHECK', 1, 'A', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010010', 'HMS', '5973476', '3603692', 'PLUG-HD STOR', 4, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010011', 'HMS', '5973476', '3J1907', 'SEAL-O-RING', 4, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010012', 'HMS', '5973476', '5973483', 'PLATE-IDENT ', 1, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010013', 'HMS', '5973476', '7J7366', 'GASKET ', 1, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010014', 'HMS', '5973476', '7J7367', 'COVER ', 1, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010015', 'HMS', '5973476', '8T4179', 'BOLT-HEX HEAD ', 2, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010016', 'HMS', '5973476', '5413277/HE', 'FILM-PORT PROTN', 1, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010017', 'HMS', '5973476', '2760748', 'CAP-PLUG', 4, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741918888513010018', 'HMS', '5973476', '4D2886', 'CLIP', 1, 'B', 1, '2025-03-14 10:21:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010000', 'EH-Steering', '5013712', '6024220', 'VALVEGP-CHECK-E', 1, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010001', 'EH-Steering', '5013712', '2828827', 'PLUG', 2, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010002', 'EH-Steering', '5013712', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010003', 'EH-Steering', '5013712', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010004', 'EH-Steering', '5013712', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010005', 'EH-Steering', '5013712', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010006', 'EH-Steering', '5013712', '2976291', 'PLUGAS', 12, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010007', 'EH-Steering', '5013712', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010008', 'EH-Steering', '5013712', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010009', 'EH-Steering', '5013712', '1919247', 'WASHER', 4, 'B', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084910010010', 'EH-Steering', '5013712', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010000', 'EH-Steering', '5013712', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010001', 'EH-Steering', '5013712', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010002', 'EH-Steering', '5013712', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010003', 'EH-Steering', '5013712', '5892751', 'VALVEGP-SOL', 1, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010004', 'EH-Steering', '5013712', '4973504', 'VALVEGP-PRLF-A', 3, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010005', 'EH-Steering', '5013712', '2608590', 'VALVE GP-SHUTTLE', 1, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010006', 'EH-Steering', '5013712', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010007', 'EH-Steering', '5013712', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010008', 'EH-Steering', '5013712', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010009', 'EH-Steering', '5013712', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010010', 'EH-Steering', '5013712', '0951582/HE', 'SEAL-O-RING', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010011', 'EH-Steering', '5013712', '4932479', 'SENSOR AS-SPOOL', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010012', 'EH-Steering', '5013712', '6V8653', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010013', 'EH-Steering', '5013712', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010014', 'EH-Steering', '5013712', '3278527', 'SPRING', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010015', 'EH-Steering', '5013712', '1749194', 'BOLT-FLANGE HEAD', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010016', 'EH-Steering', '5013712', '4932480', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010017', 'EH-Steering', '5013712', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010018', 'EH-Steering', '5013712', '3J1907', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010019', 'EH-Steering', '5013712', '9S8004', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010020', 'EH-Steering', '5013712', '3676002', 'PLUG AS-HD', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010021', 'EH-Steering', '5013712', '8T2396', 'BOLT-SOCKETHD', 2, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010022', 'EH-Steering', '5013712', '9X8256', 'WASHER ', 2, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084911010023', 'EH-Steering', '5013712', '5189371', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010000', 'EH-Steering', '5013712', '8T8737', 'PLUG-SEAL', 8, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010001', 'EH-Steering', '5013712', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010002', 'EH-Steering', '5013712', '2305010', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010003', 'EH-Steering', '5013712', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010004', 'EH-Steering', '5013712', '2965987', 'PLUG', 3, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010005', 'EH-Steering', '5013712', '3331701', 'PLUG', 1, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010006', 'EH-Steering', '5013712', '4J0520', 'SEAL-O-RING', 2, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010007', 'EH-Steering', '5013712', '8T6466', 'BOLT-HEX HEAD', 8, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010008', 'EH-Steering', '5013712', '8T4121', 'WASHER-HARD', 8, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010009', 'EH-Steering', '5013712', '7S0530', 'CLIP', 1, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010010', 'EH-Steering', '5013712', '3267680', 'PLUG', 4, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010011', 'EH-Steering', '5013712', '7J3554', 'COVER', 2, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010012', 'EH-Steering', '5013712', '8T4137', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919084912010013', 'EH-Steering', '5013712', '2D0094', 'GASKET', 2, 'F', 1, '2025-03-14 10:24:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102003010000', 'EH-Steering', '5013711', '6024220', 'VALVEGP-CHECK-E', 1, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010000', 'EH-Steering', '5013711', '2828827', 'PLUG', 2, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010001', 'EH-Steering', '5013711', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010002', 'EH-Steering', '5013711', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010003', 'EH-Steering', '5013711', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010004', 'EH-Steering', '5013711', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010005', 'EH-Steering', '5013711', '2976291', 'PLUGAS', 12, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010006', 'EH-Steering', '5013711', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010007', 'EH-Steering', '5013711', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010008', 'EH-Steering', '5013711', '1919247', 'WASHER', 4, 'B', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010009', 'EH-Steering', '5013711', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010010', 'EH-Steering', '5013711', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010011', 'EH-Steering', '5013711', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010012', 'EH-Steering', '5013711', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010013', 'EH-Steering', '5013711', '5892751', 'VALVEGP-SOL', 1, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010014', 'EH-Steering', '5013711', '4973504', 'VALVEGP-PRLF-A', 3, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010015', 'EH-Steering', '5013711', '2608590', 'VALVE GP-SHUTTLE', 1, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010016', 'EH-Steering', '5013711', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010017', 'EH-Steering', '5013711', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010018', 'EH-Steering', '5013711', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010019', 'EH-Steering', '5013711', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010020', 'EH-Steering', '5013711', '0951582/HE', 'SEAL-O-RING', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010021', 'EH-Steering', '5013711', '4932479', 'SENSOR AS-SPOOL', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010022', 'EH-Steering', '5013711', '6V8653', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010023', 'EH-Steering', '5013711', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010024', 'EH-Steering', '5013711', '3278527', 'SPRING', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102004010025', 'EH-Steering', '5013711', '1749194', 'BOLT-FLANGE HEAD', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010000', 'EH-Steering', '5013711', '4932480', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010001', 'EH-Steering', '5013711', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010002', 'EH-Steering', '5013711', '3J1907', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010003', 'EH-Steering', '5013711', '9S8004', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010004', 'EH-Steering', '5013711', '3676002', 'PLUG AS-HD', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010005', 'EH-Steering', '5013711', '8T2396', 'BOLT-SOCKETHD', 2, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010006', 'EH-Steering', '5013711', '9X8256', 'WASHER ', 2, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010007', 'EH-Steering', '5013711', '5189370', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010008', 'EH-Steering', '5013711', '8T8737', 'PLUG-SEAL', 8, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010009', 'EH-Steering', '5013711', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010010', 'EH-Steering', '5013711', '2305010', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010011', 'EH-Steering', '5013711', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010012', 'EH-Steering', '5013711', '2965987', 'PLUG', 3, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010013', 'EH-Steering', '5013711', '3331701', 'PLUG', 1, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010014', 'EH-Steering', '5013711', '4J0520', 'SEAL-O-RING', 2, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010015', 'EH-Steering', '5013711', '8T6466', 'BOLT-HEX HEAD', 8, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010016', 'EH-Steering', '5013711', '8T4121', 'WASHER-HARD', 8, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010017', 'EH-Steering', '5013711', '7S0530', 'CLIP', 1, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010018', 'EH-Steering', '5013711', '3267680', 'PLUG', 4, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010019', 'EH-Steering', '5013711', '7J3554', 'COVER', 2, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010020', 'EH-Steering', '5013711', '8T4137', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919102005010021', 'EH-Steering', '5013711', '2D0094', 'GASKET', 2, 'F', 1, '2025-03-14 10:25:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010000', 'Fenix', '5702570', '3J7354', 'SEAL-O-RING-STOR', 2, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010001', 'Fenix', '5702570', '9S4182', 'PLUG-LD STOR ', 2, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010002', 'Fenix', '5702570', '5741229', 'VALVE GP-D RLF-B', 1, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010003', 'Fenix', '5702570', '2608590', 'VALVE GP-SHTL -B', 1, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010004', 'Fenix', '5702570', '6V3965', 'ADAPTER-STR ', 2, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010005', 'Fenix', '5702570', '2147568', 'SEAL-O-RING-STOR', 2, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010006', 'Fenix', '5702570', '6V0852', 'CAP-DUST ', 2, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010007', 'Fenix', '5702570', '3979397', 'VALVE GP-SOL ', 1, 'A', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010008', 'Fenix', '5702570', '2660531', 'CAP-CONNECTOR ', 1, 'B', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010009', 'Fenix', '5702570', '2965987', 'PLUG ', 5, 'B', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919361658010010', 'Fenix', '5702570', '5702568', 'PLATE-IDENT ', 1, 'B', 1, '2025-03-14 10:29:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010000', 'BRK', '1131543', '1U2643', '阀体', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010001', 'BRK', '1131543', '6V8350', 'O型圈', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010002', 'BRK', '1131543', '0336027', 'O型圈', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010003', 'BRK', '1131543', '9J8626', '阀', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010004', 'BRK', '1131543', '9N4049', '弹簧', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010005', 'BRK', '1131543', '6H2948', '销子', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010006', 'BRK', '1131543', '9S4684', '堵头', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010007', 'BRK', '1131543', '2147568', 'O型圈', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010008', 'BRK', '1131543', '1501285', '螺纹接头', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010009', 'BRK', '1131543', '1132040', '铭牌', 1, 'A', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010010', 'BRK', '1131543', '3603688', '堵头', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010011', 'BRK', '1131543', '4J7533', 'O型圈', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010012', 'BRK', '1131543', '9S8008', '堵头', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010013', 'BRK', '1131543', '2385082', 'O型圈', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010014', 'BRK', '1131543', '1K4066', '弹簧', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010015', 'BRK', '1131543', '5P4892', 'O型圈', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010016', 'BRK', '1131543', '0344160', '螺栓', 2, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010017', 'BRK', '1131543', '8T4224', '垫圈', 2, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010018', 'BRK', '1131543', '6E6305', '溢流阀', 1, 'B', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010019', 'BRK', '1131543', '1494132', '气缸', 1, 'C', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010020', 'BRK', '1131543', '3D2824', 'O型圈', 4, 'D', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010021', 'BRK', '1131543', '3603695', '螺堵', 4, 'D', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010022', 'BRK', '1131543', '3J7354', 'O型圈', 1, 'D', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010023', 'BRK', '1131543', '3603690', '螺堵', 1, 'D', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919394784010024', 'BRK', '1131543', '5M6214', '堵头', 1, 'D', 3, '2025-03-14 10:29:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010000', 'BRK', '1494133', '1U2643', '阀体', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010001', 'BRK', '1494133', '6V8350', 'O型圈', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010002', 'BRK', '1494133', '0336027', 'O型圈', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010003', 'BRK', '1494133', '9J8626', '阀', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010004', 'BRK', '1494133', '9N4049', '弹簧', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010005', 'BRK', '1494133', '6H2948', '销子', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010006', 'BRK', '1494133', '9S4684', '堵头', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010007', 'BRK', '1494133', '2147568', 'O型圈', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010008', 'BRK', '1494133', '1501285', '螺纹接头', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010009', 'BRK', '1494133', '1507244', '铭牌', 1, 'A', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010010', 'BRK', '1494133', '3603688', '堵头', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010011', 'BRK', '1494133', '4J7533', 'O型圈', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010012', 'BRK', '1494133', '9S8008', '堵头', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010013', 'BRK', '1494133', '2385082', 'O型圈', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010014', 'BRK', '1494133', '1K4066', '弹簧', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010015', 'BRK', '1494133', '5P4892', 'O型圈', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010016', 'BRK', '1494133', '0344160', '螺栓', 2, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010017', 'BRK', '1494133', '8T4224', '垫圈', 2, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010018', 'BRK', '1494133', '6E6305', '溢流阀', 1, 'B', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010019', 'BRK', '1494133', '1494132', '气缸', 1, 'C', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010020', 'BRK', '1494133', '3D2824', 'O型圈', 4, 'D', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010021', 'BRK', '1494133', '3603695', '螺堵', 4, 'D', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010022', 'BRK', '1494133', '3J7354', 'O型圈', 1, 'D', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010023', 'BRK', '1494133', '3603690', '螺堵', 1, 'D', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919445718010024', 'BRK', '1494133', '5M6214', '堵头', 1, 'D', 3, '2025-03-14 10:30:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010000', 'BRK', '5059699', '6H2948', '钢铁制榫钉', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010001', 'BRK', '5059699', '6V8350', '橡胶密封圈', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010002', 'BRK', '5059699', '9J8626', '阀芯', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010003', 'BRK', '5059699', '9N4049', '钢铁弹簧', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010004', 'BRK', '5059699', '9S4684', '钢铁制塞堵', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010005', 'BRK', '5059699', '0336027', '橡胶密封圈', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010006', 'BRK', '5059699', '2147568', '橡胶密封圈', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010007', 'BRK', '5059699', '1501285', '通气过滤器', 1, 'A', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010008', 'BRK', '5059699', '3D2824', '橡胶密封圈', 4, 'B', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010009', 'BRK', '5059699', '3603695', '钢铁制塞堵', 4, 'B', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010010', 'BRK', '5059699', '3J7354', '橡胶密封圈', 1, 'B', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010011', 'BRK', '5059699', '3603690', '钢铁制塞堵', 1, 'B', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010012', 'BRK', '5059699', '5M6214', '钢铁制塞堵', 1, 'B', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010013', 'BRK', '5059699', '4J7533', '橡胶密封圈', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010014', 'BRK', '5059699', '3603688', '钢铁制塞堵', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010015', 'BRK', '5059699', '9S8008', '钢铁制塞堵', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010016', 'BRK', '5059699', '2385082', '橡胶密封圈', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010017', 'BRK', '5059699', '1K4066', '钢铁弹簧', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010018', 'BRK', '5059699', '5P4892', '橡胶密封圈', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010019', 'BRK', '5059699', '8T4224', '钢铁制垫圈', 2, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010020', 'BRK', '5059699', '0344160', '钢铁制螺栓', 2, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010021', 'BRK', '5059699', '6E6305', '阀', 1, 'C', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919462792010022', 'BRK', '5059699', '1494132', '气压缸', 1, 'D', 3, '2025-03-14 10:31:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010000', 'EH-Steering', '5978244', '2828827', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010001', 'EH-Steering', '5978244', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010002', 'EH-Steering', '5978244', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010003', 'EH-Steering', '5978244', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010004', 'EH-Steering', '5978244', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010005', 'EH-Steering', '5978244', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010006', 'EH-Steering', '5978244', '2976291', 'PLUG', 12, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010007', 'EH-Steering', '5978244', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010008', 'EH-Steering', '5978244', '1919247', 'WASHER-SOFT', 4, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010009', 'EH-Steering', '5978244', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010010', 'EH-Steering', '5978244', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010011', 'EH-Steering', '5978244', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010012', 'EH-Steering', '5978244', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010013', 'EH-Steering', '5978244', '4951569', 'VALVE GP-SOL', 1, 'B', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010014', 'EH-Steering', '5978244', '5218459', 'PLUG-SHUTOFF', 1, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010015', 'EH-Steering', '5978244', '5979084', 'VALVE GP-P RLF-B', 2, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010016', 'EH-Steering', '5978244', '2608590', 'VALVE GP-SHTL -B', 1, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010017', 'EH-Steering', '5978244', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010018', 'EH-Steering', '5978244', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010019', 'EH-Steering', '5978244', '6V8653', 'BOLT-SOCKET HD', 4, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010020', 'EH-Steering', '5978244', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010021', 'EH-Steering', '5978244', '0951582/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010022', 'EH-Steering', '5978244', '4932479', 'SENSOR AS-SPOOL', 1, 'C', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010023', 'EH-Steering', '5978244', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010024', 'EH-Steering', '5978244', '3278527', 'SPRING', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010025', 'EH-Steering', '5978244', '1749194', 'BOLT-HEX FLG HD', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010026', 'EH-Steering', '5978244', '4932480', 'PROBE AS-SPOOL', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010027', 'EH-Steering', '5978244', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010028', 'EH-Steering', '5978244', '3J1907', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010029', 'EH-Steering', '5978244', '9S8004', 'PLUG-INTL HEX', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010030', 'EH-Steering', '5978244', '3676002', 'PLUG AS-HD STOR', 1, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010031', 'EH-Steering', '5978244', '8T2396', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010032', 'EH-Steering', '5978244', '9X8256', 'WASHER', 2, 'D', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010033', 'EH-Steering', '5978244', '6015976', 'PLATE-IDENT', 1, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010034', 'EH-Steering', '5978244', '8T8737', 'PLUG-SEAL', 8, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010035', 'EH-Steering', '5978244', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010036', 'EH-Steering', '5978244', '2305010', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010037', 'EH-Steering', '5978244', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010038', 'EH-Steering', '5978244', '2965987', 'PLUG', 3, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010039', 'EH-Steering', '5978244', '3331701', 'PLUG', 1, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010040', 'EH-Steering', '5978244', '4J0520', 'SEAL-O-RING', 2, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010041', 'EH-Steering', '5978244', '8T6466', 'BOLT-HEX HEAD', 8, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010042', 'EH-Steering', '5978244', '8T4121', 'WASHER-HARD', 8, 'E', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010043', 'EH-Steering', '5978244', '7S0530', 'CLIP', 1, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010044', 'EH-Steering', '5978244', '2385082', '橡胶密封圈', 4, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010045', 'EH-Steering', '5978244', '3603695', '堵头', 4, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010046', 'EH-Steering', '5978244', '7J3554', ' OVER', 2, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010047', 'EH-Steering', '5978244', '8T4137', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919477753010048', 'EH-Steering', '5978244', '2D0094', 'GASKET', 2, 'F', 1, '2025-03-14 10:31:18', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010000', 'ACS', '4165349', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010001', 'ACS', '4165349', '4J0523', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010002', 'ACS', '4165349', '3045114', 'SLEEVE', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010003', 'ACS', '4165349', '3175154', 'RING-BACKUP', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010004', 'ACS', '4165349', '3461626', 'SPRING', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010005', 'ACS', '4165349', '3461628', 'RETAINER', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010006', 'ACS', '4165349', '3467576', 'WASHER', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010007', 'ACS', '4165349', '3523048', 'KIT-SEAL', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919651746010008', 'ACS', '4165349', '3789423', 'STEM-CT', 1, 'A', 1, '2025-03-14 10:34:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010000', 'Brake', '9T4769', '1U2643', '阀体', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010001', 'Brake', '9T4769', '6V8350', 'O型圈', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010002', 'Brake', '9T4769', '0336027', 'O型圈', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010003', 'Brake', '9T4769', '9J8626', '阀', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010004', 'Brake', '9T4769', '9N4049', '弹簧', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010005', 'Brake', '9T4769', '6H2948', '销子', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010006', 'Brake', '9T4769', '9S4684', '堵头', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010007', 'Brake', '9T4769', '2147568', 'O型圈', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010008', 'Brake', '9T4769', '3603693', '堵头', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010009', 'Brake', '9T4769', '3K0360', 'O型圈', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010010', 'Brake', '9T4769', '1109456', '铭牌', 1, 'A', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010011', 'Brake', '9T4769', '3603688', '堵头', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010012', 'Brake', '9T4769', '4J7533', 'O型圈', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010013', 'Brake', '9T4769', '9S8008', '堵头', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010014', 'Brake', '9T4769', '3D2824', 'O型圈', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010015', 'Brake', '9T4769', '1K4066', '弹簧', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010016', 'Brake', '9T4769', '0619456', 'O型圈', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010017', 'Brake', '9T4769', '0344160', '螺栓', 2, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010018', 'Brake', '9T4769', '8T4224', '垫圈', 2, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010019', 'Brake', '9T4769', '6E6304 ', '溢流阀', 1, 'B', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010020', 'Brake', '9T4769', '9T7204', '气缸', 1, 'C', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010021', 'Brake', '9T4769', '3D2824', 'O型圈', 4, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010022', 'Brake', '9T4769', '3603695', '螺堵', 4, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010023', 'Brake', '9T4769', '3J7354', 'O型圈', 1, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010024', 'Brake', '9T4769', '3603690', '螺堵', 1, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010025', 'Brake', '9T4769', '6E4145', '保护塞子', 1, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919741471010026', 'Brake', '9T4769', '5M6214', '堵头', 1, 'D', 3, '2025-03-14 10:35:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010000', 'TRS', '6063778', '2M9780', '橡胶密封圈', 4, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010001', 'TRS', '6063778', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010002', 'TRS', '6063778', '6Y0871', '钢铁弹簧', 2, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010003', 'TRS', '6063778', '6Y4638', '钢铁制塞堵', 2, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010004', 'TRS', '6063778', '7M8485', '橡胶密封圈', 2, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010005', 'TRS', '6063778', '7T7679', '钢铁制塞堵', 4, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010006', 'TRS', '6063778', '8E1139', '钢铁弹簧', 1, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010007', 'TRS', '6063778', '8E1142', '阀芯', 1, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010008', 'TRS', '6063778', '8E1143', '阀芯', 1, 'A', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010009', 'TRS', '6063778', '7T8797', '铝制垫圈', 1, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010010', 'TRS', '6063778', '8J2283', '钢铁簧环', 1, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010011', 'TRS', '6063778', '9U9328', '钢铁弹簧', 1, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010012', 'TRS', '6063778', '9W6096', '阀芯', 6, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010013', 'TRS', '6063778', '9W8279', '阀芯', 1, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010014', 'TRS', '6063778', '1760258', '滤网接头', 1, 'B', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919772921010015', 'TRS', '6063778', '1861526', '电磁换向阀', 6, 'C', 2, '2025-03-14 10:36:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010000', 'Fenix', '5872370', '1483483', 'PLUG ', 2, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010001', 'Fenix', '5872370', '2828827', 'PLUG-EXPANSION ', 2, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010002', 'Fenix', '5872370', '9J8126', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010003', 'Fenix', '5872370', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010004', 'Fenix', '5872370', '9S8002', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010005', 'Fenix', '5872370', '9T8685', 'VALVE ', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010006', 'Fenix', '5872370', '2N7029', 'SPRING-CONT PIN ', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010007', 'Fenix', '5872370', '3D2824', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010008', 'Fenix', '5872370', '3788543', 'PLUG ', 1, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010009', 'Fenix', '5872370', '4841390', 'PLUG AS ', 2, 'A', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010010', 'Fenix', '5872370', '6293326', 'VALVE ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010011', 'Fenix', '5872370', '4681136', 'SPRING ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010012', 'Fenix', '5872370', '5Y2425/G', 'WASHER-SOFT ', 2, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010013', 'Fenix', '5872370', '7J9933', 'SEAL-O RING ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010014', 'Fenix', '5872370', '4829841', 'RING-BACKUP ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010015', 'Fenix', '5872370', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010016', 'Fenix', '5872370', '4681139', 'PLUG-RETAINER ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010017', 'Fenix', '5872370', '5010642', 'VALVE GP-RLF -A', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010018', 'Fenix', '5872370', '1483483', 'PLUG ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010019', 'Fenix', '5872370', '3P1979', 'SEAL-O-RING ', 1, 'B', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010020', 'Fenix', '5872370', '4681141', 'RETAINER ', 2, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010021', 'Fenix', '5872370', '4681135', 'SPRING ', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010022', 'Fenix', '5872370', '4681145', 'BOLT-FLAT ', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010023', 'Fenix', '5872370', '4681339', 'HOUSING ', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010024', 'Fenix', '5872370', '7X7888', 'BOLT-HEX HEAD ', 2, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010025', 'Fenix', '5872370', '9X8256', 'WASHER ', 2, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010026', 'Fenix', '5872370', '7X5315', 'COUPLING-QDISC ', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010027', 'Fenix', '5872370', '7X5308', 'CAP-DUST ', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010028', 'Fenix', '5872370', '4689932', 'MANIFOLD GP-CONT', 1, 'C', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010029', 'Fenix', '5872370', '7X2535', 'BOLT-HEX HEAD ', 2, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010030', 'Fenix', '5872370', '9X8256', 'WASHER ', 2, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010031', 'Fenix', '5872370', '7X5315', 'COUPLING-QDISC ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010032', 'Fenix', '5872370', '7X5308', 'CAP-DUST ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010033', 'Fenix', '5872370', '3J1907', 'SEAL-O-RING-STOR', 3, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010034', 'Fenix', '5872370', '3603692', 'PLUG-HD STOR ', 3, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010035', 'Fenix', '5872370', '3K0360', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010036', 'Fenix', '5872370', '9S4185', 'PLUG-LD STOR ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010037', 'Fenix', '5872370', '6V3965', 'ADAPTER-STR ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010038', 'Fenix', '5872370', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010039', 'Fenix', '5872370', '6V0852', 'CAP-DUST ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010040', 'Fenix', '5872370', '2965987', 'PLUG ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010041', 'Fenix', '5872370', '5542333/HE', 'CAP-CONNECTOR ', 2, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741919787601010042', 'Fenix', '5872370', '5872368', 'PLATE-IDENT ', 1, 'D', 1, '2025-03-14 10:36:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010000', 'MG Stack', '5887917', '3K0360', '橡胶密封圈', 2, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010001', 'MG Stack', '5887917', '9S8005', '钢铁制塞堵', 2, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010002', 'MG Stack', '5887917', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010003', 'MG Stack', '5887917', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010004', 'MG Stack', '5887917', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010005', 'MG Stack', '5887917', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010006', 'MG Stack', '5887917', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010007', 'MG Stack', '5887917', '8T4896', '钢铁制垫圈', 1, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010008', 'MG Stack', '5887917', '8T4172', '钢铁制螺栓', 3, 'A', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010009', 'MG Stack', '5887917', '1010509', '密封衬垫', 6, 'B', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010010', 'MG Stack', '5887917', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010011', 'MG Stack', '5887917', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010012', 'MG Stack', '5887917', '2191891', '塑料塞堵', 6, 'C', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010013', 'MG Stack', '5887917', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920460112010014', 'MG Stack', '5887917', '2191893', '塑料塞堵', 2, 'D', 2, '2025-03-14 10:47:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010000', 'MG Segment', '1199549', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010001', 'MG Segment', '1199549', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010002', 'MG Segment', '1199549', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010003', 'MG Segment', '1199549', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010004', 'MG Segment', '1199549', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010005', 'MG Segment', '1199549', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010006', 'MG Segment', '1199549', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010007', 'MG Segment', '1199549', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010008', 'MG Segment', '1199549', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010009', 'MG Segment', '1199549', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010010', 'MG Segment', '1199549', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010011', 'MG Segment', '1199549', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010012', 'MG Segment', '1199549', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010013', 'MG Segment', '1199549', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010014', 'MG Segment', '1199549', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010015', 'MG Segment', '1199549', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010016', 'MG Segment', '1199549', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010017', 'MG Segment', '1199549', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010018', 'MG Segment', '1199549', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010019', 'MG Segment', '1199549', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010020', 'MG Segment', '1199549', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010021', 'MG Segment', '1199549', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010022', 'MG Segment', '1199549', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010023', 'MG Segment', '1199549', '1011148', '阀芯', 1, 'D', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010024', 'MG Segment', '1199549', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010025', 'MG Segment', '1199549', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010026', 'MG Segment', '1199549', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010027', 'MG Segment', '1199549', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010028', 'MG Segment', '1199549', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010029', 'MG Segment', '1199549', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010030', 'MG Segment', '1199549', '1398475', '溢流阀', 1, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920560231010031', 'MG Segment', '1199549', '1199541', '铭牌', 1, 'F', 8, '2025-03-14 10:49:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010000', 'MG Stack', '1303123', '9S8005', '钢铁制塞堵', 2, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010001', 'MG Stack', '1303123', '3K0360', '橡胶密封圈', 2, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010002', 'MG Stack', '1303123', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010003', 'MG Stack', '1303123', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010004', 'MG Stack', '1303123', '2191893', '塑料堵头', 2, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010005', 'MG Stack', '1303123', '2521631', '塑料堵头', 1, 'A', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010006', 'MG Stack', '1303123', '8T4224', '钢铁制垫圈', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010007', 'MG Stack', '1303123', '8T4189', '钢铁制螺栓', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010008', 'MG Stack', '1303123', '7S0530', '钢铁制管夹', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010009', 'MG Stack', '1303123', '8T4172', '钢铁制螺栓', 3, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010010', 'MG Stack', '1303123', '8T4896', '钢铁制垫圈', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010011', 'MG Stack', '1303123', '1303100', 'Plate', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010012', 'MG Stack', '1303123', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010013', 'MG Stack', '1303123', '1010509', '密封衬垫', 6, 'C', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010014', 'MG Stack', '1303123', '7X2546', '钢铁制螺栓', 2, 'C', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920653538010015', 'MG Stack', '1303123', '2191891', '塑料堵头', 8, 'D', 2, '2025-03-14 10:50:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718934010000', 'MG Stack', '5890390', '3K0360', '橡胶密封圈', 6, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010000', 'MG Stack', '5890390', '9S8005', '钢铁制塞堵', 6, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010001', 'MG Stack', '5890390', '3603688', '钢铁制塞堵', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010002', 'MG Stack', '5890390', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010003', 'MG Stack', '5890390', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010004', 'MG Stack', '5890390', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010005', 'MG Stack', '5890390', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010006', 'MG Stack', '5890390', '8T6408', '钢铁制螺栓', 4, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010007', 'MG Stack', '5890390', '8T4896', '钢铁制垫圈', 1, 'A', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010008', 'MG Stack', '5890390', '5615574', '密封衬垫', 8, 'B', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010009', 'MG Stack', '5890390', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010010', 'MG Stack', '5890390', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010011', 'MG Stack', '5890390', '2191893', '塑料塞堵', 2, 'C', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920718935010012', 'MG Stack', '5890390', '2191891', '塑料塞堵', 8, 'D', 2, '2025-03-14 10:51:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010000', 'MG Segment', '1506649', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010001', 'MG Segment', '1506649', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010002', 'MG Segment', '1506649', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010003', 'MG Segment', '1506649', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010004', 'MG Segment', '1506649', '3405472', '右手柄', 1, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010005', 'MG Segment', '1506649', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010006', 'MG Segment', '1506649', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010007', 'MG Segment', '1506649', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010008', 'MG Segment', '1506649', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010009', 'MG Segment', '1506649', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010010', 'MG Segment', '1506649', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010011', 'MG Segment', '1506649', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010012', 'MG Segment', '1506649', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010013', 'MG Segment', '1506649', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010014', 'MG Segment', '1506649', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010015', 'MG Segment', '1506649', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010016', 'MG Segment', '1506649', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010017', 'MG Segment', '1506649', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010018', 'MG Segment', '1506649', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010019', 'MG Segment', '1506649', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010020', 'MG Segment', '1506649', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010021', 'MG Segment', '1506649', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010022', 'MG Segment', '1506649', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010023', 'MG Segment', '1506649', '1024578', '阀芯', 1, 'D', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010024', 'MG Segment', '1506649', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010025', 'MG Segment', '1506649', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010026', 'MG Segment', '1506649', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010027', 'MG Segment', '1506649', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010028', 'MG Segment', '1506649', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010029', 'MG Segment', '1506649', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010030', 'MG Segment', '1506649', '1398476', '溢流阀', 2, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920745208010031', 'MG Segment', '1506649', '1508006', '铭牌', 1, 'F', 8, '2025-03-14 10:52:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760170010000', 'MG Segment', '1538906', '9S8005', '堵头', 1, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010000', 'MG Segment', '1538906', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010001', 'MG Segment', '1538906', '9J0404', '堵头', 2, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010002', 'MG Segment', '1538906', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010003', 'MG Segment', '1538906', '3405470', '右手柄', 1, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010004', 'MG Segment', '1538906', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010005', 'MG Segment', '1538906', '6E4502', '堵头', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010006', 'MG Segment', '1538906', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010007', 'MG Segment', '1538906', '6E3019', '阀', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010008', 'MG Segment', '1538906', '6E5153', '弹簧', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010009', 'MG Segment', '1538906', '1082187', '堵头', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010010', 'MG Segment', '1538906', '5B9318', '钢球', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010011', 'MG Segment', '1538906', '9J0403', '弹簧', 2, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010012', 'MG Segment', '1538906', '1063659', '活塞', 1, 'B', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010013', 'MG Segment', '1538906', '6E3007', '弹簧', 1, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010014', 'MG Segment', '1538906', '1011973', '轴承座', 4, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010015', 'MG Segment', '1538906', '8T4189', '螺栓', 2, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010016', 'MG Segment', '1538906', '8T4224', '垫片', 2, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010017', 'MG Segment', '1538906', '1027412', '弹簧', 1, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010018', 'MG Segment', '1538906', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010019', 'MG Segment', '1538906', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010020', 'MG Segment', '1538906', '1011971', '杆体', 1, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010021', 'MG Segment', '1538906', '1012480', '盖板', 1, 'C', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010022', 'MG Segment', '1538906', '1024577', '阀芯', 1, 'D', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010023', 'MG Segment', '1538906', '1011984', '阀座', 1, 'E', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010024', 'MG Segment', '1538906', '8T4138', '螺栓', 2, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010025', 'MG Segment', '1538906', '1118233', '弹簧', 1, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010026', 'MG Segment', '1538906', '1011978', '盖板', 1, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010027', 'MG Segment', '1538906', '8T4189', '螺栓', 2, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010028', 'MG Segment', '1538906', '8T4224', '垫片', 2, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010029', 'MG Segment', '1538906', '1398472', '溢流阀', 2, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920760171010030', 'MG Segment', '1538906', '1540185', '铭牌', 1, 'F', 8, '2025-03-14 10:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010000', 'WL-ZL50', '2906005', '3G2683', '螺堵', 3, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010001', 'WL-ZL50', '2906005', '2S4078', 'O型圈', 3, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010002', 'WL-ZL50', '2906005', '1U1577', '螺堵', 1, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010003', 'WL-ZL50', '2906005', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010004', 'WL-ZL50', '2906005', '9S8005', '堵头', 1, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010005', 'WL-ZL50', '2906005', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010006', 'WL-ZL50', '2906005', '1U0322', '轴承', 3, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010007', 'WL-ZL50', '2906005', '7S8491', '弹簧', 3, 'A', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010008', 'WL-ZL50', '2906005', '7J7423', '阀', 3, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010009', 'WL-ZL50', '2906005', '1J8960', '弹簧', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010010', 'WL-ZL50', '2906005', '1U1578', '阀', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010011', 'WL-ZL50', '2906005', '3G4117', '盖子', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010012', 'WL-ZL50', '2906005', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010013', 'WL-ZL50', '2906005', '8T4192', '螺栓', 2, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010014', 'WL-ZL50', '2906005', '4T4932', '阀', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010015', 'WL-ZL50', '2906005', '4T4933', '阀', 1, 'B', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010016', 'WL-ZL50', '2906005', '6E6003', '阀', 1, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010017', 'WL-ZL50', '2906005', '4T9312', '盖子', 2, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010018', 'WL-ZL50', '2906005', '1H9696', 'O型圈', 2, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010019', 'WL-ZL50', '2906005', '8T4182', '螺栓', 4, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010020', 'WL-ZL50', '2906005', '5P1075', '垫圈', 4, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010021', 'WL-ZL50', '2906005', '3G8991', '弹簧', 2, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010022', 'WL-ZL50', '2906005', '3385495', '弹簧', 2, 'C', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010023', 'WL-ZL50', '2906005', '3385494', '固定器', 4, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010024', 'WL-ZL50', '2906005', '8T4198', '螺栓', 4, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010025', 'WL-ZL50', '2906005', '5P1075', '垫片', 4, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010026', 'WL-ZL50', '2906005', '0994691', '螺栓', 2, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010027', 'WL-ZL50', '2906005', '8T4223', '垫圈', 2, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010028', 'WL-ZL50', '2906005', '0041963', 'O型圈', 2, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010029', 'WL-ZL50', '2906005', '2906004', '铭牌', 1, 'D', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010030', 'WL-ZL50', '2906005', '4T9311', '盖子', 2, 'E', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010031', 'WL-ZL50', '2906005', '4D2886', '吊环', 2, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010032', 'WL-ZL50', '2906005', '3J1907', 'O型圈', 5, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010033', 'WL-ZL50', '2906005', '9S4191', '堵头', 5, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010034', 'WL-ZL50', '2906005', '3J5553', '纸垫片', 2, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010035', 'WL-ZL50', '2906005', '3J5554', '纸垫片', 4, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010036', 'WL-ZL50', '2906005', '8J4398', '盖板', 4, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010037', 'WL-ZL50', '2906005', '8J5893', '盖板', 2, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920929166010038', 'WL-ZL50', '2906005', '8T4179', '螺栓', 12, 'F', 1, '2025-03-14 10:55:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010000', 'WL-ZL50', '2011147', '3G2683', '螺堵', 3, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010001', 'WL-ZL50', '2011147', '2S4078', 'O型圈', 3, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010002', 'WL-ZL50', '2011147', '1U1577', '螺堵', 1, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010003', 'WL-ZL50', '2011147', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010004', 'WL-ZL50', '2011147', '9S8005', '堵头', 1, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010005', 'WL-ZL50', '2011147', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010006', 'WL-ZL50', '2011147', '1U0322', '轴承', 3, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010007', 'WL-ZL50', '2011147', '7S8491', '弹簧', 3, 'A', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010008', 'WL-ZL50', '2011147', '7J7423', '阀', 3, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010009', 'WL-ZL50', '2011147', '1J8960', '弹簧', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010010', 'WL-ZL50', '2011147', '1U1578', '阀', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010011', 'WL-ZL50', '2011147', '3G4117', '盖子', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010012', 'WL-ZL50', '2011147', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010013', 'WL-ZL50', '2011147', '5P2228', '螺栓', 2, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010014', 'WL-ZL50', '2011147', '4T4162', '阀', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010015', 'WL-ZL50', '2011147', '1086428', '阀', 1, 'B', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010016', 'WL-ZL50', '2011147', '2011149', '阀', 1, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010017', 'WL-ZL50', '2011147', '4T9312', '盖子', 2, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010018', 'WL-ZL50', '2011147', '1H9696', 'O型圈', 2, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010019', 'WL-ZL50', '2011147', '5S7383', '螺栓', 4, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010020', 'WL-ZL50', '2011147', '5P1075', '垫圈', 4, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010021', 'WL-ZL50', '2011147', '3G8991', '弹簧', 2, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010022', 'WL-ZL50', '2011147', '3385495', '弹簧', 2, 'C', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010023', 'WL-ZL50', '2011147', '4761915', '固定器', 4, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010024', 'WL-ZL50', '2011147', '8T9378', '螺栓', 4, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010025', 'WL-ZL50', '2011147', '5P1075', '垫片', 4, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010026', 'WL-ZL50', '2011147', '7K0734', '螺栓', 2, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010027', 'WL-ZL50', '2011147', '4D6433', '垫圈', 2, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010028', 'WL-ZL50', '2011147', '0041963', 'O型圈', 2, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010029', 'WL-ZL50', '2011147', '2011145', '铭牌', 1, 'D', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010030', 'WL-ZL50', '2011147', '4T9311', '盖子', 2, 'E', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010031', 'WL-ZL50', '2011147', '4D2886', '吊环', 2, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010032', 'WL-ZL50', '2011147', '3J1907', 'O型圈', 5, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010033', 'WL-ZL50', '2011147', '9S4191', '堵头', 5, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010034', 'WL-ZL50', '2011147', '3J5553', '纸垫片', 2, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010035', 'WL-ZL50', '2011147', '3J5554', '纸垫片', 4, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010036', 'WL-ZL50', '2011147', '8J4398', '盖板', 4, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010037', 'WL-ZL50', '2011147', '8J5893', '盖板', 2, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010038', 'WL-ZL50', '2011147', '8T9383', '螺栓', 4, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920950281010039', 'WL-ZL50', '2011147', '7X0272', '螺栓', 8, 'F', 1, '2025-03-14 10:55:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998151010000', 'IMV', '3467620', '3E6730', '橡胶密封圈', 2, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998151010001', 'IMV', '3467620', '3J1907', '橡胶密封圈', 1, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998151010002', 'IMV', '3467620', '3K0360', '橡胶密封圈', 3, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010000', 'IMV', '3467620', '9S8004', '堵头', 1, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010001', 'IMV', '3467620', '9S8005', '钢铁制塞堵', 3, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010002', 'IMV', '3467620', '2M9780', '橡胶密封圈', 8, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010003', 'IMV', '3467620', '9S8006', '钢铁制塞堵', 8, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010004', 'IMV', '3467620', '1P3708', '橡胶密封圈', 1, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010005', 'IMV', '3467620', '5P3108', '橡胶密封圈', 6, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010006', 'IMV', '3467620', '3694110', '电磁换向阀', 1, 'A1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010007', 'IMV', '3467620', '3093921', '钢铁弹簧', 1, 'B1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010008', 'IMV', '3467620', '3093922', '钢铁弹簧', 1, 'B1', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010009', 'IMV', '3467620', '3E6730', '橡胶密封圈', 4, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010010', 'IMV', '3467620', '9S8002', '钢铁制塞堵', 6, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010011', 'IMV', '3467620', '4J0523', '橡胶密封圈', 1, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010012', 'IMV', '3467620', '4J9535', '橡胶密封圈', 4, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010013', 'IMV', '3467620', '3112886', '钢铁弹簧', 1, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010014', 'IMV', '3467620', '3175154', '塑料密封圈', 1, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010015', 'IMV', '3467620', '3461635', '橡胶密封圈', 1, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010016', 'IMV', '3467620', '3J7354', '橡胶密封圈', 6, 'B2', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010017', 'IMV', '3467620', '3K0360', '橡胶密封圈', 4, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010018', 'IMV', '3467620', '9S8005', '钢铁制塞堵', 4, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010019', 'IMV', '3467620', '5P8245', '钢铁制垫圈', 4, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010020', 'IMV', '3467620', '6J2680', '橡胶密封圈', 1, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010021', 'IMV', '3467620', '8T0269', '钢铁螺栓', 8, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010022', 'IMV', '3467620', '8T0343', '钢铁制螺栓', 16, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010023', 'IMV', '3467620', '9X8256', '钢铁制垫圈', 8, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010024', 'IMV', '3467620', '3112886', '钢铁弹簧', 1, 'B3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010025', 'IMV', '3467620', '3J1907', '橡胶密封圈', 2, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010026', 'IMV', '3467620', '2828827', '阀用塞堵', 3, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010027', 'IMV', '3467620', '9S8004', '堵头', 2, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010028', 'IMV', '3467620', '4J0528', '橡胶密封圈', 1, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010029', 'IMV', '3467620', '9X8268', '钢铁制垫圈', 8, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010030', 'IMV', '3467620', '0950707', '钢铁制螺栓', 4, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010031', 'IMV', '3467620', '0950705', '钢铁制螺栓', 4, 'B4', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010032', 'IMV', '3467620', '3J1907', '橡胶密封圈', 2, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010033', 'IMV', '3467620', '6S3002', '橡胶密封圈', 2, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010034', 'IMV', '3467620', '8T2223', '钢铁制螺栓', 8, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010035', 'IMV', '3467620', '8T4121', '钢铁制垫圈', 8, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010036', 'IMV', '3467620', '3045146', '安全阀', 1, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010037', 'IMV', '3467620', '3447392', '压力变送器', 2, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010038', 'IMV', '3467620', '4485704/HE', '橡胶密封圈', 2, 'B5', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010039', 'IMV', '3467620', '3112888', '钢铁弹簧', 3, 'B6', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010040', 'IMV', '3467620', '3461634', '钢铁止动块', 4, 'B6', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010041', 'IMV', '3467620', '3576292', '塑料垫圈', 4, 'B6', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010042', 'IMV', '3467620', '3J7354', '橡胶密封圈', 4, 'B6', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010043', 'IMV', '3467620', '4J0526', '橡胶密封圈', 4, 'B6', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010044', 'IMV', '3467620', '3112888', '钢铁弹簧', 1, 'B7', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741920998152010045', 'IMV', '3467620', '3262664', '电磁换向阀', 4, 'C3', 1, '2025-03-14 10:56:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010000', 'WL-ZL50', '1167821', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010001', 'WL-ZL50', '1167821', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010002', 'WL-ZL50', '1167821', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010003', 'WL-ZL50', '1167821', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010004', 'WL-ZL50', '1167821', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010005', 'WL-ZL50', '1167821', '3J7354', 'SEAL-O-RING-STOR', 3, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010006', 'WL-ZL50', '1167821', '9S4182', 'PLUG-LD STOR', 3, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010007', 'WL-ZL50', '1167821', '4J0522', 'SEAL-O-RING', 2, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010008', 'WL-ZL50', '1167821', '4J0523', 'SEAL-O-RING', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010009', 'WL-ZL50', '1167821', '3G4135', 'PLUG-O-RING', 1, 'A', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010010', 'WL-ZL50', '1167821', '7M8485', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010011', 'WL-ZL50', '1167821', '4T4162', 'VALVE GP-D RLF-A', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010012', 'WL-ZL50', '1167821', '4T4934', 'VALVE GP-D RLF-A', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010013', 'WL-ZL50', '1167821', '4T9312', 'HOUSING', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010014', 'WL-ZL50', '1167821', '1H9696', 'SEAL-O-RING', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010015', 'WL-ZL50', '1167821', '5P1075', 'WASHER-HARD', 4, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010016', 'WL-ZL50', '1167821', '8T4182', 'BOLT-HEX HEAD', 2, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010017', 'WL-ZL50', '1167821', '3385494', 'RETAINER', 2, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010018', 'WL-ZL50', '1167821', '3385495', 'SPRING', 1, 'B', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010019', 'WL-ZL50', '1167821', '3G8991', 'SPRING', 1, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010020', 'WL-ZL50', '1167821', '8T4223', 'WASHER-HARD', 1, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010021', 'WL-ZL50', '1167821', '0994691', 'BOLT-LOCKING', 1, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010022', 'WL-ZL50', '1167821', '4T9311', 'HOUSING', 1, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010023', 'WL-ZL50', '1167821', '0041963', 'SEAL-O RING', 1, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010024', 'WL-ZL50', '1167821', '8T4198', 'BOLT-HEX HEAD', 2, 'C', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010025', 'WL-ZL50', '1167821', '3J1907', 'SEAL-O-RING-STOR', 2, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010026', 'WL-ZL50', '1167821', '9S4191', 'PLUG-EXT HEX', 2, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010027', 'WL-ZL50', '1167821', '3J5553', 'GASKET', 1, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010028', 'WL-ZL50', '1167821', '8J5893', 'COVER', 1, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010029', 'WL-ZL50', '1167821', '8T4179', 'BOLT-HEX HEAD', 6, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010030', 'WL-ZL50', '1167821', '4D2886', 'CLIP', 2, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010031', 'WL-ZL50', '1167821', '3J5554', 'GASKET', 2, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010032', 'WL-ZL50', '1167821', '8J4398', 'COVER', 2, 'D', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010033', 'WL-ZL50', '1167821', '7X2551', 'BOLT-HEX HEAD', 5, 'E', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010034', 'WL-ZL50', '1167821', '3G4113', 'COVER', 1, 'E', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010035', 'WL-ZL50', '1167821', '3G4114', 'COVER', 1, 'E', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010036', 'WL-ZL50', '1167821', '8T4244', 'NUT-HEX', 5, 'E', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741921014151010037', 'WL-ZL50', '1167821', '1647129', '铭牌', 1, 'E', 1, '2025-03-14 10:56:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755774010000', 'QD#1', '2270831', '9S8006', '塞子', 1, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010000', 'QD#1', '2270831', '2M9780', '密封圈', 1, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010001', 'QD#1', '2270831', '9S8003', '塞子', 2, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010002', 'QD#1', '2270831', '1J9671', '密封圈', 2, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010003', 'QD#1', '2270831', '5H4019', '盖子', 4, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010004', 'QD#1', '2270831', '4J0520', '密封圈', 4, 'A', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010005', 'QD#1', '2270831', '6204980', '定位环', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010006', 'QD#1', '2270831', '9T9836', '节流套', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010007', 'QD#1', '2270831', '1006211', '活塞', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010008', 'QD#1', '2270831', '3L3813', '销', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010009', 'QD#1', '2270831', '1081847', '弹簧', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010010', 'QD#1', '2270831', '6E4907', '挡圈', 1, 'B', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010011', 'QD#1', '2270831', '2343043', '盖', 1, 'C', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010012', 'QD#1', '2270831', '6V8200', '螺钉', 8, 'C', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010013', 'QD#1', '2270831', '2343451', '盖', 1, 'D', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010014', 'QD#1', '2270831', '8C3206', '法兰', 8, 'E', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010015', 'QD#1', '2270831', '2354162', '铭牌', 1, 'E', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010016', 'QD#1', '2270831', '5334159', '螺栓', 8, 'E', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010017', 'QD#1', '2270831', '8C3206', '法兰', 4, 'F', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010018', 'QD#1', '2270831', '5H4019', '盖子', 2, 'F', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741939755775010019', 'QD#1', '2270831', '4J0520', 'O型圈', 2, 'F', 4, '2025-03-14 16:09:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010000', 'QCT', '2176720', '2D6648', 'RING-RETAINING', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010001', 'QCT', '2176720', '1185086', 'SPRING', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010002', 'QCT', '2176720', '1185087', 'SPRING', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010003', 'QCT', '2176720', '1212051', 'SPRING', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010004', 'QCT', '2176720', '2176414', 'SPOOL-CONTROL', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010005', 'QCT', '2176720', '6V3965', 'ADAPTER-STR', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010006', 'QCT', '2176720', '2147568', 'SEAL-O-RING-STOR', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010007', 'QCT', '2176720', '4386138', 'RETAINER', 1, 'A', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010008', 'QCT', '2176720', '3C8388/S', 'PIN-ROLL', 2, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010009', 'QCT', '2176720', '5H6005', 'SEAL-O RING', 2, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010010', 'QCT', '2176720', '8T3998', 'BOLT-HEAD', 4, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010011', 'QCT', '2176720', '0304605', 'SEAL-O RING', 1, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010012', 'QCT', '2176720', '1552251', 'PLATE', 1, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010013', 'QCT', '2176720', '1771405', 'SPRING-STABLIZIN', 1, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010014', 'QCT', '2176720', '3161438', 'CARTRIDGE AS', 1, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010015', 'QCT', '2176720', '3265212', 'COIL AS', 1, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010016', 'QCT', '2176720', '3603679', 'PLUG AS-HD STOR', 2, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010017', 'QCT', '2176720', '3J1907', 'SEAL-O-RING-STOR', 2, 'B', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010018', 'QCT', '2176720', '1P3709', 'SEAL-RECTANGULAR', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010019', 'QCT', '2176720', '6K0806', 'STRAP-CABLE', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010020', 'QCT', '2176720', '6V0852', 'CAP-DUST', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010021', 'QCT', '2176720', '1919247', 'WASHER-SOFT', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010022', 'QCT', '2176720', '1982914', 'NUT-HEXAGON', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010023', 'QCT', '2176720', '2177195', 'PLATE-IDENT', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742002920319010024', 'QCT', '2176720', '2660531', 'CAP-CONNECTOR', 1, 'C', 2, '2025-03-15 09:42:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010000', 'QCT', '2451668', '3676001', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010001', 'QCT', '2451668', '3603681', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010002', 'QCT', '2451668', '1P3709', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010003', 'QCT', '2451668', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010004', 'QCT', '2451668', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010005', 'QCT', '2451668', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010006', 'QCT', '2451668', '4J9780', 'PLUG-NPTF(ORIFICE)', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010007', 'QCT', '2451668', '5H6005', 'SEAL-O RING', 2, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010008', 'QCT', '2451668', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010009', 'QCT', '2451668', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010010', 'QCT', '2451668', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010011', 'QCT', '2451668', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010012', 'QCT', '2451668', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010013', 'QCT', '2451668', '9S8002', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010014', 'QCT', '2451668', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010015', 'QCT', '2451668', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010016', 'QCT', '2451668', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010017', 'QCT', '2451668', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010018', 'QCT', '2451668', '4J0519', 'SEAL-O-RING', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010019', 'QCT', '2451668', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010020', 'QCT', '2451668', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010021', 'QCT', '2451668', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010022', 'QCT', '2451668', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010023', 'QCT', '2451668', '8J2379', 'VALVE', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010024', 'QCT', '2451668', '1138263', 'PISTON', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010025', 'QCT', '2451668', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010026', 'QCT', '2451668', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010027', 'QCT', '2451668', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010028', 'QCT', '2451668', '3676002', 'PLUG-LD STOR', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010029', 'QCT', '2451668', '4J2506', 'SEAL-O RING', 2, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010030', 'QCT', '2451668', '7D8048', 'SEAL-O RING', 2, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010031', 'QCT', '2451668', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010032', 'QCT', '2451668', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010033', 'QCT', '2451668', '4J0519', 'SEAL-O-RING', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010034', 'QCT', '2451668', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010035', 'QCT', '2451668', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010036', 'QCT', '2451668', '8T4223', 'WASHER-HARD', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010037', 'QCT', '2451668', '8J2306', 'STEM-VALVE', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010038', 'QCT', '2451668', '9S8005', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010039', 'QCT', '2451668', '4D2886', 'Clip', 1, 'C', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010040', 'QCT', '2451668', '2465773', 'PLATE-IDENT', 1, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010041', 'QCT', '2451668', '4224594', 'VALVE GP', 1, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010042', 'QCT', '2451668', '3E3882', 'EYE-Bolt', 1, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010043', 'QCT', '2451668', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010044', 'QCT', '2451668', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010045', 'QCT', '2451668', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010046', 'QCT', '2451668', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010047', 'QCT', '2451668', '9P8217', 'WASHER', 4, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010048', 'QCT', '2451668', '4168724', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010049', 'QCT', '2451668', '2D6648', 'RING-RETAINING', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010050', 'QCT', '2451668', '1185086', 'SPRING', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010051', 'QCT', '2451668', '1185087', 'SPRING', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010052', 'QCT', '2451668', '1212051', 'SPRING', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010053', 'QCT', '2451668', '2176414', 'SPOOL-CONTROL', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010054', 'QCT', '2451668', '6V3965', 'ADAPTER-STR', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010055', 'QCT', '2451668', '2147568', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010056', 'QCT', '2451668', '4386138', 'RETAINER', 2, 'E', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010057', 'QCT', '2451668', '3C8388/S', 'PIN-ROLL', 4, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010058', 'QCT', '2451668', '8T3998', 'BOLT-HEAD', 8, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010059', 'QCT', '2451668', '0304605', 'SEAL-O RING', 2, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010060', 'QCT', '2451668', '1552251', 'PLATE', 2, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010061', 'QCT', '2451668', '1771405', 'SPRING-STABLIZIN', 2, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010062', 'QCT', '2451668', '3161438', 'CARTRIDGE AS', 2, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010063', 'QCT', '2451668', '3265212', 'COIL AS', 2, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010064', 'QCT', '2451668', '3603679', 'PLUG-HD STOR', 4, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010065', 'QCT', '2451668', '3J1907', 'SEAL-O-RING-STOR', 4, 'F', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010066', 'QCT', '2451668', '1P3709', 'SEAL-RECTANGULAR', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010067', 'QCT', '2451668', '5H6005', 'SEAL-O RING', 4, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010068', 'QCT', '2451668', '6K0806', 'STRAP-CABLE', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010069', 'QCT', '2451668', '6V0852', 'CAP-DUST', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010070', 'QCT', '2451668', '1919247', 'WASHER', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010071', 'QCT', '2451668', '1982914', 'NUT-HEXAGON', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010072', 'QCT', '2451668', '2177195', 'PLATE-IDENT', 2, 'G', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010073', 'QCT', '2451668', '2J2668', 'FLANGE-COVER', 4, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010074', 'QCT', '2451668', '2J5608', 'FLANGE-COVER', 1, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010075', 'QCT', '2451668', '4J0524', 'SEAL-O-RING', 4, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010076', 'QCT', '2451668', '4J0527', 'SEAL-O-RING', 1, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010077', 'QCT', '2451668', '5P2566', 'BOLT-HEX HEAD', 20, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010078', 'QCT', '2451668', '8T4223', 'WASHER-HARD', 20, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010079', 'QCT', '2451668', '2660531', 'CAP-CONNECTOR', 2, 'I', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010080', 'QCT', '2451668', '1P4579', 'FLANGE-SPLIT', 8, 'J', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742003960573010081', 'QCT', '2451668', '1P4582', 'FLANGE-SPLIT', 2, 'J', 1, '2025-03-15 09:59:21', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010000', 'QCT', '6I9476', '5H8985', 'PIN-SPRING', 1, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010001', 'QCT', '6I9476', '8E8439', 'DOWEL', 1, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010002', 'QCT', '6I9476', '9S8001', 'PLUG-LDSTOR', 7, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010003', 'QCT', '6I9476', '2385078', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010004', 'QCT', '6I9476', '4B9880', 'BALL', 2, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356835010005', 'QCT', '6I9476', '8P7386', 'SPOOL', 1, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010000', 'QCT', '6I9476', '4M2381', 'SPRING', 2, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010001', 'QCT', '6I9476', '1S1636', 'RETAINER', 2, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010002', 'QCT', '6I9476', '1S1638', 'RING-RETAINING', 2, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010003', 'QCT', '6I9476', '6Y8049', 'SPOOL', 1, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010004', 'QCT', '6I9476', '5M2504', 'SLUG', 2, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010005', 'QCT', '6I9476', '6I9477', 'PLATE-IDENT', 1, 'A', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010006', 'QCT', '6I9476', '9S8008', 'PLUG-LDSTOR', 3, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356837010007', 'QCT', '6I9476', '2385082', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010000', 'QCT', '6I9476', '9W7410', 'SPRING', 1, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010001', 'QCT', '6I9476', '6V3683', 'SEAL-O-RING', 1, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010002', 'QCT', '6I9476', '5J2721', 'SHIM', 2, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010003', 'QCT', '6I9476', '6J3993', 'SHIM', 2, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010004', 'QCT', '6I9476', '5J1036', 'SHIM', 2, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010005', 'QCT', '6I9476', '9M1974', 'WASHER-HARD', 1, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010006', 'QCT', '6I9476', '0S1618', 'BOLT', 2, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010007', 'QCT', '6I9476', '9G9150', 'CLIP', 1, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010008', 'QCT', '6I9476', '9S8004', 'PLUG-LDSTOR', 3, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010009', 'QCT', '6I9476', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010010', 'QCT', '6I9476', '9P0683', 'SPRING', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010011', 'QCT', '6I9476', '8L2777', 'SEAL-O-RING', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010012', 'QCT', '6I9476', '3706346', 'ORIFICEAS', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010013', 'QCT', '6I9476', '9D7884', 'SPRING', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010014', 'QCT', '6I9476', '6Y4541', 'PISTON-SELECTOR', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356838010015', 'QCT', '6I9476', '6Y4542', 'PISTON-LOAD', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356839010000', 'QCT', '6I9476', '9J1330', 'SHIM', 2, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356839010001', 'QCT', '6I9476', '2S0675', 'SPACER', 2, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356839010002', 'QCT', '6I9476', '8J4452', 'SHIM', 2, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356839010003', 'QCT', '6I9476', '6Y7267', 'SPRING', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010000', 'QCT', '6I9476', '8E6144', 'SPRING', 1, 'C', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010001', 'QCT', '6I9476', '8E4592', 'STOP', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010002', 'QCT', '6I9476', '5L9018', 'BOLT-SOCKETHEAD', 2, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010003', 'QCT', '6I9476', '0617540', 'SEAL-O-RING', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010004', 'QCT', '6I9476', '2B2695', 'BOLT', 2, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010005', 'QCT', '6I9476', '6Y4538', 'COVER', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356840010006', 'QCT', '6I9476', '9W6964', 'VALVEAS-EXHAUST', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010000', 'QCT', '6I9476', '9S8003', 'PLUG-LDSTOR', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010001', 'QCT', '6I9476', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010002', 'QCT', '6I9476', '3023809', 'VALVEGP-SOL', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010003', 'QCT', '6I9476', '6V3965', 'ADAPTER-STR', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010004', 'QCT', '6I9476', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010005', 'QCT', '6I9476', '8E8867', 'COVER', 1, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010006', 'QCT', '6I9476', '8E8868', 'GASKET', 1, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356841010007', 'QCT', '6I9476', '0S1618', 'BOLT', 4, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356842010000', 'QCT', '6I9476', '9M1974', 'WASHER-HARD', 4, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356845010000', 'QCT', '6I9476', '9G3695', 'PLUG-SEALING', 2, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010000', 'QCT', '6I9476', '7N9738', 'HOUSING-RECP', 1, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010001', 'QCT', '6I9476', '6V0852', 'CAP-DUST', 1, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010002', 'QCT', '6I9476', '5M2894', 'WASHER-HARD', 3, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010003', 'QCT', '6I9476', '5F4899', 'BOLT', 3, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010004', 'QCT', '6I9476', '6V6353', 'SEAL-O-RING', 1, 'E', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742005356847010005', 'QCT', '6I9476', '6Y4539', 'COVER', 1, 'F', 1, '2025-03-15 10:22:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410253010000', 'COMBO', '5936452', '9S8009', 'PLUG-LD STOR', 1, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010000', 'COMBO', '5936452', '4K1388', 'SEAL-O-RING-STOR', 1, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010001', 'COMBO', '5936452', '9S4189', 'PLUG-O-RING', 1, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010002', 'COMBO', '5936452', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010003', 'COMBO', '5936452', '9S4182', 'PLUG-LD STOR', 3, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010004', 'COMBO', '5936452', '3J7354', 'SEAL-O-RING-STOR', 3, 'A', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010005', 'COMBO', '5936452', '9S4183', 'PLUG-LD STOR', 1, 'B', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010006', 'COMBO', '5936452', '3D2824', 'SEAL-O-RING-STOR', 1, 'B', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010007', 'COMBO', '5936452', '6V8647', 'ADAPTER-STR', 2, 'B', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010008', 'COMBO', '5936452', '3J7354', 'SEAL-O-RING-STOR', 2, 'B', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010009', 'COMBO', '5936452', '4J5477', 'SEAL-O-RING-ORFS', 2, 'B', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010010', 'COMBO', '5936452', '3603693', 'PLUG-HD STOR', 3, 'C', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010011', 'COMBO', '5936452', '3K0360', 'SEAL-O-RING-STOR', 3, 'C', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010012', 'COMBO', '5936452', '9S8003', 'PLUG-LD STOR', 1, 'C', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010013', 'COMBO', '5936452', '1J9671', 'SEAL-O-RING', 1, 'C', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010014', 'COMBO', '5936452', '1318350', 'VALVE GP-BASIC', 1, 'C', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010015', 'COMBO', '5936452', '3K0360', 'SEAL-O-RING-STOR', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010016', 'COMBO', '5936452', '6V8398', 'SEAL-O-RING-ORFS', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010017', 'COMBO', '5936452', '1007000', 'Ring-back up', 2, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010018', 'COMBO', '5936452', '3676001', 'PLUG AS-HD STOR', 2, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010019', 'COMBO', '5936452', '3676002', 'PLUG AS-HD STOR', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010020', 'COMBO', '5936452', '3T8236', 'SPRING', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010021', 'COMBO', '5936452', '1H0337', 'VALVE', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010022', 'COMBO', '5936452', '4T1860', 'VALVE GP-SHTL -B', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010023', 'COMBO', '5936452', '8J6815', 'PLUG-NPTF', 2, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010024', 'COMBO', '5936452', '3P9498', 'PLUG-NPTF', 1, 'D', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010025', 'COMBO', '5936452', '9F6705', 'SPRING', 1, 'E', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010026', 'COMBO', '5936452', '5M2057', 'SEAL-O-RING', 1, 'E', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010027', 'COMBO', '5936452', '6V5230', 'BOLT-HEX HEAD', 2, 'E', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010028', 'COMBO', '5936452', '8M3175', 'WASHER-HARD', 2, 'E', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010029', 'COMBO', '5936452', '1006021', 'VALVE GP-RELIEF', 1, 'E1', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010030', 'COMBO', '5936452', '6E1924', 'SPRING', 1, 'E1', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010031', 'COMBO', '5936452', '6E1925', 'SPRING', 1, 'E1', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010032', 'COMBO', '5936452', '5956711', 'PLATE-IDENT', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010033', 'COMBO', '5936452', '3307743', 'VALVE GP-D RLF-A', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010034', 'COMBO', '5936452', '6E1923', 'TUBE AS.', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010035', 'COMBO', '5936452', '8T3611', 'ADAPTER-STR', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010036', 'COMBO', '5936452', '6V8400', 'SEAL-O-RING-ORFS', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010037', 'COMBO', '5936452', '2S4078', 'SEAL-O-RING-STOR', 1, 'F', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010038', 'COMBO', '5936452', '6V9834', 'CAP-ORFS', 1, 'G', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010039', 'COMBO', '5936452', '4T4935', 'VALVE GP-D RLF-', 1, 'G', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010040', 'COMBO', '5936452', '2191891', 'PLUG AS.', 2, 'G', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010041', 'COMBO', '5936452', '2965987', 'PLUG', 1, 'H', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010042', 'COMBO', '5936452', '2191893', 'PLUG AS.', 4, 'H', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742007410254010043', 'COMBO', '5936452', '5796930', 'FILM-PROTECTION', 1, 'H', 4, '2025-03-15 10:56:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798106010000', 'MG Segment', '5153350', '3676003', '堵头', 1, 'A', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010000', 'MG Segment', '5153350', '9J0404', '堵头', 2, 'A', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010001', 'MG Segment', '5153350', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010002', 'MG Segment', '5153350', '3405472', '右手柄', 1, 'A', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010003', 'MG Segment', '5153350', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010004', 'MG Segment', '5153350', '3675511', '堵头', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010005', 'MG Segment', '5153350', '3J7354', '密封O型圈', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010006', 'MG Segment', '5153350', '6E3019', '阀', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010007', 'MG Segment', '5153350', '6E5153', '弹簧', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010008', 'MG Segment', '5153350', '3307751', '堵头', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010009', 'MG Segment', '5153350', '5B9318', '钢球', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010010', 'MG Segment', '5153350', '9J0403', '弹簧', 2, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010011', 'MG Segment', '5153350', '1063659', '活塞', 1, 'B', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010012', 'MG Segment', '5153350', '6E3007', '弹簧', 1, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010013', 'MG Segment', '5153350', '1011973', '轴承座', 4, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010014', 'MG Segment', '5153350', '8T4189', '螺栓', 2, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010015', 'MG Segment', '5153350', '8T4224', '垫片', 2, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010016', 'MG Segment', '5153350', '1027412', '弹簧', 1, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010017', 'MG Segment', '5153350', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010018', 'MG Segment', '5153350', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010019', 'MG Segment', '5153350', '1011971', '杆体', 1, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010020', 'MG Segment', '5153350', '1012480', '盖板', 1, 'C', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010021', 'MG Segment', '5153350', '1177892', '阀芯', 1, 'D', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010022', 'MG Segment', '5153350', '1011984', '阀座', 1, 'E', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010023', 'MG Segment', '5153350', '8T4138', '螺栓', 2, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010024', 'MG Segment', '5153350', '1118233', '弹簧', 1, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010025', 'MG Segment', '5153350', '1011978', '盖板', 1, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010026', 'MG Segment', '5153350', '8T4189', '螺栓', 2, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010027', 'MG Segment', '5153350', '8T4224', '垫片', 2, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010028', 'MG Segment', '5153350', '1398472', '溢流阀', 1, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742008798107010029', 'MG Segment', '5153350', '5153362', '铭牌', 1, 'F', 8, '2025-03-15 11:19:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010000', 'MG Segment', '1242885', '9S8005', '堵头', 1, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010001', 'MG Segment', '1242885', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010002', 'MG Segment', '1242885', '9J0404', '堵头', 2, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010003', 'MG Segment', '1242885', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010004', 'MG Segment', '1242885', '3405470', '右手柄', 1, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010005', 'MG Segment', '1242885', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010006', 'MG Segment', '1242885', '6E4502', '堵头', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010007', 'MG Segment', '1242885', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010008', 'MG Segment', '1242885', '6E3019', '阀', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010009', 'MG Segment', '1242885', '6E5153', '弹簧', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010010', 'MG Segment', '1242885', '1082187', '堵头', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010011', 'MG Segment', '1242885', '5B9318', '钢球', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010012', 'MG Segment', '1242885', '9J0403', '弹簧', 2, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010013', 'MG Segment', '1242885', '1063659', '活塞', 1, 'B', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010014', 'MG Segment', '1242885', '6E3007', '弹簧', 1, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010015', 'MG Segment', '1242885', '1011973', '轴承座', 4, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010016', 'MG Segment', '1242885', '8T4189', '螺栓', 2, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010017', 'MG Segment', '1242885', '8T4224', '垫片', 2, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010018', 'MG Segment', '1242885', '1027412', '弹簧', 1, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010019', 'MG Segment', '1242885', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010020', 'MG Segment', '1242885', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010021', 'MG Segment', '1242885', '1011971', '杆体', 1, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010022', 'MG Segment', '1242885', '1012480', '盖板', 1, 'C', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010023', 'MG Segment', '1242885', '1024574', '阀芯', 1, 'D', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010024', 'MG Segment', '1242885', '1011984', '阀座', 1, 'E', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010025', 'MG Segment', '1242885', '8T4138', '螺栓', 2, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010026', 'MG Segment', '1242885', '1118233', '弹簧', 1, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010027', 'MG Segment', '1242885', '1011978', '盖板', 1, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010028', 'MG Segment', '1242885', '8T4189', '螺栓', 2, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010029', 'MG Segment', '1242885', '8T4224', '垫片', 2, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010030', 'MG Segment', '1242885', '2227774', '溢流阀', 1, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009022213010031', 'MG Segment', '1242885', '1242882', '铭牌', 1, 'F', 8, '2025-03-15 11:23:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010000', 'B Segment', '6E5134', '6V5391', '橡胶密封圈', 2, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010001', 'B Segment', '6E5134', '5P5874', '橡胶密封圈', 1, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010002', 'B Segment', '6E5134', '4T5945', '塑料密封圈', 1, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010003', 'B Segment', '6E5134', '9H6761', '橡胶密封圈', 1, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010004', 'B Segment', '6E5134', '9T4685', '钢铁制调整垫圈', 6, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010005', 'B Segment', '6E5134', '9T4697', '橡胶护套', 1, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010006', 'B Segment', '6E5134', '9T4683', '阀用盖板', 1, 'A', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010007', 'B Segment', '6E5134', '4T2691', '阀座', 1, 'B', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010008', 'B Segment', '6E5134', '9T4684', '阀座', 1, 'C', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010009', 'B Segment', '6E5134', '4T5795', '滑动轴承', 2, 'C', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010010', 'B Segment', '6E5134', '6L5897', '钢铁制螺栓', 2, 'C', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742009644872010011', 'B Segment', '6E5134', '8T0334', '钢铁制垫圈', 2, 'C', 6, '2025-03-15 11:34:05', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010000', 'QCT', '1483530', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010001', 'QCT', '1483530', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010002', 'QCT', '1483530', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010003', 'QCT', '1483530', '4J9780', 'PLUG-NPTF(ORIFICE)', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010004', 'QCT', '1483530', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010005', 'QCT', '1483530', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010006', 'QCT', '1483530', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010007', 'QCT', '1483530', '8J2379', 'VALVE', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190127010008', 'QCT', '1483530', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010000', 'QCT', '1483530', '9S8002', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010001', 'QCT', '1483530', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010002', 'QCT', '1483530', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010003', 'QCT', '1483530', '3603681', 'PLUG-HD STOR', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010004', 'QCT', '1483530', '3676001', 'PLUG AS-HD STOR', 4, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010005', 'QCT', '1483530', '3676002', 'PLUG AS-HD STOR', 1, 'A', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010006', 'QCT', '1483530', '1P3709', 'SEAL-RECTANGULAR', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010007', 'QCT', '1483530', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010008', 'QCT', '1483530', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010009', 'QCT', '1483530', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010010', 'QCT', '1483530', '4J0519', 'SEAL-O-RING', 2, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010011', 'QCT', '1483530', '4J2506', 'SEAL-O RING', 2, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010012', 'QCT', '1483530', '5H6005', 'SEAL-O RING', 2, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010013', 'QCT', '1483530', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010014', 'QCT', '1483530', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010015', 'QCT', '1483530', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010016', 'QCT', '1483530', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010017', 'QCT', '1483530', '7D8048', 'SEAL-O RING', 2, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010018', 'QCT', '1483530', '8B4624', 'SHIM', 4, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010019', 'QCT', '1483530', '1138263', 'PISTON', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010020', 'QCT', '1483530', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010021', 'QCT', '1483530', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010022', 'QCT', '1483530', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010023', 'QCT', '1483530', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010024', 'QCT', '1483530', '4D2886', 'CLIP', 1, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010025', 'QCT', '1483530', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010026', 'QCT', '1483530', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010027', 'QCT', '1483530', '8T4223', 'WASHER-HARD', 1, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010028', 'QCT', '1483530', '8J2306', 'STEM-VALVE', 1, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010029', 'QCT', '1483530', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010030', 'QCT', '1483530', '9S8005', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010031', 'QCT', '1483530', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010032', 'QCT', '1483530', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010033', 'QCT', '1483530', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010034', 'QCT', '1483530', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010035', 'QCT', '1483530', '9P8217', 'WASHER', 4, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010036', 'QCT', '1483530', '1526745', 'PLATE-IDENT', 1, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010037', 'QCT', '1483530', '4224594', 'VALVE GP-RELIEF', 1, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010038', 'QCT', '1483530', '4230466', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010039', 'QCT', '1483530', '1P4579', 'FLANGE-SPLIT', 8, 'E', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010040', 'QCT', '1483530', '1P4582', 'FLANGE-SPLIT', 2, 'E', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010041', 'QCT', '1483530', '8T4223', 'WASHER-HARD', 20, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010042', 'QCT', '1483530', '2J2668', 'FLANGE-COVER', 4, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010043', 'QCT', '1483530', '2J5608', 'FLANGE-COVER', 1, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010044', 'QCT', '1483530', '4J0524', 'SEAL-O-RING', 4, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190128010045', 'QCT', '1483530', '4J0527', 'SEAL-O-RING', 1, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190129010000', 'QCT', '1483530', '5P2566', 'BOLT-HEX HEAD', 20, 'F', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190129010001', 'QCT', '1483530', '6E0630', 'VALVE', 1, 'G', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190129010002', 'QCT', '1483530', '1067683', 'ADAPTER', 1, 'G', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190129010003', 'QCT', '1483530', '1355359', 'STEM', 1, 'G', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176190129010004', 'QCT', '1483530', '1185081', 'ACTUATOR GP', 2, 'H', 1, '2025-03-17 09:49:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010000', 'QCT', '2451669', '1P3709', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010001', 'QCT', '2451669', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010002', 'QCT', '2451669', '4J9780', 'PLUG-NPTF(ORIFICE)', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010003', 'QCT', '2451669', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010004', 'QCT', '2451669', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010005', 'QCT', '2451669', '5H6005', 'SEAL-O RING', 2, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010006', 'QCT', '2451669', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010007', 'QCT', '2451669', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010008', 'QCT', '2451669', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010009', 'QCT', '2451669', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010010', 'QCT', '2451669', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010011', 'QCT', '2451669', '9S8002', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010012', 'QCT', '2451669', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010013', 'QCT', '2451669', '3603681', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010014', 'QCT', '2451669', '3676001', 'PLUG-LD STOR', 4, 'A', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010015', 'QCT', '2451669', '4J0519', 'SEAL-O-RING', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010016', 'QCT', '2451669', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010017', 'QCT', '2451669', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010018', 'QCT', '2451669', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010019', 'QCT', '2451669', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010020', 'QCT', '2451669', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010021', 'QCT', '2451669', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010022', 'QCT', '2451669', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010023', 'QCT', '2451669', '8J2379', 'VALVE', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010024', 'QCT', '2451669', '1138263', 'PISTON', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010025', 'QCT', '2451669', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010026', 'QCT', '2451669', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010027', 'QCT', '2451669', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010028', 'QCT', '2451669', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010029', 'QCT', '2451669', '4J0519', 'SEAL-O-RING', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010030', 'QCT', '2451669', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010031', 'QCT', '2451669', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010032', 'QCT', '2451669', '8T4223', 'WASHER-HARD', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010033', 'QCT', '2451669', '8J2306', 'STEM-VALVE', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010034', 'QCT', '2451669', '9S8005', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010035', 'QCT', '2451669', '4D2886', 'Clip', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010036', 'QCT', '2451669', '4J2506', 'SEAL-O RING', 2, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010037', 'QCT', '2451669', '7D8048', 'SEAL-O RING', 2, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010038', 'QCT', '2451669', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010039', 'QCT', '2451669', '3676002', 'PLUG-LD STOR', 1, 'C', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010040', 'QCT', '2451669', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010041', 'QCT', '2451669', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010042', 'QCT', '2451669', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010043', 'QCT', '2451669', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010044', 'QCT', '2451669', '9P8217', 'WASHER', 4, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010045', 'QCT', '2451669', '2465774', 'PLATE-IDENT', 1, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010046', 'QCT', '2451669', '4224594', 'VALVE GP-RELIEF(DIRECT OPERATED)-1-7 (A)', 1, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010047', 'QCT', '2451669', '4230466', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010048', 'QCT', '2451669', '3E3882', 'EYE-Bolt', 1, 'D', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010049', 'QCT', '2451669', '2D6648', 'RING-RETAINING', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010050', 'QCT', '2451669', '1185086', 'SPRING', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010051', 'QCT', '2451669', '1185087', 'SPRING', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215965010052', 'QCT', '2451669', '1212051', 'SPRING', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010000', 'QCT', '2451669', '2176414', 'SPOOL-CONTROL', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010001', 'QCT', '2451669', '6V3965', 'ADAPTER-STR', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010002', 'QCT', '2451669', '2147568', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010003', 'QCT', '2451669', '4386138', 'RETAINER', 2, 'E', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010004', 'QCT', '2451669', '3C8388/S', 'PIN-ROLL', 4, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010005', 'QCT', '2451669', '8T3998', 'BOLT-HEAD', 8, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010006', 'QCT', '2451669', '0304605', 'SEAL-O RING', 2, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010007', 'QCT', '2451669', '1552251', 'PLATE', 2, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010008', 'QCT', '2451669', '1771405', 'SPRING-STABLIZIN', 2, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010009', 'QCT', '2451669', '3161438', 'CARTRIDGE AS', 2, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010010', 'QCT', '2451669', '3265212', 'COIL AS', 2, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010011', 'QCT', '2451669', '3603679', 'PLUG-HD STOR', 4, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010012', 'QCT', '2451669', '3J1907', 'SEAL-O-RING-STOR', 4, 'F', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010013', 'QCT', '2451669', '8B4624', 'SHIM', 4, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010014', 'QCT', '2451669', '1P3709', 'SEAL-RECTANGULAR', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010015', 'QCT', '2451669', '5H6005', 'SEAL-O RING', 4, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010016', 'QCT', '2451669', '6K0806', 'STRAP-CABLE', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010017', 'QCT', '2451669', '6V0852', 'CAP-DUST', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010018', 'QCT', '2451669', '1919247', 'WASHER', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010019', 'QCT', '2451669', '1982914', 'NUT-HEXAGON', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010020', 'QCT', '2451669', '2177195', 'PLATE-IDENT', 2, 'G', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010021', 'QCT', '2451669', '2J2668', 'FLANGE-COVER', 4, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010022', 'QCT', '2451669', '2J5608', 'FLANGE-COVER', 1, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010023', 'QCT', '2451669', '4J0527', 'SEAL-O-RING', 1, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010024', 'QCT', '2451669', '5P2566', 'BOLT-HEX HEAD', 20, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010025', 'QCT', '2451669', '8T4223', 'WASHER-HARD', 20, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010026', 'QCT', '2451669', '2660531', 'CAP-CONNECTOR', 2, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010027', 'QCT', '2451669', '4J0524', 'SEAL-O-RING', 4, 'I', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010028', 'QCT', '2451669', '1P4579', 'FLANGE-SPLIT', 8, 'J', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176215980010029', 'QCT', '2451669', '1P4582', 'FLANGE-SPLIT', 2, 'J', 1, '2025-03-17 09:50:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515399010000', 'MTV', '4832252', '1935463', 'SPOOL', 1, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515399010001', 'MTV', '4832252', '5M9622', 'SPACER', 1, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010000', 'MTV', '4832252', '5M9624', 'SPACER', 3, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010001', 'MTV', '4832252', '1W9860', 'SPRING', 1, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010002', 'MTV', '4832252', '8M4992', 'SEAL-O RING', 1, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010003', 'MTV', '4832252', '8M4986', 'SEAL-O-RING', 1, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010004', 'MTV', '4832252', '4M8239', 'COVER', 2, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010005', 'MTV', '4832252', '8T4136', 'BOLT-HEX HEAD', 4, 'A', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010006', 'MTV', '4832252', '3603692', 'PLUG-HD STOR', 2, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010007', 'MTV', '4832252', '2147568', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010008', 'MTV', '4832252', '9S4185', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010009', 'MTV', '4832252', '2385080', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010010', 'MTV', '4832252', '4832253', 'PLATE-IDENT', 1, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010011', 'MTV', '4832252', '7J0402', 'COVER', 1, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010012', 'MTV', '4832252', '3J6933', 'GASKET', 1, 'B', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010013', 'MTV', '4832252', '8T4192', 'BOLT-HEX HEAD', 4, 'C', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010014', 'MTV', '4832252', '2378021', 'COVER', 1, 'C', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010015', 'MTV', '4832252', '8E1917', 'GASKET', 1, 'C', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010016', 'MTV', '4832252', '8T4178', 'BOLT-HEX HEAD', 3, 'C', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742176515400010017', 'MTV', '4832252', '8T4121', 'WASHER-HARD', 3, 'C', 1, '2025-03-17 09:55:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604303010000', 'Monoblock Valve', '5256758', '1T0936', 'PLUG-PIPE', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010000', 'Monoblock Valve', '5256758', '7T6496', 'PLUG', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010001', 'Monoblock Valve', '5256758', '1014845', 'PLUG-NPTF', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010002', 'Monoblock Valve', '5256758', '1483483', 'PLUG', 7, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010003', 'Monoblock Valve', '5256758', '7J0204', 'SEAL-O-RING', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010004', 'Monoblock Valve', '5256758', '9S8007', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010005', 'Monoblock Valve', '5256758', '2828827', 'PLUG', 1, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010006', 'Monoblock Valve', '5256758', '3676002', 'PLUG AS-HD STOR', 4, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010007', 'Monoblock Valve', '5256758', '3676003', 'PLUG AS-HD STOR', 2, 'A1', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010008', 'Monoblock Valve', '5256758', '9J5754', 'SPRING', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010009', 'Monoblock Valve', '5256758', '2M9780', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010010', 'Monoblock Valve', '5256758', '9S4190', 'PLUG-LD STOR', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010011', 'Monoblock Valve', '5256758', '3631613', 'BOLT', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010012', 'Monoblock Valve', '5256758', '3603681', 'PLUG-HD STOR', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010013', 'Monoblock Valve', '5256758', '6061170', 'VALVE GP-D RLF-C', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010014', 'Monoblock Valve', '5256758', '4231786', 'RETAINER', 2, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010015', 'Monoblock Valve', '5256758', '4231787', 'SPRING', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010016', 'Monoblock Valve', '5256758', '4555822', 'VALVE GP-RLF -A', 1, 'A2', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010017', 'Monoblock Valve', '5256758', '9X8256', 'WASHER', 4, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010018', 'Monoblock Valve', '5256758', '3J1907', 'SEAL-O-RING-STOR', 2, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010019', 'Monoblock Valve', '5256758', '9S8004', 'PLUG-LD STOR', 2, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010020', 'Monoblock Valve', '5256758', '2828827', 'PLUG', 9, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010021', 'Monoblock Valve', '5256758', '3884493', 'VALVE GP-CHECK', 2, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010022', 'Monoblock Valve', '5256758', '4572451', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010023', 'Monoblock Valve', '5256758', '6V5759', 'SEAL-O-RING', 4, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010024', 'Monoblock Valve', '5256758', '3979397', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010025', 'Monoblock Valve', '5256758', '1234750', 'VALVE-CHECK', 1, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010026', 'Monoblock Valve', '5256758', '1488378', 'ADAPTER AS', 1, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010027', 'Monoblock Valve', '5256758', '3J1907', 'SEAL-O-RING-STOR', 2, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010028', 'Monoblock Valve', '5256758', '9S4191', 'PLUG-LD STOR', 2, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010029', 'Monoblock Valve', '5256758', '2928061', 'PLUG', 5, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010030', 'Monoblock Valve', '5256758', '3685096', 'TUBE AS.', 1, 'A4', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010031', 'Monoblock Valve', '5256758', '6J2419', 'SEAL-O RING', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010032', 'Monoblock Valve', '5256758', '8T4138', 'BOLT-HEX HEAD', 2, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010033', 'Monoblock Valve', '5256758', '3J1907', 'SEAL-O-RING-STOR', 5, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010034', 'Monoblock Valve', '5256758', '9S4191', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010035', 'Monoblock Valve', '5256758', '3J7354', 'SEAL-O-RING-STOR', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010036', 'Monoblock Valve', '5256758', '9S4182', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010037', 'Monoblock Valve', '5256758', '9S8004', 'PLUG-LD STOR', 4, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010038', 'Monoblock Valve', '5256758', '7J0204', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010039', 'Monoblock Valve', '5256758', '9S8007', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010040', 'Monoblock Valve', '5256758', '2344869', 'VALVE GP-MAKE UP', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010041', 'Monoblock Valve', '5256758', '3428997', 'VALVE GP-D RLF-A', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010042', 'Monoblock Valve', '5256758', '3632687', 'HOUSING', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010043', 'Monoblock Valve', '5256758', '3965678', 'VALVE GP-P RLF-A', 1, 'A5', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010044', 'Monoblock Valve', '5256758', '6V5393', 'SEAL-O RING', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010045', 'Monoblock Valve', '5256758', '7M8485', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010046', 'Monoblock Valve', '5256758', '9W7783', 'PLUG', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010047', 'Monoblock Valve', '5256758', '9S4191', 'PLUG-LD STOR', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010048', 'Monoblock Valve', '5256758', '3J1907', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010049', 'Monoblock Valve', '5256758', '3568547', 'SPOOL', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010050', 'Monoblock Valve', '5256758', '3568548', 'SPOOL', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010051', 'Monoblock Valve', '5256758', '3631610', 'SPRING', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010052', 'Monoblock Valve', '5256758', '4519131', 'PLUG-RETAINER', 2, 'A6', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010053', 'Monoblock Valve', '5256758', '3S9233', 'SEAL-O-RING', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010054', 'Monoblock Valve', '5256758', '4J5309', '4J5309 RING', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010055', 'Monoblock Valve', '5256758', '6J3134', 'SEAL-O RING', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010056', 'Monoblock Valve', '5256758', '8T4138', 'BOLT-HEX HEAD', 4, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010057', 'Monoblock Valve', '5256758', '7M8485', 'SEAL-O-RING-STOR', 2, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010058', 'Monoblock Valve', '5256758', '9S4181', 'PLUG-LD STOR', 2, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010059', 'Monoblock Valve', '5256758', '3338242', 'VALVE GP-SOL', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010060', 'Monoblock Valve', '5256758', '3705764', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010061', 'Monoblock Valve', '5256758', '4955303', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010062', 'Monoblock Valve', '5256758', '6V0357', 'SEAL-O RING', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010063', 'Monoblock Valve', '5256758', '6V7607', 'WASHER-HARD', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010064', 'Monoblock Valve', '5256758', '2404695', 'RING-BACKUP', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010065', 'Monoblock Valve', '5256758', '2841010', 'Spring', 2, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010066', 'Monoblock Valve', '5256758', '2841011', 'SPRING', 2, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010067', 'Monoblock Valve', '5256758', '3594661', 'BOLT', 2, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010068', 'Monoblock Valve', '5256758', '3632697', 'RETAINER', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010069', 'Monoblock Valve', '5256758', '3632698', 'STEM-VALVE', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010070', 'Monoblock Valve', '5256758', '3964852', 'SEAL-O-RING', 1, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010071', 'Monoblock Valve', '5256758', '4948090', 'RETAINER', 4, 'A8', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010072', 'Monoblock Valve', '5256758', '4J5309', '4J5309 RING', 1, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010073', 'Monoblock Valve', '5256758', '6K6307', 'SEAL-O-RING', 1, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010074', 'Monoblock Valve', '5256758', '8F3469', 'SEAL-O RING', 1, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010075', 'Monoblock Valve', '5256758', '2256948', 'SEAL-O-RING', 2, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010076', 'Monoblock Valve', '5256758', '2369832', 'SPRING', 2, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010077', 'Monoblock Valve', '5256758', '3568561', 'VALVE', 2, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010078', 'Monoblock Valve', '5256758', '3632692', 'SPRING', 1, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010079', 'Monoblock Valve', '5256758', '3948568', 'PLUG-RETAINER', 1, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010080', 'Monoblock Valve', '5256758', '5200312', 'VALVE GP-P CHK', 2, 'A9', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010081', 'Monoblock Valve', '5256758', '8T4138', 'BOLT-HEX HEAD', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010082', 'Monoblock Valve', '5256758', '9S4191', 'PLUG-LD STOR', 2, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010083', 'Monoblock Valve', '5256758', '3J1907', 'SEAL-O-RING-STOR', 2, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010084', 'Monoblock Valve', '5256758', '1919247', 'WASHER', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010085', 'Monoblock Valve', '5256758', '1982914', 'NUT-HEXAGON', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010086', 'Monoblock Valve', '5256758', '3128629', 'COIL AS', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010087', 'Monoblock Valve', '5256758', '3161438', 'CARTRIDGE AS', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010088', 'Monoblock Valve', '5256758', '3617213', 'Cartridge As', 4, 'A10', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010089', 'Monoblock Valve', '5256758', '9S4180', 'PLUG-LD STOR', 2, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010090', 'Monoblock Valve', '5256758', '4J7533', 'SEAL-O-RING-STOR', 2, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010091', 'Monoblock Valve', '5256758', '2778863', 'VALVE GP-SOL', 1, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010092', 'Monoblock Valve', '5256758', '5498842', 'PLUG AS', 7, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010093', 'Monoblock Valve', '5256758', '3741478', 'SPOOL-COMP', 1, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010094', 'Monoblock Valve', '5256758', '4308983', 'STEM', 1, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010095', 'Monoblock Valve', '5256758', '5256759', 'PLATE-IDENT', 1, 'A11', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010096', 'Monoblock Valve', '5256758', '3J7354', 'SEAL-O-RING-STOR', 1, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010097', 'Monoblock Valve', '5256758', '9S4182', 'PLUG-LD STOR', 1, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010098', 'Monoblock Valve', '5256758', '2660531', 'CAP-CONNECTOR', 7, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010099', 'Monoblock Valve', '5256758', '2965987', 'PLUG', 3, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010100', 'Monoblock Valve', '5256758', '6164612', 'FILM', 1, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742187604304010101', 'Monoblock Valve', '5256758', '6164650', 'FILM', 1, 'A12', 1, '2025-03-17 13:00:04', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873028010000', 'EH-Steering', '5013713', '6024220', 'VALVEGP-CHECK-E', 1, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010000', 'EH-Steering', '5013713', '2828827', 'PLUG', 2, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010001', 'EH-Steering', '5013713', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010002', 'EH-Steering', '5013713', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010003', 'EH-Steering', '5013713', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010004', 'EH-Steering', '5013713', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010005', 'EH-Steering', '5013713', '2976291', 'PLUGAS', 12, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010006', 'EH-Steering', '5013713', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010007', 'EH-Steering', '5013713', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010008', 'EH-Steering', '5013713', '1919247', 'WASHER', 4, 'B', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010009', 'EH-Steering', '5013713', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010010', 'EH-Steering', '5013713', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010011', 'EH-Steering', '5013713', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010012', 'EH-Steering', '5013713', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010013', 'EH-Steering', '5013713', '5892751', 'VALVEGP-SOL', 1, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010014', 'EH-Steering', '5013713', '4973504', 'VALVEGP-PRLF-A', 3, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010015', 'EH-Steering', '5013713', '2608590', 'VALVE GP-SHUTTLE', 1, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010016', 'EH-Steering', '5013713', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873029010017', 'EH-Steering', '5013713', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010000', 'EH-Steering', '5013713', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010001', 'EH-Steering', '5013713', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010002', 'EH-Steering', '5013713', '0951582/HE', 'SEAL-O-RING', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010003', 'EH-Steering', '5013713', '4932479', 'SENSOR AS-SPOOL', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010004', 'EH-Steering', '5013713', '6V8653', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010005', 'EH-Steering', '5013713', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010006', 'EH-Steering', '5013713', '3278527', 'SPRING', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010007', 'EH-Steering', '5013713', '1749194', 'BOLT-FLANGE HEAD', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010008', 'EH-Steering', '5013713', '4932480', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010009', 'EH-Steering', '5013713', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010010', 'EH-Steering', '5013713', '3J1907', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010011', 'EH-Steering', '5013713', '9S8004', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010012', 'EH-Steering', '5013713', '3676002', 'PLUG AS-HD', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010013', 'EH-Steering', '5013713', '8T2396', 'BOLT-SOCKETHD', 2, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010014', 'EH-Steering', '5013713', '9X8256', 'WASHER ', 2, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010015', 'EH-Steering', '5013713', '5189372', 'PLATE-IDENT', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010016', 'EH-Steering', '5013713', '8T8737', 'PLUG-SEAL', 8, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010017', 'EH-Steering', '5013713', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010018', 'EH-Steering', '5013713', '2305010', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010019', 'EH-Steering', '5013713', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010020', 'EH-Steering', '5013713', '2965987', 'PLUG', 3, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010021', 'EH-Steering', '5013713', '3331701', 'PLUG', 1, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010022', 'EH-Steering', '5013713', '4J0520', 'SEAL-O-RING', 2, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010023', 'EH-Steering', '5013713', '8T6466', 'BOLT-HEX HEAD', 8, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010024', 'EH-Steering', '5013713', '8T4121', 'WASHER-HARD', 8, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010025', 'EH-Steering', '5013713', '7S0530', 'CLIP', 1, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010026', 'EH-Steering', '5013713', '3267680', 'PLUG', 4, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010027', 'EH-Steering', '5013713', '7J3554', 'COVER', 2, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010028', 'EH-Steering', '5013713', '8T4137', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742189873030010029', 'EH-Steering', '5013713', '2D0094', 'GASKET', 2, 'F', 1, '2025-03-17 13:37:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010000', 'Steering', '1275500', '9S8006', '堵头', 1, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010001', 'Steering', '1275500', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010002', 'Steering', '1275500', '9S8002', '堵头', 16, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010003', 'Steering', '1275500', '3J7354', 'O型圈', 16, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010004', 'Steering', '1275500', '2P8421', '转接头', 1, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010005', 'Steering', '1275500', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010006', 'Steering', '1275500', '9S4191', '堵头', 4, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010007', 'Steering', '1275500', '3J1907', 'O型圈', 4, 'A', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010008', 'Steering', '1275500', '1159977', '堵头', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010009', 'Steering', '1275500', '3K0360', 'O型圈', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010010', 'Steering', '1275500', '7M5130', '穿销', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010011', 'Steering', '1275500', '9S4182', '堵头', 1, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010012', 'Steering', '1275500', '3J7354', 'O型圈', 1, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010013', 'Steering', '1275500', '8J6815', '螺塞', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010014', 'Steering', '1275500', '9J9821', '底座阀', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010015', 'Steering', '1275500', '4B9782', '钢球', 3, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010016', 'Steering', '1275500', '2S2596', '弹簧', 2, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010017', 'Steering', '1275500', '4F7952', 'O型圈', 1, 'B', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010018', 'Steering', '1275500', '8F9206', 'O型圈', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010019', 'Steering', '1275500', '1159976', '固定器', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010020', 'Steering', '1275500', '4B4280', '垫片', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010021', 'Steering', '1275500', '1160014', '弹簧', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010022', 'Steering', '1275500', '1070071', '固定器', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010023', 'Steering', '1275500', '6V5195', '螺栓', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010024', 'Steering', '1275500', '8T4224', '垫片', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010025', 'Steering', '1275500', '1277290', '铭牌', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010026', 'Steering', '1275500', '8T5005', '螺栓', 4, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010027', 'Steering', '1275500', '4T1860', '溢流阀', 1, 'C', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010028', 'Steering', '1275500', '1156901', '盖板', 1, 'D', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010029', 'Steering', '1275500', '1141267', '减压阀', 1, 'D', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010030', 'Steering', '1275500', '9T7419', '双向溢流阀', 1, 'D', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010031', 'Steering', '1275500', '9T7418', '溢流阀', 1, 'D', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010032', 'Steering', '1275500', '8C3206', '法兰', 8, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010033', 'Steering', '1275500', '5H4019', '盖板', 4, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010034', 'Steering', '1275500', '4J0520', '密封圈', 4, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010035', 'Steering', '1275500', '7S0530', '吊环', 1, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010036', 'Steering', '1275500', '8T4121', '垫圈', 16, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742196307209010037', 'Steering', '1275500', '8T4196', '螺栓', 16, 'E终装', 2, '2025-03-17 15:25:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010000', 'Steering', '1668495', '9S8006', '堵头', 1, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010001', 'Steering', '1668495', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010002', 'Steering', '1668495', '9S8002', '堵头', 16, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010003', 'Steering', '1668495', '3J7354', 'O型圈', 16, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010004', 'Steering', '1668495', '2P8421', '转接头', 1, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010005', 'Steering', '1668495', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010006', 'Steering', '1668495', '9S4191', '堵头', 4, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010007', 'Steering', '1668495', '3J1907', 'O型圈', 4, 'A', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010008', 'Steering', '1668495', '1159977', '堵头', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010009', 'Steering', '1668495', '3K0360', 'O型圈', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010010', 'Steering', '1668495', '7M5130', '穿销', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010011', 'Steering', '1668495', '9S4182', '堵头', 1, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010012', 'Steering', '1668495', '3J7354', 'O型圈', 1, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010013', 'Steering', '1668495', '3D4603', '螺塞', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010014', 'Steering', '1668495', '9J9821', '底座阀', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010015', 'Steering', '1668495', '4B9782', '钢球', 3, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010016', 'Steering', '1668495', '2S2596', '弹簧', 2, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010017', 'Steering', '1668495', '4F7952', 'O型圈', 1, 'B', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010018', 'Steering', '1668495', '8F9206', 'O型圈', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010019', 'Steering', '1668495', '1159976', '固定器', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010020', 'Steering', '1668495', '4B4280', '垫片', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010021', 'Steering', '1668495', '1265484', '弹簧', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010022', 'Steering', '1668495', '1070071', '固定器', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010023', 'Steering', '1668495', '6V5195', '螺栓', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010024', 'Steering', '1668495', '8T4224', '垫片', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010025', 'Steering', '1668495', '1674019', '铭牌', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010026', 'Steering', '1668495', '8T5005', '螺栓', 4, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010027', 'Steering', '1668495', '4T1860', '溢流阀', 1, 'C', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010028', 'Steering', '1668495', '1156901', '盖板', 1, 'D', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010029', 'Steering', '1668495', '1141267', '减压阀', 1, 'D', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010030', 'Steering', '1668495', '9T7419', '双向溢流阀', 1, 'D', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010031', 'Steering', '1668495', '9T7418', '溢流阀', 1, 'D', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010032', 'Steering', '1668495', '8C3206', '法兰', 8, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010033', 'Steering', '1668495', '5H4019', '盖板', 4, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010034', 'Steering', '1668495', '4J0520', '密封圈', 4, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010035', 'Steering', '1668495', '7S0530', '吊环', 1, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010036', 'Steering', '1668495', '8T7934', '垫圈', 16, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197481102010037', 'Steering', '1668495', '8T4186', '螺栓', 16, 'E终装', 2, '2025-03-17 15:44:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010000', 'Steering', '4914631', '9S8006', '堵头', 1, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010001', 'Steering', '4914631', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010002', 'Steering', '4914631', '9S8002', '堵头', 16, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010003', 'Steering', '4914631', '3J7354', 'O型圈', 16, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010004', 'Steering', '4914631', '2P8421', '转接头', 1, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010005', 'Steering', '4914631', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010006', 'Steering', '4914631', '9S4191', '堵头', 4, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010007', 'Steering', '4914631', '3J1907', 'O型圈', 4, 'A', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010008', 'Steering', '4914631', '1159977', '堵头', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010009', 'Steering', '4914631', '3K0360', 'O型圈', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010010', 'Steering', '4914631', '7M5130', '穿销', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010011', 'Steering', '4914631', '9S4182', '堵头', 1, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010012', 'Steering', '4914631', '3J7354', 'O型圈', 1, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010013', 'Steering', '4914631', '8J6815', '螺塞', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010014', 'Steering', '4914631', '9J9821', '底座阀', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010015', 'Steering', '4914631', '4B9782', '钢球', 3, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010016', 'Steering', '4914631', '2S2596', '弹簧', 2, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010017', 'Steering', '4914631', '4F7952', 'O型圈', 1, 'B', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010018', 'Steering', '4914631', '8F9206', 'O型圈', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010019', 'Steering', '4914631', '1159976', '固定器', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010020', 'Steering', '4914631', '4B4280', '垫片', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010021', 'Steering', '4914631', '1160014', '弹簧', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010022', 'Steering', '4914631', '1070071', '固定器', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010023', 'Steering', '4914631', '6V5195', '螺栓', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010024', 'Steering', '4914631', '8T4224', '垫片', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010025', 'Steering', '4914631', '4981612', '铭牌', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010026', 'Steering', '4914631', '8T5005', '螺栓', 4, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010027', 'Steering', '4914631', '4T1860', '溢流阀', 1, 'C', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010028', 'Steering', '4914631', '1156901', '盖板', 1, 'D', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010029', 'Steering', '4914631', '5123289', '减压阀', 1, 'D', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010030', 'Steering', '4914631', '3734539', '双向溢流阀', 1, 'D', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010031', 'Steering', '4914631', '3734540', '溢流阀', 1, 'D', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010032', 'Steering', '4914631', '8C3206', '法兰', 8, 'E终装', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010033', 'Steering', '4914631', '5H4019', '盖板', 4, 'E终装', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010034', 'Steering', '4914631', '4J0520', '密封圈', 4, 'E终装', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010035', 'Steering', '4914631', '7S0530', '吊环', 1, 'E终装', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742197533299010036', 'Steering', '4914631', '5334159', '螺栓', 16, 'E终装', 2, '2025-03-17 15:45:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095655010000', 'WL-ZL50', '4T2746', '3G8991', '钢铁弹簧', 2, 'A', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095655010001', 'WL-ZL50', '4T2746', '4D6433', '钢铁制垫圈', 2, 'A', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095655010002', 'WL-ZL50', '4T2746', '7K0734', '钢铁制螺栓', 2, 'A', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095655010003', 'WL-ZL50', '4T2746', '3385494', '阀用止动块', 4, 'A', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742199095655010004', 'WL-ZL50', '4T2746', '3385495', '钢铁弹簧', 2, 'A', 1, '2025-03-17 16:11:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109761010000', 'selector', '4758870', '3J1907', 'O型圈', 1, 'A', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010000', 'selector', '4758870', '3603692', '螺堵', 1, 'A', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010001', 'selector', '4758870', '3603690', '螺堵', 1, 'A', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010002', 'selector', '4758870', '3J7354', 'O型圈', 1, 'A', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010003', 'selector', '4758870', '2521631', '塑料螺堵', 2, 'A', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010004', 'selector', '4758870', '1083866', '堵头', 2, 'B', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010005', 'selector', '4758870', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010006', 'selector', '4758870', '4840912', '铭牌', 1, 'B', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010007', 'selector', '4758870', '7S8553', '弹簧', 1, 'B', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259109764010008', 'selector', '4758870', '1809935', '垫片', 1, 'B', 10, '2025-03-18 08:51:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010000', 'QD1', '6561250', '1442894', 'PLUG-EXPANDER   ', 3, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010001', 'QD1', '6561250', '6561245', 'STEM            ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010002', 'QD1', '6561250', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010003', 'QD1', '6561250', '9S8006', 'PLUG-LD STOR    ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010004', 'QD1', '6561250', '1006211', 'PISTON          ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010005', 'QD1', '6561250', '3L3813', 'PIN             ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010006', 'QD1', '6561250', '1J9671', 'SEAL-O-RING     ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010007', 'QD1', '6561250', '9S8003', 'PLUG-LD STOR    ', 1, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010008', 'QD1', '6561250', '1P3706', 'SEAL-RECTANGULAR', 2, 'A', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010009', 'QD1', '6561250', '6561247', 'COVER           ', 2, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010010', 'QD1', '6561250', '4838013', 'SPRING          ', 1, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010011', 'QD1', '6561250', '6V8200', 'BOLT-SOCKET HEAD', 8, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010012', 'QD1', '6561250', '5334159', 'BOLT AS         ', 24, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010013', 'QD1', '6561250', '8C3206', 'FLANGE-SPLIT    ', 12, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010014', 'QD1', '6561250', '5H4019', 'COVER           ', 6, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010015', 'QD1', '6561250', '4J0520', 'SEAL-O-RING     ', 6, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010016', 'QD1', '6561250', '2660531', 'CAP-CONNECTOR   ', 1, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010017', 'QD1', '6561250', '6561249', 'PLATE-IDENT     ', 1, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742259591554010018', 'QD1', '6561250', '2855628', 'VALVE GP-SOL    ', 1, 'B', 1, '2025-03-18 08:59:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010000', 'MTV', '5924374', '2S1385', 'SPOOL', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010001', 'MTV', '5924374', '8M2538', 'POPPET', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010002', 'MTV', '5924374', '5M9548', 'SPRING', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010003', 'MTV', '5924374', '8M4409', 'PETAINER', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010004', 'MTV', '5924374', '7M8592', 'RING', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010005', 'MTV', '5924374', '4M1751', 'SPACER', 3, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010006', 'MTV', '5924374', '5S7001', 'SPACER', 5, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010007', 'MTV', '5924374', '2S1382', 'SPRING', 1, 'A', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010008', 'MTV', '5924374', '8M4986', 'SEAL-O-RING', 2, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010009', 'MTV', '5924374', '4M8239', 'COVER', 2, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010010', 'MTV', '5924374', '8T4136', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010011', 'MTV', '5924374', '9X2027', 'WASHER-HARD', 4, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010012', 'MTV', '5924374', '9S4191', 'PLUG', 1, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010013', 'MTV', '5924374', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742261640423010014', 'MTV', '5924374', '5924989', 'PLATE', 1, 'B', 1, '2025-03-18 09:34:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010000', 'QCT', '1941465', '1P3709', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010001', 'QCT', '1941465', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010002', 'QCT', '1941465', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010003', 'QCT', '1941465', '2S4078', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010004', 'QCT', '1941465', '4J9780', 'PLUG-NPTF', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010005', 'QCT', '1941465', '5H6005', 'SEAL-O RING', 2, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010006', 'QCT', '1941465', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010007', 'QCT', '1941465', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010008', 'QCT', '1941465', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010009', 'QCT', '1941465', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010010', 'QCT', '1941465', '9S8002', 'PLUG-INTL HEX', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010011', 'QCT', '1941465', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010012', 'QCT', '1941465', '3603681', 'PLUG-HD STOR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010013', 'QCT', '1941465', '3676001', 'PLUG AS-HD STOR', 4, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010014', 'QCT', '1941465', '3676002', 'PLUG AS-HD STOR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010015', 'QCT', '1941465', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010016', 'QCT', '1941465', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010017', 'QCT', '1941465', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010018', 'QCT', '1941465', '4D2886', 'CLIP', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010019', 'QCT', '1941465', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010020', 'QCT', '1941465', '4J0519', 'SEAL-O-RING', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010021', 'QCT', '1941465', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010022', 'QCT', '1941465', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010023', 'QCT', '1941465', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010024', 'QCT', '1941465', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010025', 'QCT', '1941465', '8J2379', 'DALVE', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010026', 'QCT', '1941465', '1138263', 'PISTON', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010027', 'QCT', '1941465', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010028', 'QCT', '1941465', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010029', 'QCT', '1941465', '9S4191', 'PLUG-EXT HEX', 1, 'B', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010030', 'QCT', '1941465', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010031', 'QCT', '1941465', '4J0519', 'SEAL-O-RING', 1, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010032', 'QCT', '1941465', '4J2506', 'SEAL-O RING', 2, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010033', 'QCT', '1941465', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010034', 'QCT', '1941465', '7D8048', 'SEAL-O RING', 2, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010035', 'QCT', '1941465', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010036', 'QCT', '1941465', '8J2306', 'STEM-VALVE', 1, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010037', 'QCT', '1941465', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010038', 'QCT', '1941465', '9S8005', 'PLUG-INTL HEX', 2, 'C', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010039', 'QCT', '1941465', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010040', 'QCT', '1941465', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010041', 'QCT', '1941465', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010042', 'QCT', '1941465', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010043', 'QCT', '1941465', '9P8217', 'SPACER-HARD', 4, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010044', 'QCT', '1941465', '1941492', 'PLATE-IDENT', 1, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010045', 'QCT', '1941465', '4224594', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010046', 'QCT', '1941465', '4230466', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010047', 'QCT', '1941465', '1185081', 'ACTUATOR GP', 2, 'E', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010048', 'QCT', '1941465', '1P4579', 'FLANGE-SPLIT', 8, 'F', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010049', 'QCT', '1941465', '1P4582', 'FLANGE-SPLIT', 2, 'F', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010050', 'QCT', '1941465', '2J2668', 'FLANGE-COVER', 4, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010051', 'QCT', '1941465', '2J5608', 'FLANGE-COVER', 1, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010052', 'QCT', '1941465', '4J0524', 'SEAL-O-RING', 4, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010053', 'QCT', '1941465', '4J0527', 'SEAL-O-RING', 1, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010054', 'QCT', '1941465', '5P2566', 'BOLT-HEX HEAD', 20, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742272767992010055', 'QCT', '1941465', '8T4223', 'WASHER-HARD', 20, 'G', 1, '2025-03-18 12:39:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273043475010000', 'ACS', '3467607', '3231245', 'RETAINER', 2, 'A', 1, '2025-03-18 12:44:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273043475010001', 'ACS', '3467607', '3467606', 'STEM-BYPASS', 1, 'A', 1, '2025-03-18 12:44:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273043475010002', 'ACS', '3467607', '3467616', 'SPRING-', 1, 'A', 1, '2025-03-18 12:44:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273043475010003', 'ACS', '3467607', '3467618', 'RETAINER', 1, 'A', 1, '2025-03-18 12:44:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010000', 'Check Valve', '5775912', '8T6759', 'PLUG-INTL HEX', 8, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010001', 'Check Valve', '5775912', '4J7533', 'SEAL-O-RING-STOR', 4, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010002', 'Check Valve', '5775912', '2254804/HE', 'PLUG-HEX. SKT HD', 4, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010003', 'Check Valve', '5775912', '5181315/HE', 'VALVE-CHECK', 1, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010004', 'Check Valve', '5775912', '5181331/HE', 'SPRING-CHECK V', 1, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010005', 'Check Valve', '5775912', '5181332/HE', 'PLUG-CV STOPPER', 1, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010006', 'Check Valve', '5775912', '0951601/HE', 'SEAL-O-RING', 1, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010007', 'Check Valve', '5775912', '2324113/HE', 'RING-BACK UP', 1, 'A', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010008', 'Check Valve', '5775912', '8T4223', 'WASHER-HARD', 4, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010009', 'Check Valve', '5775912', '8T4956', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010010', 'Check Valve', '5775912', '5181333/HE', 'COVER-CHECK V', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010011', 'Check Valve', '5775912', '3237773/HE', 'FILTER', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010012', 'Check Valve', '5775912', '5075974/HE', 'SEAT-VALVE', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010013', 'Check Valve', '5775912', '4802136/HE', ' OLLAR', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010014', 'Check Valve', '5775912', '0951578/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010015', 'Check Valve', '5775912', '0958024/HE', 'RING-BACK UP', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010016', 'Check Valve', '5775912', '0951584/HE', 'SEAL-O-RING', 1, 'B', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010017', 'Check Valve', '5775912', '5075975/HE', 'BODY-VALVE', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010018', 'Check Valve', '5775912', '0951573/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010019', 'Check Valve', '5775912', '5075976/HE', 'ADJUSTER', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010020', 'Check Valve', '5775912', '8T4244', 'NUT-HEX', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010021', 'Check Valve', '5775912', '1710037/HE', 'VALVE', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010022', 'Check Valve', '5775912', '4I3510/HE', 'SPRING', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010023', 'Check Valve', '5775912', '5772158/HE', 'STEM GP-VALVE', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010024', 'Check Valve', '5775912', '6K6307', 'SEAL-O-RING', 1, 'C', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010025', 'Check Valve', '5775912', '5181324/HE', 'PLUG', 1, 'D', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010026', 'Check Valve', '5775912', '5181325/HE', 'RETAINER-SPRING', 1, 'D', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010027', 'Check Valve', '5775912', '5181330/HE', 'SHIM', 7, 'D', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010028', 'Check Valve', '5775912', '5496515/HE', 'SPRING-RETURN', 1, 'D', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010029', 'Check Valve', '5775912', '5181327/HE-14', '5181327/HE&5313314/HE', 1, 'D', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010030', 'Check Valve', '5775912', '6V8218', 'SEAL-ORING', 1, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010031', 'Check Valve', '5775912', '8T4121', 'WASHER-HARD', 2, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010032', 'Check Valve', '5775912', '8T4137', 'BOLT-HEX HEAD', 2, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010033', 'Check Valve', '5775912', '5181328/HE', 'COVER-PISTON', 1, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010034', 'Check Valve', '5775912', '5674312/HE-2', 'PLATE-IDENT', 1, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010035', 'Check Valve', '5775912', '5536203/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010036', 'Check Valve', '5775912', '5536205/HE', 'COVER-PORT PROTN', 1, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273070910010037', 'Check Valve', '5775912', '6260449/HE', 'PLUG AS-PROTN', 2, 'E', 1, '2025-03-18 12:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010000', 'ACS', '3698366', '5P7970', 'NUT-HEX', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010001', 'ACS', '3698366', '3698492/HE', 'COVER-VALVE', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010002', 'ACS', '3698366', '3698493/HE', 'GUIDE-SEAT', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010003', 'ACS', '3698366', '3698494/HE', 'SEAT-VALVE', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010004', 'ACS', '3698366', '3698498/HE', 'BOLT', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010005', 'ACS', '3698366', '3698499/HE', 'SPRING-RETURN', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742273447566010006', 'ACS', '3698366', '3698500/HE', 'GUIDE-STOPPER', 1, 'A', 1, '2025-03-18 12:50:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010000', '6015B', '4Z6292', '4B9783', 'BALL', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010001', '6015B', '4Z6292', '6J3134', 'SEAL-O RING', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010002', '6015B', '4Z6292', '8J1751', 'PLUG', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010003', '6015B', '4Z6292', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010004', '6015B', '4Z6292', '8J1752', 'PLUNGER', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010005', '6015B', '4Z6292', '4T7581', 'VALVE GP-D RLF-A', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010006', '6015B', '4Z6292', '9S4180', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010007', '6015B', '4Z6292', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010008', '6015B', '4Z6292', '6E5643', 'VALVE', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010009', '6015B', '4Z6292', '4T3148', 'SPRING', 1, 'A', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010010', '6015B', '4Z6292', '6E5457', 'PLUG', 1, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010011', '6015B', '4Z6292', '3D2824', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010012', '6015B', '4Z6292', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010013', '6015B', '4Z6292', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010014', '6015B', '4Z6292', '9S4185', 'PLUG-LD STOR', 5, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010015', '6015B', '4Z6292', '3K0360', 'SEAL-O-RING-STOR', 5, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281070017010016', '6015B', '4Z6292', '9A2825', 'PLATE-IDENT', 1, 'B', 1, '2025-03-18 14:57:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010000', '6015B', '1011939', '4B9783', 'BALL', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010001', '6015B', '1011939', '6J3134', 'SEAL-O RING', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010002', '6015B', '1011939', '8J1751', 'PLUG', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010003', '6015B', '1011939', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010004', '6015B', '1011939', '8J1752', 'PLUNGER', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010005', '6015B', '1011939', '9S4180', 'PLUG-LD STOR', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010006', '6015B', '1011939', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010007', '6015B', '1011939', '1439479', 'VALVE GP-D RLF-A', 1, 'B', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010008', '6015B', '1011939', '6E5643', 'VALVE', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010009', '6015B', '1011939', '4T3148', 'SPRING', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010010', '6015B', '1011939', '6E5457', 'PLUG', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010011', '6015B', '1011939', '3D2824', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010012', '6015B', '1011939', '9S4191', 'PLUG-LD STOR', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010013', '6015B', '1011939', '3J1907', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010014', '6015B', '1011939', '9S4185', 'PLUG-LD STOR', 5, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010015', '6015B', '1011939', '3K0360', 'SEAL-O-RING-STOR', 5, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281083134010016', '6015B', '1011939', '1433564', 'PLATE-IDENT', 1, 'C', 6, '2025-03-18 14:58:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010000', 'B Segment', '3761235', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010001', 'B Segment', '3761235', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010002', 'B Segment', '3761235', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010003', 'B Segment', '3761235', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010004', 'B Segment', '3761235', '4T4207', 'PLUG-NPTF ', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010005', 'B Segment', '3761235', '2147567', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010006', 'B Segment', '3761235', '3603678', 'PLUG-HD STOR ', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010007', 'B Segment', '3761235', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010008', 'B Segment', '3761235', '4Z5900', 'VALVE GP-CHECK-D', 1, 'B', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010009', 'B Segment', '3761235', '4Z5900', 'VALVE GP-CHECK-D', 1, 'C', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010010', 'B Segment', '3761235', '2608590', 'VALVE GP-SHTL -B', 1, 'D', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010011', 'B Segment', '3761235', '3612432', 'VALVE GP-FCONT-A', 1, 'D', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010012', 'B Segment', '3761235', '1482557', 'PLUG ', 1, 'D', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010013', 'B Segment', '3761235', '9S8001', 'PLUG-LD STOR ', 1, 'D', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010014', 'B Segment', '3761235', '3612427', 'BLOCK ', 1, 'E', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010015', 'B Segment', '3761235', '5F9144', 'SEAL-O RING ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010016', 'B Segment', '3761235', '3664972', 'RING-BACKUP ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010017', 'B Segment', '3761235', '6V5556', 'SEAL-O RING ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010018', 'B Segment', '3761235', '4B4278', 'WASHER ', 3, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010019', 'B Segment', '3761235', '3612426', 'SPRING ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010020', 'B Segment', '3761235', '8T4198', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010021', 'B Segment', '3761235', '3J7354', 'SEAL-O-RING-STOR', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010022', 'B Segment', '3761235', '9S8002', 'PLUG-LD STOR ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010023', 'B Segment', '3761235', '3K0360', 'SEAL-O-RING-STOR', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010024', 'B Segment', '3761235', '9S8005', 'PLUG-LD STOR ', 1, 'F', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010025', 'B Segment', '3761235', '4363448', 'HOUSING ', 2, 'G', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010026', 'B Segment', '3761235', '1T0936', 'PLUG-PIPE ', 1, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010027', 'B Segment', '3761235', '6E5066', 'SCREEN-HYD ', 1, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010028', 'B Segment', '3761235', '3J9015', 'SEAL-O RING ', 1, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281099999010029', 'B Segment', '3761235', '1H1023', 'SEAL-O RING ', 1, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100000010000', 'B Segment', '3761235', '2040814', 'BOLT-HEX HEAD ', 2, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100000010001', 'B Segment', '3761235', '3676002', 'PLUG AS-HD STOR ', 2, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100000010002', 'B Segment', '3761235', '3J1907', 'SEAL-O-RING-STOR', 2, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100000010003', 'B Segment', '3761235', '9S4191', 'PLUG-LD STOR ', 2, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100000010004', 'B Segment', '3761235', '1537551', 'RETAINER ', 1, 'H', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010000', 'B Segment', '3761235', '4214353', 'SPRING ', 1, 'I', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010001', 'B Segment', '3761235', '1537067', 'RETAINER ', 1, 'I', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010002', 'B Segment', '3761235', '1612684', 'SCREW ', 1, 'I', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010003', 'B Segment', '3761235', '7J0204', 'SEAL-O-RING ', 1, 'I', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010004', 'B Segment', '3761235', '3J9015', 'SEAL-O RING ', 2, 'I', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010005', 'B Segment', '3761235', '4363447', 'HOUSING ', 1, 'J', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010006', 'B Segment', '3761235', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010007', 'B Segment', '3761235', '3847474', 'PLATE-IDENT ', 1, 'K', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010008', 'B Segment', '3761235', '1T0936', 'PLUG-PIPE ', 1, 'K', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010009', 'B Segment', '3761235', '6E5066', 'SCREEN-HYD ', 1, 'K', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281100001010010', 'B Segment', '3761235', '6V9606', 'BOLT ', 2, 'K', 6, '2025-03-18 14:58:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010000', '6015B', '1291899', '7J7423', 'VALVE', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010001', '6015B', '1291899', '7S8491', 'SPRING', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010002', '6015B', '1291899', '1U0322', 'BEARING-SLEEVE', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010003', '6015B', '1291899', '3G2683', 'PLUG-O-RING', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010004', '6015B', '1291899', '2S4078', 'SEAL-O-RING', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010005', '6015B', '1291899', '3603679', 'PLUG-HD STOR', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010006', '6015B', '1291899', '2147568', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010007', '6015B', '1291899', '1291900', 'PLATE-IDENT', 1, 'C', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010008', '6015B', '1291899', '3603685', 'PLUG-HD STOR', 4, 'C', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010009', '6015B', '1291899', '2287096', 'SEAL-O-RING-STOR', 4, 'C', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010010', '6015B', '1291899', '4D2886', 'CLIP', 1, 'C', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742281560731010011', '6015B', '1291899', '8T4192', 'BOLT-HEX HEAD', 1, 'C', 1, '2025-03-18 15:06:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010000', 'B Segment', '3623316', '1008010', '阀芯', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010001', 'B Segment', '3623316', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010002', 'B Segment', '3623316', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010003', 'B Segment', '3623316', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010004', 'B Segment', '3623316', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010005', 'B Segment', '3623316', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010006', 'B Segment', '3623316', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010007', 'B Segment', '3623316', '1008012', '阀体', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010008', 'B Segment', '3623316', '4K1388', '橡胶密封圈', 1, 'A', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010009', 'B Segment', '3623316', '1750453', '阀芯', 1, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010010', 'B Segment', '3623316', '4T5073', '塑料密封圈', 1, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010011', 'B Segment', '3623316', '7J9933', '橡胶密封圈', 1, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010012', 'B Segment', '3623316', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010013', 'B Segment', '3623316', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010014', 'B Segment', '3623316', '2608590', '换向阀', 1, 'B', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010015', 'B Segment', '3623316', '5M2057', '橡胶密封圈', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010016', 'B Segment', '3623316', '4T4511', '阀用管套', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010017', 'B Segment', '3623316', '3664972', '塑料密封圈', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010018', 'B Segment', '3623316', '6V5556', '橡胶密封圈', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010019', 'B Segment', '3623316', '4T1701', '钢铁弹簧', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010020', 'B Segment', '3623316', '8T4185', '螺栓8T-4185', 2, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010021', 'B Segment', '3623316', '9S4180', '钢铁制塞堵', 1, 'D', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010022', 'B Segment', '3623316', '4J7533', '橡胶密封圈', 1, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010023', 'B Segment', '3623316', '2077434', '阀用止动块', 2, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010024', 'B Segment', '3623316', '3529954', '钢铁弹簧', 2, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010025', 'B Segment', '3623316', '3529956', '阀用止动块', 2, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010026', 'B Segment', '3623316', '1919247', '钢铁制垫圈', 2, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010027', 'B Segment', '3623316', '1982914', '钢铁制螺母', 2, 'F', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010028', 'B Segment', '3623316', '2427955', '阀座', 2, 'G', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010029', 'B Segment', '3623316', '3128629', '电磁线圈', 2, 'H', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010030', 'B Segment', '3623316', '3161438', '插装阀组件', 2, 'I', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010031', 'B Segment', '3623316', '3617213', '插装阀组件', 2, 'I', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010032', 'B Segment', '3623316', '1H1023', '橡胶密封圈', 4, 'I', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010033', 'B Segment', '3623316', '1879630', '橡胶密封圈', 2, 'I', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010034', 'B Segment', '3623316', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010035', 'B Segment', '3623316', '6V3965', '取样阀', 2, 'J', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010036', 'B Segment', '3623316', '2147568', '橡胶密封圈', 2, 'J', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010037', 'B Segment', '3623316', '6V0852', '橡胶防尘盖', 2, 'J', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742282052473010038', 'B Segment', '3623316', '1503065', '钢铁制螺纹接头组件', 1, 'J', 6, '2025-03-18 15:14:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010000', 'B valve', '4906529', '1483483', 'PLUG ', 2, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010001', 'B valve', '4906529', '4D0514', 'PLUG-PTF ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010002', 'B valve', '4906529', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010003', 'B valve', '4906529', '9S8002', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010004', 'B valve', '4906529', '9T8685', 'VALVE ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010005', 'B valve', '4906529', '2N7029', 'SPRING-CONT PIN ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010006', 'B valve', '4906529', '3D2824', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010007', 'B valve', '4906529', '3788543', 'PLUG ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010008', 'B valve', '4906529', '5127785', 'VALVE GP-P RLF-B', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010009', 'B valve', '4906529', '4812471', 'VALVE GP-CHECK ', 1, 'A', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010010', 'B valve', '4906529', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010011', 'B valve', '4906529', '9S8002', 'PLUG-LD STOR ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010012', 'B valve', '4906529', '7J9933', 'SEAL-O RING ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010013', 'B valve', '4906529', '4829841', 'RING-BACKUP ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010014', 'B valve', '4906529', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010015', 'B valve', '4906529', '4681138', 'PLUG-RETAINER ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010016', 'B valve', '4906529', '1483483', 'PLUG ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010017', 'B valve', '4906529', '4681141', 'RETAINER ', 2, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010018', 'B valve', '4906529', '4681135', 'SPRING ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010019', 'B valve', '4906529', '4681145', 'BOLT-FLAT ', 1, 'B', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010020', 'B valve', '4906529', '3P1979', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010021', 'B valve', '4906529', '4681339', 'HOUSING ', 1, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010022', 'B valve', '4906529', '7X7888', 'BOLT-HEX HEAD ', 2, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010023', 'B valve', '4906529', '9X8256', 'WASHER ', 2, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010024', 'B valve', '4906529', '7X5315', 'COUPLING-QDISC ', 1, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354788010025', 'B valve', '4906529', '7X5308', 'CAP-DUST ', 1, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010000', 'B valve', '4906529', '4689932', 'MANIFOLD GP-CONT', 1, 'C', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010001', 'B valve', '4906529', '7X2535', 'BOLT-HEX HEAD ', 2, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010002', 'B valve', '4906529', '9X8256', 'WASHER ', 2, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010003', 'B valve', '4906529', '7X5315', 'COUPLING-QDISC ', 1, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010004', 'B valve', '4906529', '7X5308', 'CAP-DUST ', 1, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010005', 'B valve', '4906529', '5542333/HE', 'CAP-CONNECTOR ', 2, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283354789010006', 'B valve', '4906529', '4993696', 'PLATE-IDENT ', 1, 'D', 1, '2025-03-18 15:35:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521994010000', 'MG Segment', '1288647', '9S8005', '堵头', 1, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010000', 'MG Segment', '1288647', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010001', 'MG Segment', '1288647', '9J0404', '堵头', 2, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010002', 'MG Segment', '1288647', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010003', 'MG Segment', '1288647', '3405470', '右手柄', 1, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010004', 'MG Segment', '1288647', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010005', 'MG Segment', '1288647', '6E4502', '堵头', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010006', 'MG Segment', '1288647', '4J7533', '密封O型圈', 2, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010007', 'MG Segment', '1288647', '9S4180', '堵头', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010008', 'MG Segment', '1288647', '6E3019', '阀', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010009', 'MG Segment', '1288647', '6E5153', '弹簧', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010010', 'MG Segment', '1288647', '1082187', '堵头', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010011', 'MG Segment', '1288647', '9J0403', '弹簧', 2, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010012', 'MG Segment', '1288647', '5B9318', '钢球', 1, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010013', 'MG Segment', '1288647', '1063660', '活塞', 2, 'B', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010014', 'MG Segment', '1288647', '6E3007', '弹簧', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010015', 'MG Segment', '1288647', '1011973', '轴承座', 4, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010016', 'MG Segment', '1288647', '1027412', '弹簧', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010017', 'MG Segment', '1288647', '8T4189', '螺栓', 2, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010018', 'MG Segment', '1288647', '8T4224', '垫片', 2, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010019', 'MG Segment', '1288647', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010020', 'MG Segment', '1288647', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010021', 'MG Segment', '1288647', '1011971', '杆体', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010022', 'MG Segment', '1288647', '1012480', '盖板', 1, 'C', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010023', 'MG Segment', '1288647', '2213676', '阀芯', 1, 'D', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010024', 'MG Segment', '1288647', '1011984', '阀座', 1, 'E', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010025', 'MG Segment', '1288647', '8T4138', '螺栓', 2, 'F', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010026', 'MG Segment', '1288647', '1118234', '弹簧', 1, 'F', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010027', 'MG Segment', '1288647', '1288701', '铭牌', 1, 'F', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010028', 'MG Segment', '1288647', '1398477', '溢流阀', 1, 'F', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283521995010029', 'MG Segment', '1288647', '1303535', '制动器', 1, 'G', 8, '2025-03-18 15:38:42', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601785010000', 'MG Segment', '1151007', '9S8005', '堵头', 1, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010000', 'MG Segment', '1151007', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010001', 'MG Segment', '1151007', '9J0404', '堵头', 2, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010002', 'MG Segment', '1151007', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010003', 'MG Segment', '1151007', '3405470', '右手柄', 1, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010004', 'MG Segment', '1151007', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010005', 'MG Segment', '1151007', '6E4502', '堵头', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010006', 'MG Segment', '1151007', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010007', 'MG Segment', '1151007', '6E3019', '阀', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010008', 'MG Segment', '1151007', '6E5153', '弹簧', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010009', 'MG Segment', '1151007', '1082187', '堵头', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010010', 'MG Segment', '1151007', '5B9318', '钢球', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010011', 'MG Segment', '1151007', '9J0403', '弹簧', 2, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010012', 'MG Segment', '1151007', '1063659', '活塞', 1, 'B', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010013', 'MG Segment', '1151007', '6E3007', '弹簧', 1, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010014', 'MG Segment', '1151007', '1011973', '轴承座', 4, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010015', 'MG Segment', '1151007', '8T4189', '螺栓', 2, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010016', 'MG Segment', '1151007', '8T4224', '垫片', 2, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010017', 'MG Segment', '1151007', '1027412', '弹簧', 1, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010018', 'MG Segment', '1151007', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010019', 'MG Segment', '1151007', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010020', 'MG Segment', '1151007', '1011971', '杆体', 1, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010021', 'MG Segment', '1151007', '1012480', '盖板', 1, 'C', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010022', 'MG Segment', '1151007', '1024578', '阀芯', 1, 'D', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010023', 'MG Segment', '1151007', '1011984', '阀座', 1, 'E', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010024', 'MG Segment', '1151007', '8T4138', '螺栓', 2, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010025', 'MG Segment', '1151007', '1118233', '弹簧', 1, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010026', 'MG Segment', '1151007', '1011978', '盖板', 1, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010027', 'MG Segment', '1151007', '8T4189', '螺栓', 2, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010028', 'MG Segment', '1151007', '8T4224', '垫片', 2, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010029', 'MG Segment', '1151007', '1398472', '溢流阀', 1, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742283601786010030', 'MG Segment', '1151007', '1151005', '铭牌', 1, 'F', 8, '2025-03-18 15:40:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010000', 'B Segment', '9T1781', '1008010', 'VALVE,VALVE GP-CONT -P', 2, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010001', 'B Segment', '9T1781', '1008011', 'PLUG,VALVE GP-CONT -P', 1, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010002', 'B Segment', '9T1781', '2S2596', 'SPRING', 2, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010003', 'B Segment', '9T1781', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010004', 'B Segment', '9T1781', '9J8126', 'PLUG-ORIFICE', 1, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010005', 'B Segment', '9T1781', '3676002', 'PLUG AS-HD STOR', 1, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010006', 'B Segment', '9T1781', '4T1108', 'xLUG', 1, 'A', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010007', 'B Segment', '9T1781', '4J5351', 'SEAL-O RING,RUBBER', 1, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010008', 'B Segment', '9T1781', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010009', 'B Segment', '9T1781', '4T5072', 'RING-BACKUP', 1, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010010', 'B Segment', '9T1781', '4T5073', 'RING-BACKUP', 2, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010011', 'B Segment', '9T1781', '7J9933', 'SEAL-O RING', 2, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010012', 'B Segment', '9T1781', '1008012', 'BODY', 1, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010013', 'B Segment', '9T1781', '4T1850', ' HOUSING', 1, 'B', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010014', 'B Segment', '9T1781', '2D0598', 'SEAL-O RING', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010015', 'B Segment', '9T1781', '1165172', 'PLATE-IDENT', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010016', 'B Segment', '9T1781', '8C3121', 'BOLT', 2, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010017', 'B Segment', '9T1781', '8T4224', 'WASHER-HARD', 4, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010018', 'B Segment', '9T1781', '3676001', 'PLUG AS-HD STOR', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010019', 'B Segment', '9T1781', '4J7533', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010020', 'B Segment', '9T1781', '9S8001', 'PLUG-LD STOR', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010021', 'B Segment', '9T1781', '4T1860', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010022', 'B Segment', '9T1781', '1216647', 'VALVE GP-RELIEF', 1, 'E', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010023', 'B Segment', '9T1781', '5M2057', 'SEAL-O-RING', 1, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010024', 'B Segment', '9T1781', '1239624', 'SPRING', 1, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010025', 'B Segment', '9T1781', '8T4896', 'WASHER-HARD', 2, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010026', 'B Segment', '9T1781', '8T9377', 'BOLT', 2, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010027', 'B Segment', '9T1781', '7J0204', 'SEAL-O-RING', 1, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010028', 'B Segment', '9T1781', '3603689', 'PLUG-HD STOR', 1, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010029', 'B Segment', '9T1781', '4T0993', 'RETAINER', 2, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010030', 'B Segment', '9T1781', '4T1021', 'RETAINER', 2, 'F', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010031', 'B Segment', '9T1781', '5J1391', 'SPRING', 1, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010032', 'B Segment', '9T1781', '4T0998', 'LEVER', 1, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010033', 'B Segment', '9T1781', '4T5795', 'BEARING', 2, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010034', 'B Segment', '9T1781', '4T5945', 'RING', 1, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010035', 'B Segment', '9T1781', '5P5874', 'SEAL-O-RING', 1, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010036', 'B Segment', '9T1781', '6L5897', 'BOLT-HEX SKT HD', 2, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010037', 'B Segment', '9T1781', '6V5391', 'SEAL-O RING', 2, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010038', 'B Segment', '9T1781', '8T0334', 'WASHER-HARD', 2, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010039', 'B Segment', '9T1781', '9H6761', 'SEAL-O RING', 1, 'G', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010040', 'B Segment', '9T1781', '4T2692', 'HOUSING', 1, 'H', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010041', 'B Segment', '9T1781', '9T4683', 'COVER', 1, 'I', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010042', 'B Segment', '9T1781', '9T4684', 'HOUSING', 1, 'I', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010043', 'B Segment', '9T1781', '9T4685', 'PLUG-NPTF', 3, 'I', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010044', 'B Segment', '9T1781', '9T4697', 'BOOT', 1, 'I', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742284590249010045', 'B Segment', '9T1781', '7X0277', 'BOLT', 2, 'I', 6, '2025-03-18 15:56:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409073010000', 'B Segment', '9T1788', '1008010', 'VALVE', 2, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409073010001', 'B Segment', '9T1788', '1008011', 'PLUG', 1, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409073010002', 'B Segment', '9T1788', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409073010003', 'B Segment', '9T1788', '2S2596', 'SPRING', 2, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409073010004', 'B Segment', '9T1788', '9J8126', 'PLUG-ORIFICE', 1, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010000', 'B Segment', '9T1788', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010001', 'B Segment', '9T1788', '9S4182', 'PLUG-LD STOR', 1, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010002', 'B Segment', '9T1788', '4K1388', 'SEAL-O-RING-STOR', 2, 'A', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010003', 'B Segment', '9T1788', '1008012', 'BODY', 1, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010004', 'B Segment', '9T1788', '4T5073', 'RING-BACKUP', 2, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010005', 'B Segment', '9T1788', '7J9933', 'SEAL-O RING', 2, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010006', 'B Segment', '9T1788', '4T1108', 'PLUG', 1, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010007', 'B Segment', '9T1788', '4J5351', 'SEAL-O RING,RUBBER', 1, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010008', 'B Segment', '9T1788', '4T5072', 'RING-BACKUP', 1, 'B', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409074010009', 'B Segment', '9T1788', '4J7533', 'SEAL-O-RING-STOR', 2, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409077010000', 'B Segment', '9T1788', '9S8001', 'PLUG-LD STOR', 2, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010000', 'B Segment', '9T1788', '4T1860', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010001', 'B Segment', '9T1788', '4T1854', 'COVER', 1, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010002', 'B Segment', '9T1788', '4L7711', 'SEAL-O RING', 1, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010003', 'B Segment', '9T1788', '4T1849', 'HOUSING', 1, 'C', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010004', 'B Segment', '9T1788', '2D0598', 'SEAL-O RING', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010005', 'B Segment', '9T1788', '9T3976', 'SLEEVE-RETAINER', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010006', 'B Segment', '9T1788', '2D6642', 'BALL', 6, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010007', 'B Segment', '9T1788', '4T1851', 'RETAINER', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010008', 'B Segment', '9T1788', '9T0953', 'SPRING', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010009', 'B Segment', '9T1788', '9T2125', 'RETAINER', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010010', 'B Segment', '9T1788', '1165174', 'PLATE-IDENT', 1, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409079010011', 'B Segment', '9T1788', '5P2955', 'BOLT-HEX HEAD', 2, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409080010000', 'B Segment', '9T1788', '8T4224', 'WASHER-HARD', 4, 'D', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409085010000', 'B Segment', '9T1788', '1216645', 'VALVE GP-RELIEF', 1, 'F', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409085010001', 'B Segment', '9T1788', '5M2057', 'SEAL-O-RING', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409085010002', 'B Segment', '9T1788', '1239624', 'SPRING', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409085010003', 'B Segment', '9T1788', '8T4896', 'WASHER-HARD', 2, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409086010000', 'B Segment', '9T1788', '8T9377', 'BOLT', 2, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409086010001', 'B Segment', '9T1788', '4T0993', 'RETAINER', 2, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409086010002', 'B Segment', '9T1788', '9T6394', 'SPRING', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409086010003', 'B Segment', '9T1788', '9T2092', 'DETENT', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409086010004', 'B Segment', '9T1788', '9T2093', 'BOLT', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409087010000', 'B Segment', '9T1788', '7J0204', 'SEAL-O-RING', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409088010000', 'B Segment', '9T1788', '4T0998', 'LEVER', 1, 'G', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409088010001', 'B Segment', '9T1788', '4T2692', 'HOUSING', 1, 'H', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409088010002', 'B Segment', '9T1788', '4T5795', 'BEARING', 2, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409088010003', 'B Segment', '9T1788', '4T5945', 'RING', 1, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409088010004', 'B Segment', '9T1788', '5P5874', 'SEAL-O-RING', 1, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409089010000', 'B Segment', '9T1788', '6L5897', 'BOLT-HEX SKT HD', 2, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409089010001', 'B Segment', '9T1788', '6V5391', 'SEAL-O RING', 2, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409090010000', 'B Segment', '9T1788', '8T0334', 'WASHER-HARD', 2, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409091010000', 'B Segment', '9T1788', '9H6761', 'SEAL-O RING', 1, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409091010001', 'B Segment', '9T1788', '9T4683', 'COVER', 1, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010000', 'B Segment', '9T1788', '9T4684', 'HOUSING', 1, 'I', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010001', 'B Segment', '9T1788', '9T4685', 'PLUG-NPTF', 3, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010002', 'B Segment', '9T1788', '9T4697', 'BOOT', 1, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010003', 'B Segment', '9T1788', '9T2927', 'RETAINER', 2, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010004', 'B Segment', '9T1788', '7X0277', 'BOLT', 2, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409092010005', 'B Segment', '9T1788', '4J0522', 'SEAL-O-RING', 3, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409093010000', 'B Segment', '9T1788', '4J8997', 'SEAL-O-RING', 1, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742285409093010001', 'B Segment', '9T1788', '6V5555', 'SEAL-O RING', 3, 'J', 6, '2025-03-18 16:10:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208963010000', '6015B', '6055348', '4237715', 'VALVE ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208966010000', '6015B', '6055348', '7L8695', 'SPRING-LINK ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010000', '6015B', '6055348', '1539989', 'PLUG ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010001', '6015B', '6055348', '3G5003', 'BEARING-SLEEVE ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010002', '6015B', '6055348', '6K6307', 'SEAL-O-RING ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010003', '6015B', '6055348', '5P0049', 'COVER ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010004', '6015B', '6055348', '1P3705', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010005', '6015B', '6055348', '5P8077', 'FLANGE-SPLIT ', 2, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010006', '6015B', '6055348', '8T4140', 'BOLT-HEX HEAD ', 4, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010007', '6015B', '6055348', '9X8257', 'WASHER-HARD ', 4, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010008', '6015B', '6055348', '5K6816', 'CLIP ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010009', '6015B', '6055348', '6047184', 'FILM-PROTECTION ', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742349208967010010', '6015B', '6055348', '6285087', 'PLATE', 1, 'A', 1, '2025-03-19 09:53:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029726010000', 'B Segment', '3623309', '9J8126', '节流阀', 1, 'A', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029726010001', 'B Segment', '3623309', '2608590', '梭阀', 1, 'A', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010000', 'B Segment', '3623309', '8T4145', '螺钉', 2, 'A', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010001', 'B Segment', '3623309', '9X8256', '垫片', 2, 'A', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010002', 'B Segment', '3623309', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010003', 'B Segment', '3623309', '4T1701', '弹簧', 1, 'B', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010004', 'B Segment', '3623309', '8T4185', '螺钉', 2, 'B', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010005', 'B Segment', '3623309', '4T1649', '端盖', 1, 'B', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010006', 'B Segment', '3623309', '3529954', '弹簧', 1, 'D', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010007', 'B Segment', '3623309', '2077434', '弹簧座', 1, 'D', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010008', 'B Segment', '3623309', '3529956', '弹簧座', 1, 'D', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010009', 'B Segment', '3623309', '1879630', '密封O型圈', 2, 'D', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010010', 'B Segment', '3623309', '1H1023', '密封O型圈', 4, 'D', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010011', 'B Segment', '3623309', '2077434', '弹簧座', 1, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010012', 'B Segment', '3623309', '3529956', '弹簧座', 1, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010013', 'B Segment', '3623309', '8T4145', '螺钉', 2, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010014', 'B Segment', '3623309', '9X8256', '垫片', 2, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010015', 'B Segment', '3623309', '3529954', '弹簧', 1, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010016', 'B Segment', '3623309', '3623326', '铭牌', 1, 'E', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010017', 'B Segment', '3623309', '3617213', '阀', 1, 'F1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010018', 'B Segment', '3623309', '1919247', '垫片', 1, 'F1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010019', 'B Segment', '3623309', '1982914', '螺母', 1, 'F1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010020', 'B Segment', '3623309', '3128629', '电磁线圈', 1, 'F1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010021', 'B Segment', '3623309', '3161438', '阀杆', 1, 'F1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010022', 'B Segment', '3623309', '3617213', '阀', 1, 'F2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010023', 'B Segment', '3623309', '1919247', '垫片', 1, 'F2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010024', 'B Segment', '3623309', '1982914', '螺母', 1, 'F2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010025', 'B Segment', '3623309', '3128629', '电磁线圈', 1, 'F2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010026', 'B Segment', '3623309', '3161438', '阀杆', 1, 'F2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010027', 'B Segment', '3623309', '1503065', '直角弯头', 1, 'F3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010028', 'B Segment', '3623309', '6V0852', '防尘套', 2, 'F3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010029', 'B Segment', '3623309', '2427954', '铝盖', 1, 'F4', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010030', 'B Segment', '3623309', '2427955', '铝盖', 1, 'F5', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010031', 'B Segment', '3623309', '9S8002', '堵头', 1, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010032', 'B Segment', '3623309', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010033', 'B Segment', '3623309', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010034', 'B Segment', '3623309', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010035', 'B Segment', '3623309', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010036', 'B Segment', '3623309', '4T1108', '堵头', 1, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010037', 'B Segment', '3623309', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029727010038', 'B Segment', '3623309', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010000', 'B Segment', '3623309', '1008011', '堵头', 1, '预装配2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010001', 'B Segment', '3623309', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010002', 'B Segment', '3623309', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010003', 'B Segment', '3623309', '1008010', '阀', 1, '预装配2', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010004', 'B Segment', '3623309', '6V5556', '密封O型圈', 1, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010005', 'B Segment', '3623309', '3664972', '密封环', 1, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010006', 'B Segment', '3623309', '4T4511', '导套', 1, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010007', 'B Segment', '3623309', '9S4180', '堵头', 1, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010008', 'B Segment', '3623309', '4J7533', '密封O型圈', 1, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010009', 'B Segment', '3623309', '4J5351', '密封O型圈', 2, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010010', 'B Segment', '3623309', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010011', 'B Segment', '3623309', '4T5072', '密封环', 2, '预装配3', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010012', 'B Segment', '3623309', '7W7381', '连接头', 1, '预装配4', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010013', 'B Segment', '3623309', '3J1907', '密封O型圈', 1, '预装配4', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010014', 'B Segment', '3623309', '6V3965', '测压头', 2, '预装配4', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742353029728010015', 'B Segment', '3623309', '2147568', '密封O型圈', 2, '预装配4', 6, '2025-03-19 10:57:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421288010000', 'B Segment', '2350403', '9J8126', '节流阀', 1, 'A', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421288010001', 'B Segment', '2350403', '2350389', '铭牌', 1, 'A', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421288010002', 'B Segment', '2350403', '4T1860', '阀', 1, 'A', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421288010003', 'B Segment', '2350403', '1216649', '溢流阀', 1, 'B', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421288010004', 'B Segment', '2350403', '9X2027', '垫片', 2, 'B', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010000', 'B Segment', '2350403', '0858091', '螺钉', 2, 'B', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010001', 'B Segment', '2350403', '1730515', '挡板', 1, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010002', 'B Segment', '2350403', '1239624', '弹簧', 1, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010003', 'B Segment', '2350403', '5K0227', '密封O型圈', 2, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010004', 'B Segment', '2350403', '1537549', '弹簧座', 1, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010005', 'B Segment', '2350403', '1537553', '弹簧', 1, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010006', 'B Segment', '2350403', '1635671', '垫片', 1, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010007', 'B Segment', '2350403', '9X6154', '螺钉', 2, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010008', 'B Segment', '2350403', '5M2057', '密封O型圈', 2, 'C', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010009', 'B Segment', '2350403', '1537067', '弹簧座', 1, 'D', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010010', 'B Segment', '2350403', '1537550', '弹簧座', 1, 'D', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010011', 'B Segment', '2350403', '1027365', '螺钉', 2, 'D', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010012', 'B Segment', '2350403', '1640938', '弹簧', 1, 'D', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010013', 'B Segment', '2350403', '1704001', '弹簧', 1, 'D', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010014', 'B Segment', '2350403', '1730511', '端盖', 1, 'F', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010015', 'B Segment', '2350403', '1730512', '端盖', 1, 'H', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010016', 'B Segment', '2350403', '1008012', '阀体', 1, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010017', 'B Segment', '2350403', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010018', 'B Segment', '2350403', '1008010', '阀', 2, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010019', 'B Segment', '2350403', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010020', 'B Segment', '2350403', '4J7533', '密封O型圈', 1, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010021', 'B Segment', '2350403', '9S8001', '堵头', 1, '预装配1', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010022', 'B Segment', '2350403', '1008011', '堵头', 1, '预装配2', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010023', 'B Segment', '2350403', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010024', 'B Segment', '2350403', '2S2596', '弹簧', 2, '预装配2', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010025', 'B Segment', '2350403', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010026', 'B Segment', '2350403', '1612685', '螺钉', 1, '预装配3', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010027', 'B Segment', '2350403', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010028', 'B Segment', '2350403', '4J5351', '密封O型圈', 1, '预装配3', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010029', 'B Segment', '2350403', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742361421289010030', 'B Segment', '2350403', '4T5072', '密封环', 1, '预装配3', 6, '2025-03-19 13:17:01', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010000', 'B Segment', '2698155', '3D4603', '节流阀', 1, 'A', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010001', 'B Segment', '2698155', '4T1860', '阀', 1, 'A', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010002', 'B Segment', '2698155', '5M2057', '密封O型圈', 1, 'A', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010003', 'B Segment', '2698155', '1537549', '弹簧座', 1, 'B', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010004', 'B Segment', '2698155', '1537553', '弹簧', 1, 'B', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010005', 'B Segment', '2698155', '1635671', '垫片', 1, 'B', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010006', 'B Segment', '2698155', '9X6154', '螺钉', 2, 'B', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010007', 'B Segment', '2698155', '5K0227', '密封O型圈', 2, 'B', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010008', 'B Segment', '2698155', '1537067', '弹簧座', 1, 'C', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010009', 'B Segment', '2698155', '1537550', '弹簧座', 1, 'C', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010010', 'B Segment', '2698155', '1640938', '弹簧', 1, 'C', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010011', 'B Segment', '2698155', '1027365', '螺钉', 2, 'D', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010012', 'B Segment', '2698155', '2732150', '铭牌', 1, 'D', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010013', 'B Segment', '2698155', '1704001', '弹簧', 1, 'D', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010014', 'B Segment', '2698155', '1730515', '挡板', 1, 'D', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010015', 'B Segment', '2698155', '1730511', '端盖', 1, 'E', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010016', 'B Segment', '2698155', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010017', 'B Segment', '2698155', '1008010', '阀', 2, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010018', 'B Segment', '2698155', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010019', 'B Segment', '2698155', '9S8002', '密封O型圈', 1, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010020', 'B Segment', '2698155', '3J7354', '堵头', 1, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010021', 'B Segment', '2698155', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010022', 'B Segment', '2698155', '2S2596', '弹簧', 2, '预装配2', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010023', 'B Segment', '2698155', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010024', 'B Segment', '2698155', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010025', 'B Segment', '2698155', '1008011', '堵头', 1, '预装配2', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010026', 'B Segment', '2698155', '9S4181', '堵头', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010027', 'B Segment', '2698155', '4J5351', '密封O型圈', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010028', 'B Segment', '2698155', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010029', 'B Segment', '2698155', '4T5072', '密封环', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010030', 'B Segment', '2698155', '1612685', '螺钉', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010031', 'B Segment', '2698155', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742364979708010032', 'B Segment', '2698155', '7M8485', '密封O型圈', 1, '预装配3', 6, '2025-03-19 14:16:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010000', 'MG Segment', '6E3037', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010001', 'MG Segment', '6E3037', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010002', 'MG Segment', '6E3037', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010003', 'MG Segment', '6E3037', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010004', 'MG Segment', '6E3037', '3405472', '左手柄', 1, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010005', 'MG Segment', '6E3037', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010006', 'MG Segment', '6E3037', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010007', 'MG Segment', '6E3037', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010008', 'MG Segment', '6E3037', '6E3019', '阀', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010009', 'MG Segment', '6E3037', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010010', 'MG Segment', '6E3037', '1082187', '堵头', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010011', 'MG Segment', '6E3037', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010012', 'MG Segment', '6E3037', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010013', 'MG Segment', '6E3037', '1063660', '活塞', 2, 'B', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010014', 'MG Segment', '6E3037', '6E3007', '弹簧', 1, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010015', 'MG Segment', '6E3037', '1011973', '轴承座', 4, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010016', 'MG Segment', '6E3037', '8T4189', '螺栓', 2, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010017', 'MG Segment', '6E3037', '8T4224', '垫片', 2, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010018', 'MG Segment', '6E3037', '1027412', '弹簧', 1, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010019', 'MG Segment', '6E3037', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010020', 'MG Segment', '6E3037', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010021', 'MG Segment', '6E3037', '1011971', '杆体', 1, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010022', 'MG Segment', '6E3037', '1012480', '盖板', 1, 'C', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010023', 'MG Segment', '6E3037', '2213676', '阀芯', 1, 'D', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010024', 'MG Segment', '6E3037', '1011984', '阀座', 1, 'E', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010025', 'MG Segment', '6E3037', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010026', 'MG Segment', '6E3037', '1118234', '弹簧', 1, 'F', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010027', 'MG Segment', '6E3037', '1011980', '盖板', 1, 'F', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010028', 'MG Segment', '6E3037', '2227774', '溢流阀', 1, 'F', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010029', 'MG Segment', '6E3037', '8T6869', '螺栓', 2, 'G', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010030', 'MG Segment', '6E3037', '8T4224', '垫片', 2, 'G', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010031', 'MG Segment', '6E3037', '1070520', '铭牌', 1, 'G', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742366754042010032', 'MG Segment', '6E3037', '1084916', '制动组件', 1, 'G', 8, '2025-03-19 14:45:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010000', 'MG Stack', '1048646', '9S8005', '螺堵', 2, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010001', 'MG Stack', '1048646', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010002', 'MG Stack', '1048646', '3603688', '螺堵', 1, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010003', 'MG Stack', '1048646', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010004', 'MG Stack', '1048646', '7S0530', '夹子', 1, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010005', 'MG Stack', '1048646', '8T4189', '螺栓', 1, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010006', 'MG Stack', '1048646', '8T4224', '垫圈', 1, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010007', 'MG Stack', '1048646', '8T4172', '螺栓', 3, 'A', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010008', 'MG Stack', '1048646', '1010509', '密封板', 6, 'B', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010009', 'MG Stack', '1048646', '1070499', '铭牌', 1, 'B', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010010', 'MG Stack', '1048646', '8T4896', '垫圈', 1, 'B', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010011', 'MG Stack', '1048646', '7X2546', '螺栓', 2, 'B', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010012', 'MG Stack', '1048646', '8T6408', '螺栓', 1, 'B', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010013', 'MG Stack', '1048646', '2191891', '塑料螺堵', 8, 'C', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010014', 'MG Stack', '1048646', '2191893', '塑料螺堵', 2, 'D', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367143357010015', 'MG Stack', '1048646', '2521631', '塑料螺堵', 1, 'C', 2, '2025-03-19 14:52:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010000', 'MG Segment', '1070543', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010001', 'MG Segment', '1070543', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010002', 'MG Segment', '1070543', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010003', 'MG Segment', '1070543', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010004', 'MG Segment', '1070543', '3405472', '右手柄', 1, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010005', 'MG Segment', '1070543', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010006', 'MG Segment', '1070543', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010007', 'MG Segment', '1070543', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010008', 'MG Segment', '1070543', '6E3019', '阀', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010009', 'MG Segment', '1070543', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010010', 'MG Segment', '1070543', '1082187', '堵头', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010011', 'MG Segment', '1070543', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010012', 'MG Segment', '1070543', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010013', 'MG Segment', '1070543', '1063659', '活塞', 1, 'B', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010014', 'MG Segment', '1070543', '6E3007', '弹簧', 1, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010015', 'MG Segment', '1070543', '1011973', '轴承座', 4, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010016', 'MG Segment', '1070543', '8T4189', '螺栓', 2, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010017', 'MG Segment', '1070543', '8T4224', '垫片', 2, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010018', 'MG Segment', '1070543', '1027412', '弹簧', 1, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010019', 'MG Segment', '1070543', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010020', 'MG Segment', '1070543', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010021', 'MG Segment', '1070543', '1011971', '杆体', 1, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010022', 'MG Segment', '1070543', '1012480', '盖板', 1, 'C', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010023', 'MG Segment', '1070543', '1011148', '阀芯', 1, 'D', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010024', 'MG Segment', '1070543', '1011984', '阀座', 1, 'E', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010025', 'MG Segment', '1070543', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010026', 'MG Segment', '1070543', '1118233', '弹簧', 1, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010027', 'MG Segment', '1070543', '1011978', '盖板', 1, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010028', 'MG Segment', '1070543', '8T4189', '螺栓', 2, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010029', 'MG Segment', '1070543', '8T4224', '垫片', 2, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010030', 'MG Segment', '1070543', '2639657', '溢流阀', 1, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367384400010031', 'MG Segment', '1070543', '1070521', '铭牌', 1, 'F', 8, '2025-03-19 14:56:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010000', 'MG Stack', '2500551', '3K0360', '橡胶密封圈', 2, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010001', 'MG Stack', '2500551', '9S8005', '钢铁制塞堵', 2, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010002', 'MG Stack', '2500551', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010003', 'MG Stack', '2500551', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010004', 'MG Stack', '2500551', '2147568', '橡胶密封圈', 2, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010005', 'MG Stack', '2500551', '9S4191', '钢铁制塞堵', 2, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010006', 'MG Stack', '2500551', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010007', 'MG Stack', '2500551', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010008', 'MG Stack', '2500551', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010009', 'MG Stack', '2500551', '1010509', '密封衬垫', 6, 'B', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010010', 'MG Stack', '2500551', '8T4896', '钢铁制垫圈', 1, 'B', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010011', 'MG Stack', '2500551', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010012', 'MG Stack', '2500551', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010013', 'MG Stack', '2500551', '8T4172', '钢铁制螺栓', 3, 'C', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010014', 'MG Stack', '2500551', '3K6113', '钢铁制垫圈', 3, 'C', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010015', 'MG Stack', '2500551', '2660531', '插座盖', 2, 'C', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010016', 'MG Stack', '2500551', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010017', 'MG Stack', '2500551', '2191891', '塑料塞堵', 8, 'C', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742367808978010018', 'MG Stack', '2500551', '2191893', '塑料塞堵', 2, 'D', 2, '2025-03-19 15:03:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010000', 'MG Stack', '3701232', '9S4180', '螺堵', 1, 'A', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010001', 'MG Stack', '3701232', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010002', 'MG Stack', '3701232', '2191893', '塑料堵', 2, 'A', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010003', 'MG Stack', '3701232', '2521631', '塑料堵', 1, 'A', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010004', 'MG Stack', '3701232', '8T4189', '螺栓', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010005', 'MG Stack', '3701232', '8T4224', '垫圈', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010006', 'MG Stack', '3701232', '7S0530', '夹子', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010007', 'MG Stack', '3701232', '3701234', '铭牌', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010008', 'MG Stack', '3701232', '8T6408', '螺栓', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010009', 'MG Stack', '3701232', '8T4186', '螺栓', 3, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010010', 'MG Stack', '3701232', '8T4896', '垫圈', 1, 'B', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010011', 'MG Stack', '3701232', '1010509', '密封板', 5, 'C', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010012', 'MG Stack', '3701232', '7X2546', '螺栓', 2, 'C', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370331875010013', 'MG Stack', '3701232', '2191891', '塑料堵', 8, 'D', 2, '2025-03-19 15:45:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530245010000', 'MG Stack', '3701261', '9S8005', '螺堵', 2, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010000', 'MG Stack', '3701261', '3K0360', 'O型圈', 2, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010001', 'MG Stack', '3701261', '9S4180', '螺堵', 1, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010002', 'MG Stack', '3701261', '4J7533', 'O型圈', 1, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010003', 'MG Stack', '3701261', '2521631', '塑料塞堵', 1, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010004', 'MG Stack', '3701261', '2191891', '塑料塞堵', 8, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010005', 'MG Stack', '3701261', '2191893', '塑料塞堵', 2, 'A', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010006', 'MG Stack', '3701261', '8T4189', '螺栓', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010007', 'MG Stack', '3701261', '8T4224', '垫圈', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010008', 'MG Stack', '3701261', '7S0530', '夹子', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010009', 'MG Stack', '3701261', '3701263', '铭牌', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530246010010', 'MG Stack', '3701261', '8T6408', '螺栓', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530247010000', 'MG Stack', '3701261', '8T4172', '螺栓', 3, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530247010001', 'MG Stack', '3701261', '8T4896', '垫圈', 1, 'B', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530247010002', 'MG Stack', '3701261', '7X2546', '螺栓', 2, 'C', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370530247010003', 'MG Stack', '3701261', '1010509', '密封板', 6, 'C', 2, '2025-03-19 15:48:50', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798605010000', 'MG Segment', '3701259', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798605010001', 'MG Segment', '3701259', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798605010002', 'MG Segment', '3701259', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798605010003', 'MG Segment', '3701259', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798605010004', 'MG Segment', '3701259', '3405472', '左手柄', 1, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798606010000', 'MG Segment', '3701259', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798607010000', 'MG Segment', '3701259', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798607010001', 'MG Segment', '3701259', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798607010002', 'MG Segment', '3701259', '6E3019', '阀', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798607010003', 'MG Segment', '3701259', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798608010000', 'MG Segment', '3701259', '1082187', '堵头', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798613010000', 'MG Segment', '3701259', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798613010001', 'MG Segment', '3701259', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798614010000', 'MG Segment', '3701259', '1063660', '活塞', 2, 'B', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010000', 'MG Segment', '3701259', '6E3007', '弹簧', 1, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010001', 'MG Segment', '3701259', '1011973', '轴承座', 4, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010002', 'MG Segment', '3701259', '8T4189', '螺栓', 2, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010003', 'MG Segment', '3701259', '8T4224', '垫片', 2, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010004', 'MG Segment', '3701259', '1027412', '弹簧', 1, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798615010005', 'MG Segment', '3701259', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798616010000', 'MG Segment', '3701259', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798616010001', 'MG Segment', '3701259', '1011971', '杆体', 1, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798616010002', 'MG Segment', '3701259', '1012480', '盖板', 1, 'C', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798616010003', 'MG Segment', '3701259', '2213676', '阀芯', 1, 'D', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798616010004', 'MG Segment', '3701259', '1011984', '阀座', 1, 'E', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010000', 'MG Segment', '3701259', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010001', 'MG Segment', '3701259', '1118234', '弹簧', 1, 'F', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010002', 'MG Segment', '3701259', '1011980', '盖板', 1, 'F', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010003', 'MG Segment', '3701259', '2227774', '溢流阀', 1, 'F', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010004', 'MG Segment', '3701259', '8T6869', '螺栓', 2, 'G', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010005', 'MG Segment', '3701259', '8T4224', '垫片', 2, 'G', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798617010006', 'MG Segment', '3701259', '3701260', '铭牌', 1, 'G', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742370798618010000', 'MG Segment', '3701259', '1084916', '制动组件', 1, 'G', 8, '2025-03-19 15:53:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196815010000', 'MG Segment', '3701257', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196816010000', 'MG Segment', '3701257', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196816010001', 'MG Segment', '3701257', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196819010000', 'MG Segment', '3701257', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196824010000', 'MG Segment', '3701257', '3405472', '右手柄', 1, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196827010000', 'MG Segment', '3701257', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196827010001', 'MG Segment', '3701257', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196827010002', 'MG Segment', '3701257', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196827010003', 'MG Segment', '3701257', '6E3019', '阀', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196829010000', 'MG Segment', '3701257', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196829010001', 'MG Segment', '3701257', '1082187', '堵头', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196829010002', 'MG Segment', '3701257', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196829010003', 'MG Segment', '3701257', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196831010000', 'MG Segment', '3701257', '1063659', '活塞', 1, 'B', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196831010001', 'MG Segment', '3701257', '6E3007', '弹簧', 1, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196832010000', 'MG Segment', '3701257', '1011973', '轴承座', 4, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196832010001', 'MG Segment', '3701257', '8T4189', '螺栓', 2, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196832010002', 'MG Segment', '3701257', '8T4224', '垫片', 2, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196833010000', 'MG Segment', '3701257', '1027412', '弹簧', 1, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196833010001', 'MG Segment', '3701257', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196834010000', 'MG Segment', '3701257', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196835010000', 'MG Segment', '3701257', '1011971', '杆体', 1, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010000', 'MG Segment', '3701257', '1012480', '盖板', 1, 'C', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010001', 'MG Segment', '3701257', '1024577', '阀芯', 1, 'D', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010002', 'MG Segment', '3701257', '1011984', '阀座', 1, 'E', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010003', 'MG Segment', '3701257', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010004', 'MG Segment', '3701257', '1118233', '弹簧', 1, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010005', 'MG Segment', '3701257', '1011978', '盖板', 1, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010006', 'MG Segment', '3701257', '8T4189', '螺栓', 2, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196838010007', 'MG Segment', '3701257', '8T4224', '垫片', 2, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196841010000', 'MG Segment', '3701257', '1398472', '溢流阀', 1, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371196841010001', 'MG Segment', '3701257', '3701258', '铭牌', 1, 'F', 8, '2025-03-19 15:59:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767207010000', 'MG Segment', '3701253', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767209010000', 'MG Segment', '3701253', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767209010001', 'MG Segment', '3701253', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767209010002', 'MG Segment', '3701253', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767210010000', 'MG Segment', '3701253', '3405472', '右手柄', 1, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767210010001', 'MG Segment', '3701253', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767210010002', 'MG Segment', '3701253', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767212010000', 'MG Segment', '3701253', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767212010001', 'MG Segment', '3701253', '6E3019', '阀', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767212010002', 'MG Segment', '3701253', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767213010000', 'MG Segment', '3701253', '1082187', '堵头', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767213010001', 'MG Segment', '3701253', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767213010002', 'MG Segment', '3701253', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767213010003', 'MG Segment', '3701253', '1063659', '活塞', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767214010000', 'MG Segment', '3701253', '6E3007', '弹簧', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767214010001', 'MG Segment', '3701253', '1011973', '轴承座', 4, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767214010002', 'MG Segment', '3701253', '8T4189', '螺栓', 2, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767214010003', 'MG Segment', '3701253', '8T4224', '垫片', 2, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767214010004', 'MG Segment', '3701253', '1027412', '弹簧', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767215010000', 'MG Segment', '3701253', '2K8199', '密封O型圈', 2, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767215010001', 'MG Segment', '3701253', '4D9986', '密封O型圈', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767215010002', 'MG Segment', '3701253', '1011971', '杆体', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767216010000', 'MG Segment', '3701253', '1012480', '盖板', 1, 'B', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767216010001', 'MG Segment', '3701253', '1011155', '阀芯', 1, 'D', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767219010000', 'MG Segment', '3701253', '1011984', '阀座', 1, 'E', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767219010001', 'MG Segment', '3701253', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767226010000', 'MG Segment', '3701253', '1118233', '弹簧', 1, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767226010001', 'MG Segment', '3701253', '1011978', '盖板', 1, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767226010002', 'MG Segment', '3701253', '8T4189', '螺栓', 2, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767226010003', 'MG Segment', '3701253', '8T4224', '垫片', 2, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767227010000', 'MG Segment', '3701253', '1398472', '溢流阀', 1, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371767227010001', 'MG Segment', '3701253', '3701254', '铭牌', 1, 'F', 8, '2025-03-19 16:09:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967062010000', 'MG Segment', '3701235', '9S8005', '堵头', 1, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967062010001', 'MG Segment', '3701235', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967063010000', 'MG Segment', '3701235', '9J0404', '堵头', 2, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967063010001', 'MG Segment', '3701235', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967063010002', 'MG Segment', '3701235', '3405472', '右手柄', 1, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967063010003', 'MG Segment', '3701235', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967064010000', 'MG Segment', '3701235', '6E4502', '堵头', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967064010001', 'MG Segment', '3701235', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967064010002', 'MG Segment', '3701235', '6E3019', '阀', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967064010003', 'MG Segment', '3701235', '6E5153', '弹簧', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967069010000', 'MG Segment', '3701235', '1082187', '堵头', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967070010000', 'MG Segment', '3701235', '5B9318', '钢球', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967070010001', 'MG Segment', '3701235', '9J0403', '弹簧', 2, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967071010000', 'MG Segment', '3701235', '1063659', '活塞', 1, 'B', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967072010000', 'MG Segment', '3701235', '6E3007', '弹簧', 1, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967072010001', 'MG Segment', '3701235', '1011973', '轴承座', 4, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967073010000', 'MG Segment', '3701235', '8T4189', '螺栓', 2, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967075010000', 'MG Segment', '3701235', '8T4224', '垫片', 2, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967076010000', 'MG Segment', '3701235', '1027412', '弹簧', 1, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967076010001', 'MG Segment', '3701235', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010000', 'MG Segment', '3701235', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010001', 'MG Segment', '3701235', '1011971', '杆体', 1, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010002', 'MG Segment', '3701235', '1012480', '盖板', 1, 'C', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010003', 'MG Segment', '3701235', '1011148', '阀芯', 1, 'D', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010004', 'MG Segment', '3701235', '1011984', '阀座', 1, 'E', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010005', 'MG Segment', '3701235', '8T4138', '螺栓', 2, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010006', 'MG Segment', '3701235', '1118233', '弹簧', 1, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967077010007', 'MG Segment', '3701235', '1011978', '盖板', 1, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967078010000', 'MG Segment', '3701235', '8T4189', '螺栓', 2, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967078010001', 'MG Segment', '3701235', '8T4224', '垫片', 2, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967078010002', 'MG Segment', '3701235', '1398472', '溢流阀', 1, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742371967078010003', 'MG Segment', '3701235', '3701236', '铭牌', 1, 'F', 8, '2025-03-19 16:12:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010000', 'MG Segment', '3701245', '9S8005', '堵头', 1, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010001', 'MG Segment', '3701245', '3K0360', '密封O型圈', 1, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010002', 'MG Segment', '3701245', '9J0404', '堵头', 2, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010003', 'MG Segment', '3701245', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010004', 'MG Segment', '3701245', '3405470', '右手柄', 1, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010005', 'MG Segment', '3701245', '8M4437', '密封O型圈', 2, 'A', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010006', 'MG Segment', '3701245', '6E4502', '堵头', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010007', 'MG Segment', '3701245', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010008', 'MG Segment', '3701245', '6E3019', '阀', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010009', 'MG Segment', '3701245', '6E5153', '弹簧', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010010', 'MG Segment', '3701245', '1082187', '堵头', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010011', 'MG Segment', '3701245', '5B9318', '钢球', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010012', 'MG Segment', '3701245', '9J0403', '弹簧', 2, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010013', 'MG Segment', '3701245', '1063659', '活塞', 1, 'B', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010014', 'MG Segment', '3701245', '6E3007', '弹簧', 1, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010015', 'MG Segment', '3701245', '1011973', '轴承座', 4, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010016', 'MG Segment', '3701245', '8T4189', '螺栓', 2, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010017', 'MG Segment', '3701245', '8T4224', '垫片', 2, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010018', 'MG Segment', '3701245', '1027412', '弹簧', 1, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010019', 'MG Segment', '3701245', '2K8199', '密封O型圈', 2, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010020', 'MG Segment', '3701245', '4D9986', '密封O型圈', 1, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010021', 'MG Segment', '3701245', '1011971', '杆体', 1, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010022', 'MG Segment', '3701245', '1012480', '盖板', 1, 'C', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010023', 'MG Segment', '3701245', '1011148', '阀芯', 1, 'D', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010024', 'MG Segment', '3701245', '1011984', '阀座', 1, 'E', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010025', 'MG Segment', '3701245', '8T4138', '螺栓', 2, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010026', 'MG Segment', '3701245', '1118233', '弹簧', 1, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010027', 'MG Segment', '3701245', '1011978', '盖板', 1, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010028', 'MG Segment', '3701245', '8T4189', '螺栓', 2, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010029', 'MG Segment', '3701245', '8T4224', '垫片', 2, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742438556118010030', 'MG Segment', '3701245', '3701246', '铭牌', 1, 'F', 8, '2025-03-20 10:42:36', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491901010000', 'B Stack', '3934854', '3966622', 'PLATE-IDENT ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491902010000', 'B Stack', '3934854', '8J6815', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491902010001', 'B Stack', '3934854', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491902010002', 'B Stack', '3934854', '9S4182', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491903010000', 'B Stack', '3934854', '4T5896', 'VALVE GP-CHECK-C', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491903010001', 'B Stack', '3934854', '1047574', 'VALVE GP-RELIEF ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491907010000', 'B Stack', '3934854', '3966619', 'VALVE GP-D RLF-A', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491907010001', 'B Stack', '3934854', '5H4019', 'COVER ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491907010002', 'B Stack', '3934854', '4J0520', 'SEAL-O-RING ', 1, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491907010003', 'B Stack', '3934854', '8C3206', 'FLANGE-SPLIT ', 2, 'A', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491908010000', 'B Stack', '3934854', '8T4121', 'WASHER-HARD ', 4, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491908010001', 'B Stack', '3934854', '8T4196', 'BOLT-HEX HEAD ', 4, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491908010002', 'B Stack', '3934854', '3J1907', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491908010003', 'B Stack', '3934854', '9S4191', 'PLUG-LD STOR ', 2, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491910010000', 'B Stack', '3934854', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491910010001', 'B Stack', '3934854', '9S4182', 'PLUG-LD STOR ', 1, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491911010000', 'B Stack', '3934854', '4J0522', 'SEAL-O-RING ', 3, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010000', 'B Stack', '3934854', '6V5555', 'SEAL-O RING ', 3, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010001', 'B Stack', '3934854', '1P3702', 'SEAL-RECTANGULAR', 1, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010002', 'B Stack', '3934854', '6V8188', 'NUT-FULL ', 3, 'B', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010003', 'B Stack', '3934854', '8T4223', 'WASHER-HARD ', 3, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010004', 'B Stack', '3934854', '5H4019', 'COVER ', 6, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010005', 'B Stack', '3934854', '4J0520', 'SEAL-O-RING ', 6, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010006', 'B Stack', '3934854', '8C3206', 'FLANGE-SPLIT ', 12, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010007', 'B Stack', '3934854', '8T4121', 'WASHER-HARD ', 24, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010008', 'B Stack', '3934854', '8T4196', 'BOLT-HEX HEAD ', 24, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491912010009', 'B Stack', '3934854', '4J0522', 'SEAL-O-RING ', 9, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010000', 'B Stack', '3934854', '6V5555', 'SEAL-O RING ', 9, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010001', 'B Stack', '3934854', '4J8997', 'SEAL-O-RING ', 3, 'C', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010002', 'B Stack', '3934854', '4T1073', 'ROD ', 3, 'D', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010003', 'B Stack', '3934854', '6V8188', 'NUT-FULL ', 3, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010004', 'B Stack', '3934854', '8T4223', 'WASHER-HARD ', 3, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010005', 'B Stack', '3934854', '5H4020', 'FLANGE-COVER ', 1, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010006', 'B Stack', '3934854', '4J0522', 'SEAL-O-RING ', 1, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010007', 'B Stack', '3934854', '1P4578', 'FLANGE-SPLIT ', 2, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491913010008', 'B Stack', '3934854', '8T4121', 'WASHER-HARD ', 4, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491914010000', 'B Stack', '3934854', '8T4196', 'BOLT-HEX HEAD ', 4, 'E', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491914010001', 'B Stack', '3934854', '4K1388', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491915010000', 'B Stack', '3934854', '9S4188', 'PLUG-LD STOR ', 1, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491917010000', 'B Stack', '3934854', '3J7354', 'SEAL-O-RING-STOR', 2, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491919010000', 'B Stack', '3934854', '9S4182', 'PLUG-LD STOR ', 2, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491919010001', 'B Stack', '3934854', '3J1907', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491919010002', 'B Stack', '3934854', '9S4191', 'PLUG-LD STOR ', 1, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742439491919010003', 'B Stack', '3934854', '4805267', ' CLIP-LIFT', 2, 'F', 1, '2025-03-20 10:58:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792208010000', 'B Segment', '3939136', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792208010001', 'B Segment', '3939136', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792208010002', 'B Segment', '3939136', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792209010000', 'B Segment', '3939136', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010000', 'B Segment', '3939136', '4D0514', 'PLUG-PTF ', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010001', 'B Segment', '3939136', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010002', 'B Segment', '3939136', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010003', 'B Segment', '3939136', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010004', 'B Segment', '3939136', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010005', 'B Segment', '3939136', '4T1108', 'PLUG ', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010006', 'B Segment', '3939136', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010007', 'B Segment', '3939136', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010008', 'B Segment', '3939136', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010009', 'B Segment', '3939136', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010010', 'B Segment', '3939136', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010011', 'B Segment', '3939136', '7M8485', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010012', 'B Segment', '3939136', '9S4181', 'PLUG-LD STOR ', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010013', 'B Segment', '3939136', '4J7533', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010014', 'B Segment', '3939136', '9S4180', 'PLUG-LD STOR ', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010015', 'B Segment', '3939136', '3529956', 'RETAINER ', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010016', 'B Segment', '3939136', '3529954', 'SPRING ', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010017', 'B Segment', '3939136', '2077434', 'RETAINER ', 1, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010018', 'B Segment', '3939136', '8T4145', 'BOLT-HEX HEAD ', 2, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010019', 'B Segment', '3939136', '9X8256', 'WASHER ', 2, 'C', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010020', 'B Segment', '3939136', '3939142', 'PLATE-IDENT ', 1, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010021', 'B Segment', '3939136', '3529956', 'RETAINER ', 1, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010022', 'B Segment', '3939136', '3529954', 'SPRING ', 1, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010023', 'B Segment', '3939136', '2077434', 'RETAINER ', 1, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010024', 'B Segment', '3939136', '8T4145', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010025', 'B Segment', '3939136', '9X8256', 'WASHER ', 2, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010026', 'B Segment', '3939136', '3J1907', 'SEAL-O-RING-STOR', 2, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792218010027', 'B Segment', '3939136', '9S8004', 'PLUG-LD STOR ', 2, 'D', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010000', 'B Segment', '3939136', '3617213', 'CARTRIDGE AS ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010001', 'B Segment', '3939136', '3161438', 'CARTRIDGE AS ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010002', 'B Segment', '3939136', '3128629', 'COIL AS ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010003', 'B Segment', '3939136', '1919247', 'WASHER ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010004', 'B Segment', '3939136', '1982914', 'NUT-HEXAGON ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010005', 'B Segment', '3939136', '1879630', 'SEAL-O-RING ', 1, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010006', 'B Segment', '3939136', '1H1023', 'SEAL-O RING ', 2, 'E', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010007', 'B Segment', '3939136', '4T0947', 'VALVE GP-CHECK-D', 1, 'G', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010008', 'B Segment', '3939136', '2608590', 'VALVE GP-SHTL -B', 1, 'G', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010009', 'B Segment', '3939136', '2427955', 'HOUSING AS ', 2, 'H', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010010', 'B Segment', '3939136', '3617213', 'CARTRIDGE AS ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010011', 'B Segment', '3939136', '3161438', 'CARTRIDGE AS ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010012', 'B Segment', '3939136', '3128629', 'COIL AS ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010013', 'B Segment', '3939136', '1919247', 'WASHER ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010014', 'B Segment', '3939136', '1982914', 'NUT-HEXAGON ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010015', 'B Segment', '3939136', '1879630', 'SEAL-O-RING ', 1, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742445792219010016', 'B Segment', '3939136', '1H1023', 'SEAL-O RING ', 2, 'I', 6, '2025-03-20 12:43:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010000', 'B Segment', '3939138', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010001', 'B Segment', '3939138', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010002', 'B Segment', '3939138', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010003', 'B Segment', '3939138', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010004', 'B Segment', '3939138', '4T4207', 'PLUG-NPTF ', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010005', 'B Segment', '3939138', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010006', 'B Segment', '3939138', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010007', 'B Segment', '3939138', '4J7533', 'SEAL-O-RING-STOR', 2, 'A', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010008', 'B Segment', '3939138', '4762873', 'VALVE GP-D RLF ', 1, 'B', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010009', 'B Segment', '3939138', '2169512', 'VALVE GP-CHECK &', 1, 'C', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010010', 'B Segment', '3939138', '9S8001', 'PLUG-LD STOR ', 2, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010011', 'B Segment', '3939138', '3J7354', 'SEAL-O-RING-STOR', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010012', 'B Segment', '3939138', '9S8002', 'PLUG-LD STOR ', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010013', 'B Segment', '3939138', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010014', 'B Segment', '3939138', '3664972', 'RING-BACKUP ', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010015', 'B Segment', '3939138', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010016', 'B Segment', '3939138', '4T1701', 'SPRING ', 1, 'D', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010017', 'B Segment', '3939138', '4T1649', 'HOUSING ', 1, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195315010018', 'B Segment', '3939138', '5M2057', 'SEAL-O-RING ', 1, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010000', 'B Segment', '3939138', '8T4185', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010001', 'B Segment', '3939138', '4J7533', 'SEAL-O-RING-STOR', 1, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010002', 'B Segment', '3939138', '9S4180', 'PLUG-LD STOR ', 1, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010003', 'B Segment', '3939138', '2077434', 'RETAINER ', 1, 'F', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010004', 'B Segment', '3939138', '3487104', 'SPRING ', 1, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010005', 'B Segment', '3939138', '3529955', 'RETAINER ', 1, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010006', 'B Segment', '3939138', '9X8256', 'WASHER ', 2, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010007', 'B Segment', '3939138', '3529956', 'RETAINER ', 1, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010008', 'B Segment', '3939138', '3529954', 'SPRING ', 1, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010009', 'B Segment', '3939138', '2077434', 'RETAINER ', 1, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010010', 'B Segment', '3939138', '8T4145', 'BOLT-HEX HEAD ', 4, 'G', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010011', 'B Segment', '3939138', '9X8256', 'WASHER ', 2, 'H', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010012', 'B Segment', '3939138', '3939144', 'PLATE-IDENT ', 1, 'H', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010013', 'B Segment', '3939138', '3J1907', 'SEAL-O-RING-STOR', 2, 'H', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010014', 'B Segment', '3939138', '9S8004', 'PLUG-LD STOR ', 2, 'H', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010015', 'B Segment', '3939138', '2427955', 'HOUSING AS ', 2, 'I', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010016', 'B Segment', '3939138', '3617213', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010017', 'B Segment', '3939138', '3161438', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010018', 'B Segment', '3939138', '1919247', 'WASHER ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010019', 'B Segment', '3939138', '1982914', 'NUT-HEXAGON ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010020', 'B Segment', '3939138', '1879630', 'SEAL-O-RING ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010021', 'B Segment', '3939138', '3128629', 'COIL AS ', 1, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010022', 'B Segment', '3939138', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010023', 'B Segment', '3939138', '3617213', 'CARTRIDGE AS ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010024', 'B Segment', '3939138', '3161438', 'CARTRIDGE AS ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195316010025', 'B Segment', '3939138', '1919247', 'WASHER ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195317010000', 'B Segment', '3939138', '1982914', 'NUT-HEXAGON ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195317010001', 'B Segment', '3939138', '1879630', 'SEAL-O-RING ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195317010002', 'B Segment', '3939138', '3128629', 'COIL AS ', 1, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742448195317010003', 'B Segment', '3939138', '1H1023', 'SEAL-O RING ', 2, 'M', 6, '2025-03-20 13:23:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010000', 'B stack', '3612413', '3J1907', '橡胶密封圈', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010001', 'B stack', '3612413', '9S4191', '钢铁制塞堵', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010002', 'B stack', '3612413', '4K1388', '橡胶密封圈', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010003', 'B stack', '3612413', '9S4188', '钢铁制塞堵', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010004', 'B stack', '3612413', '7J7666', '钢铁安装盖', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010005', 'B stack', '3612413', '7J7667', '纸制衬垫', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010006', 'B stack', '3612413', '8T0293', '钢铁制螺栓', 2, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010007', 'B stack', '3612413', '1P3702', '橡胶密封圈', 1, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010008', 'B stack', '3612413', '6V5555', '橡胶密封圈', 9, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010009', 'B stack', '3612413', '4J0522', '橡胶密封圈', 9, 'A', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010010', 'B stack', '3612413', '3J7354', '橡胶密封圈', 2, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537508010011', 'B stack', '3612413', '3603690', '钢铁制塞堵', 2, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010000', 'B stack', '3612413', '4J8997', '橡胶密封圈', 2, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010001', 'B stack', '3612413', '8C3206', '钢铁制法兰', 4, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010002', 'B stack', '3612413', '7M8485', '橡胶密封圈', 1, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010003', 'B stack', '3612413', '3603697', '钢铁制塞堵', 1, 'B', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010004', 'B stack', '3612413', '7S0530', '钢铁制管夹', 2, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010005', 'B stack', '3612413', '4J0520', '橡胶密封圈', 2, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010006', 'B stack', '3612413', '5H4019', '钢铁安装盖', 2, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010007', 'B stack', '3612413', '7J3554', '钢铁安装盖', 2, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010008', 'B stack', '3612413', '4J8174', '浸胶碳纤维衬垫', 2, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010009', 'B stack', '3612413', '6V6317', '钢铁制螺栓', 6, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010010', 'B stack', '3612413', '8T4223', '钢铁制垫圈', 3, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010011', 'B stack', '3612413', '9S1374', '钢铁制螺栓', 3, 'C', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010012', 'B stack', '3612413', '3J1907', '橡胶密封圈', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010013', 'B stack', '3612413', '9S4191', '钢铁制塞堵', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010014', 'B stack', '3612413', '3J7354', '橡胶密封圈', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010015', 'B stack', '3612413', '3603690', '钢铁制塞堵', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010016', 'B stack', '3612413', '3J5554', '纸制衬垫', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010017', 'B stack', '3612413', '8J4398', '钢铁安装盖', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742451537509010018', 'B stack', '3612413', '4T7581', '安全阀', 1, 'D', 1, '2025-03-20 14:18:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010000', 'B Segment', '3513626', '1047574', '安全阀', 1, 'B', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010001', 'B Segment', '3513626', '8J6815', '钢铁制塞堵', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010002', 'B Segment', '3513626', '4T5896', '止回阀', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010003', 'B Segment', '3513626', '3J7354', '橡胶密封圈', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010004', 'B Segment', '3513626', '9S4182', '钢铁制塞堵', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010005', 'B Segment', '3513626', '6V3965', '取样阀', 2, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010006', 'B Segment', '3513626', '2147568', '橡胶密封圈', 2, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010007', 'B Segment', '3513626', '6V0852', '橡胶防尘盖', 2, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010008', 'B Segment', '3513626', '4J0520', '橡胶密封圈', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010009', 'B Segment', '3513626', '5H4019', '钢铁安装盖', 1, 'C', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010010', 'B Segment', '3513626', '8C3206', '钢铁制法兰', 2, 'D', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010011', 'B Segment', '3513626', '8T4121', '钢铁制垫圈', 8, 'D', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742452102078010012', 'B Segment', '3513626', '8T4196', '钢铁制螺栓', 4, 'D', 6, '2025-03-20 14:28:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010000', 'B Segment', '5195781', '2S2596', '钢铁弹簧', 3, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010001', 'B Segment', '5195781', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010002', 'B Segment', '5195781', '1008010', '阀芯', 3, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010003', 'B Segment', '5195781', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010004', 'B Segment', '5195781', '4T4207', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010005', 'B Segment', '5195781', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010006', 'B Segment', '5195781', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685007010007', 'B Segment', '5195781', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010000', 'B Segment', '5195781', '4T5073', '塑料密封圈', 2, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010001', 'B Segment', '5195781', '7J9933', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010002', 'B Segment', '5195781', '1008012', '阀体', 2, 'B', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010003', 'B Segment', '5195781', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010004', 'B Segment', '5195781', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010005', 'B Segment', '5195781', '2608590', '换向阀', 1, 'B', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010006', 'B Segment', '5195781', '4T1701', '钢铁弹簧', 1, 'B', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010007', 'B Segment', '5195781', '4T4511', '阀用管套', 1, 'C', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010008', 'B Segment', '5195781', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010009', 'B Segment', '5195781', '6V5556', '橡胶密封圈', 1, 'C', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010010', 'B Segment', '5195781', '3664972', '塑料密封圈', 1, 'D', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010011', 'B Segment', '5195781', '8T4185', '螺栓8T-4185', 2, 'D', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010012', 'B Segment', '5195781', '1919247', '钢铁制垫圈', 2, 'D', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010013', 'B Segment', '5195781', '1982914', '钢铁制螺母', 2, 'D', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010014', 'B Segment', '5195781', '3161438', '插装阀组件', 2, 'D', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685008010015', 'B Segment', '5195781', '3128629', '电磁线圈', 2, 'E', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010000', 'B Segment', '5195781', '3617213', '插装阀组件', 2, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010001', 'B Segment', '5195781', '2077434', '阀用止动块', 2, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010002', 'B Segment', '5195781', '9S4180', '钢铁制塞堵', 1, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010003', 'B Segment', '5195781', '4J7533', '橡胶密封圈', 1, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010004', 'B Segment', '5195781', '1H1023', '橡胶密封圈', 4, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010005', 'B Segment', '5195781', '1879630', '橡胶密封圈', 2, 'F', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010006', 'B Segment', '5195781', '3328826', '阀座', 1, 'G', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010007', 'B Segment', '5195781', '2427955', '阀座', 1, 'H', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010008', 'B Segment', '5195781', '1503065', '钢铁制螺纹接头组件', 1, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010009', 'B Segment', '5195781', '3J1907', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010010', 'B Segment', '5195781', '7W7381', '钢铁制管路接头', 2, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010011', 'B Segment', '5195781', '6V3965', '取样阀', 2, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010012', 'B Segment', '5195781', '2147568', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010013', 'B Segment', '5195781', '6V0852', '橡胶防尘盖', 2, 'I', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010014', 'B Segment', '5195781', '3529954', '钢铁弹簧', 2, 'J', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010015', 'B Segment', '5195781', '3529956', '阀用止动块', 2, 'J', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742454685009010016', 'B Segment', '5195781', '9X8256', '钢铁制垫圈', 4, 'J', 6, '2025-03-20 15:11:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256595010000', 'B Segment', '5195782', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256596010000', 'B Segment', '5195782', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256597010000', 'B Segment', '5195782', '1008010', '阀芯', 2, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256598010000', 'B Segment', '5195782', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256598010001', 'B Segment', '5195782', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256601010000', 'B Segment', '5195782', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256602010000', 'B Segment', '5195782', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256602010001', 'B Segment', '5195782', '4J5351', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256602010002', 'B Segment', '5195782', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256604010000', 'B Segment', '5195782', '4T5072', '塑料密封圈', 1, 'A', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256604010001', 'B Segment', '5195782', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256608010000', 'B Segment', '5195782', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256608010001', 'B Segment', '5195782', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256615010000', 'B Segment', '5195782', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010000', 'B Segment', '5195782', '1008012', '阀体', 1, 'B', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010001', 'B Segment', '5195782', '2608590', '换向阀', 1, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010002', 'B Segment', '5195782', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010003', 'B Segment', '5195782', '1239624', '钢铁弹簧', 1, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010004', 'B Segment', '5195782', '9X2027', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256616010005', 'B Segment', '5195782', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256617010000', 'B Segment', '5195782', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256617010001', 'B Segment', '5195782', '1216647', '安全阀', 1, 'D', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256617010002', 'B Segment', '5195782', '3161438', '插装阀组件', 2, 'E', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256617010003', 'B Segment', '5195782', '3617213', '插装阀组件', 2, 'E', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256618010000', 'B Segment', '5195782', '3328826', '阀座', 1, 'E', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256618010001', 'B Segment', '5195782', '2077434', '阀用止动块', 2, 'E', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256618010002', 'B Segment', '5195782', '3128629', '电磁线圈', 2, 'F', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256618010003', 'B Segment', '5195782', '9S4180', '钢铁制塞堵', 1, 'G', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010000', 'B Segment', '5195782', '4J7533', '橡胶密封圈', 1, 'G', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010001', 'B Segment', '5195782', '1H1023', '橡胶密封圈', 4, 'G', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010002', 'B Segment', '5195782', '1879630', '橡胶密封圈', 2, 'G', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010003', 'B Segment', '5195782', '3487104', '钢铁弹簧', 1, 'G', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010004', 'B Segment', '5195782', '2427955', '阀座', 1, 'H', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256619010005', 'B Segment', '5195782', '1503065', '钢铁制螺纹接头组件', 1, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256620010000', 'B Segment', '5195782', '3J1907', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256622010000', 'B Segment', '5195782', '7W7381', '钢铁制管路接头', 2, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010000', 'B Segment', '5195782', '6V3965', '取样阀', 2, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010001', 'B Segment', '5195782', '2147568', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010002', 'B Segment', '5195782', '6V0852', '橡胶防尘盖', 2, 'I', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010003', 'B Segment', '5195782', '3529954', '钢铁弹簧', 1, 'J', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010004', 'B Segment', '5195782', '3529956', '阀用止动块', 1, 'J', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742455256623010005', 'B Segment', '5195782', '9X8256', '钢铁制垫圈', 4, 'J', 6, '2025-03-20 15:20:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010000', 'B Segment', '5195783', '2S2596', '钢铁弹簧', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010001', 'B Segment', '5195783', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010002', 'B Segment', '5195783', '1008010', '阀芯', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010003', 'B Segment', '5195783', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010004', 'B Segment', '5195783', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010005', 'B Segment', '5195783', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215977010006', 'B Segment', '5195783', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010000', 'B Segment', '5195783', '4J5351', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010001', 'B Segment', '5195783', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010002', 'B Segment', '5195783', '4T5072', '塑料密封圈', 2, 'A', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010003', 'B Segment', '5195783', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010004', 'B Segment', '5195783', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010005', 'B Segment', '5195783', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010006', 'B Segment', '5195783', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010007', 'B Segment', '5195783', '2608590', '换向阀', 1, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010008', 'B Segment', '5195783', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215978010009', 'B Segment', '5195783', '1239624', '钢铁弹簧', 1, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010000', 'B Segment', '5195783', '9X2027', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010001', 'B Segment', '5195783', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010002', 'B Segment', '5195783', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010003', 'B Segment', '5195783', '1216650', '安全阀', 1, 'D', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010004', 'B Segment', '5195783', '3161438', '插装阀组件', 2, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010005', 'B Segment', '5195783', '3617213', '插装阀组件', 2, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010006', 'B Segment', '5195783', '2077434', '阀用止动块', 2, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010007', 'B Segment', '5195783', '9S4180', '钢铁制塞堵', 1, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010008', 'B Segment', '5195783', '4J7533', '橡胶密封圈', 1, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010009', 'B Segment', '5195783', '1H1023', '橡胶密封圈', 4, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215979010010', 'B Segment', '5195783', '1879630', '橡胶密封圈', 2, 'E', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010000', 'B Segment', '5195783', '3328826', '阀座', 1, 'E1', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010001', 'B Segment', '5195783', '3128629', '电磁线圈', 2, 'F', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010002', 'B Segment', '5195783', '3529954', '钢铁弹簧', 2, 'G', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010003', 'B Segment', '5195783', '3529956', '阀用止动块', 2, 'G', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010004', 'B Segment', '5195783', '9X8256', '钢铁制垫圈', 4, 'G', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010005', 'B Segment', '5195783', '2427955', '阀座', 1, 'H', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010006', 'B Segment', '5195783', '1503065', '钢铁制螺纹接头组件', 1, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010007', 'B Segment', '5195783', '3J1907', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010008', 'B Segment', '5195783', '7W7381', '钢铁制管路接头', 2, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010009', 'B Segment', '5195783', '6V3965', '取样阀', 2, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010010', 'B Segment', '5195783', '2147568', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456215980010011', 'B Segment', '5195783', '6V0852', '橡胶防尘盖', 2, 'I', 6, '2025-03-20 15:36:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010000', 'B Segment', '5195784', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010001', 'B Segment', '5195784', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010002', 'B Segment', '5195784', '1008010', '阀芯', 2, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010003', 'B Segment', '5195784', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010004', 'B Segment', '5195784', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010005', 'B Segment', '5195784', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010006', 'B Segment', '5195784', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010007', 'B Segment', '5195784', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010008', 'B Segment', '5195784', '4T5073', '塑料密封圈', 2, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010009', 'B Segment', '5195784', '7J9933', '橡胶密封圈', 2, 'A', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010010', 'B Segment', '5195784', '1008012', '阀体', 1, 'B', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010011', 'B Segment', '5195784', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456556999010012', 'B Segment', '5195784', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010000', 'B Segment', '5195784', '4J5351', '橡胶密封圈', 1, 'B', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010001', 'B Segment', '5195784', '4T5072', '塑料密封圈', 1, 'B', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010002', 'B Segment', '5195784', '2608590', '换向阀', 1, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010003', 'B Segment', '5195784', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010004', 'B Segment', '5195784', '1239624', '钢铁弹簧', 1, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010005', 'B Segment', '5195784', '9X2027', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010006', 'B Segment', '5195784', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010007', 'B Segment', '5195784', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010008', 'B Segment', '5195784', '1216647', '安全阀', 1, 'D', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010009', 'B Segment', '5195784', '3161438', '插装阀组件', 2, 'E', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010010', 'B Segment', '5195784', '3617213', '插装阀组件', 2, 'E', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010011', 'B Segment', '5195784', '3328826', '阀座', 1, 'E', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010012', 'B Segment', '5195784', '2077434', '阀用止动块', 2, 'E', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010013', 'B Segment', '5195784', '3128629', '电磁线圈', 2, 'F', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010014', 'B Segment', '5195784', '9S4180', '钢铁制塞堵', 1, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010015', 'B Segment', '5195784', '4J7533', '橡胶密封圈', 1, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010016', 'B Segment', '5195784', '3529954', '钢铁弹簧', 2, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010017', 'B Segment', '5195784', '3529956', '阀用止动块', 2, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010018', 'B Segment', '5195784', '1H1023', '橡胶密封圈', 4, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010019', 'B Segment', '5195784', '1879630', '橡胶密封圈', 2, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010020', 'B Segment', '5195784', '9X8256', '钢铁制垫圈', 4, 'G', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010021', 'B Segment', '5195784', '2427955', '阀座', 1, 'H', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010022', 'B Segment', '5195784', '1503065', '钢铁制螺纹接头组件', 1, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010023', 'B Segment', '5195784', '3J1907', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010024', 'B Segment', '5195784', '7W7381', '钢铁制管路接头', 2, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010025', 'B Segment', '5195784', '6V3965', '取样阀', 2, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010026', 'B Segment', '5195784', '2147568', '橡胶密封圈', 2, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742456557000010027', 'B Segment', '5195784', '6V0852', '橡胶防尘盖', 2, 'I', 6, '2025-03-20 15:42:37', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010000', 'EH-Steering', '5652462', '2976291', '阀用塞堵', 10, 'A', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010001', 'EH-Steering', '5652462', '3133966', '换向阀', 2, 'A', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010002', 'EH-Steering', '5652462', '1919247', '钢铁制垫圈', 4, 'A', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010003', 'EH-Steering', '5652462', '1982914', '钢铁制螺母', 4, 'A', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010004', 'EH-Steering', '5652462', '3128629', '电磁线圈', 4, 'A', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010005', 'EH-Steering', '5652462', '3161438', '插装阀组件', 4, 'B', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010006', 'EH-Steering', '5652462', '3617213', '插装阀组件', 4, 'B', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010007', 'EH-Steering', '5652462', '5688476', '橡胶密封圈', 1, 'B', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010008', 'EH-Steering', '5652462', '2965987', '塑料扣盖', 4, 'B', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520055793010009', 'EH-Steering', '5652462', '3331701', '塑料塞堵', 1, 'B', 1, '2025-03-21 09:20:56', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068654010000', 'EH-Steering', '5978192', '2828827', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068654010001', 'EH-Steering', '5978192', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068654010002', 'EH-Steering', '5978192', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068654010003', 'EH-Steering', '5978192', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068654010004', 'EH-Steering', '5978192', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068655010000', 'EH-Steering', '5978192', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068655010001', 'EH-Steering', '5978192', '2976291', 'PLUG', 12, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010000', 'EH-Steering', '5978192', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010001', 'EH-Steering', '5978192', '1919247', 'WASHER-SOFT', 4, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010002', 'EH-Steering', '5978192', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010003', 'EH-Steering', '5978192', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010004', 'EH-Steering', '5978192', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010005', 'EH-Steering', '5978192', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068656010006', 'EH-Steering', '5978192', '4951569', 'VALVE GP-SOL', 1, 'B', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068657010000', 'EH-Steering', '5978192', '5218459', 'PLUG-SHUTOFF', 1, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068657010001', 'EH-Steering', '5978192', '5979084', 'VALVE GP-P RLF-B', 2, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068657010002', 'EH-Steering', '5978192', '2608590', 'VALVE GP-SHTL -B', 1, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068658010000', 'EH-Steering', '5978192', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068658010001', 'EH-Steering', '5978192', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068659010000', 'EH-Steering', '5978192', '6V8653', 'BOLT-SOCKET HD', 4, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068661010000', 'EH-Steering', '5978192', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068661010001', 'EH-Steering', '5978192', '0951582/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068661010002', 'EH-Steering', '5978192', '4932479', 'SENSOR AS-SPOOL', 1, 'C', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068663010000', 'EH-Steering', '5978192', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068663010001', 'EH-Steering', '5978192', '3278527', 'SPRING', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068674010000', 'EH-Steering', '5978192', '1749194', 'BOLT-HEX FLG HD', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068674010001', 'EH-Steering', '5978192', '4932480', 'PROBE AS-SPOOL', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068676010000', 'EH-Steering', '5978192', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068677010000', 'EH-Steering', '5978192', '3J1907', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010000', 'EH-Steering', '5978192', '9S8004', 'PLUG-LD STOR', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010001', 'EH-Steering', '5978192', '3676002', 'PLUG AS-HD STOR', 1, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010002', 'EH-Steering', '5978192', '8T2396', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010003', 'EH-Steering', '5978192', '9X8256', 'WASHER', 2, 'D', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010004', 'EH-Steering', '5978192', '5979075', 'PLATE-IDENT', 1, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010005', 'EH-Steering', '5978192', '8T8737', 'PLUG-SEAL', 8, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010006', 'EH-Steering', '5978192', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068678010007', 'EH-Steering', '5978192', '2305010', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010000', 'EH-Steering', '5978192', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010001', 'EH-Steering', '5978192', '2965987', 'PLUG', 3, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010002', 'EH-Steering', '5978192', '3331701', 'PLUG', 1, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010003', 'EH-Steering', '5978192', '4J0520', 'SEAL-O-RING', 2, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010004', 'EH-Steering', '5978192', '8T6466', 'BOLT-HEX HEAD', 8, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010005', 'EH-Steering', '5978192', '8T4121', 'WASHER-HARD', 8, 'E', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068679010006', 'EH-Steering', '5978192', '7S0530', 'CLIP', 1, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068680010000', 'EH-Steering', '5978192', '2385082', '橡胶密封圈', 4, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068680010001', 'EH-Steering', '5978192', '3603695', '堵头', 4, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068680010002', 'EH-Steering', '5978192', '7J3554', 'COVER', 2, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068680010003', 'EH-Steering', '5978192', '8T4137', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520068680010004', 'EH-Steering', '5978192', '2D0094', 'GASKET', 2, 'F', 1, '2025-03-21 09:21:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010000', 'WL-ZL50', '3792240', '3G2683', '螺堵', 3, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010001', 'WL-ZL50', '3792240', '2S4078', 'O型圈', 3, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010002', 'WL-ZL50', '3792240', '1U1577', '螺堵', 1, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010003', 'WL-ZL50', '3792240', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010004', 'WL-ZL50', '3792240', '9S8005', '堵头', 1, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010005', 'WL-ZL50', '3792240', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010006', 'WL-ZL50', '3792240', '1U0322', '轴承', 3, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083083010007', 'WL-ZL50', '3792240', '7S8491', '弹簧', 3, 'A', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010000', 'WL-ZL50', '3792240', '7J7423', '阀', 3, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010001', 'WL-ZL50', '3792240', '1J8960', '弹簧', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010002', 'WL-ZL50', '3792240', '1U1578', '阀', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010003', 'WL-ZL50', '3792240', '3G4117', '盖子', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010004', 'WL-ZL50', '3792240', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010005', 'WL-ZL50', '3792240', '8T4192', '螺栓', 2, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010006', 'WL-ZL50', '3792240', '4T4162', '阀', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010007', 'WL-ZL50', '3792240', '6E4139', '阀', 1, 'B', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010008', 'WL-ZL50', '3792240', '1509492', '阀', 1, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010009', 'WL-ZL50', '3792240', '4T9312', '盖子', 2, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010010', 'WL-ZL50', '3792240', '1H9696', 'O型圈', 2, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010011', 'WL-ZL50', '3792240', '8T4182', '螺栓', 4, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010012', 'WL-ZL50', '3792240', '5P1075', '垫圈', 4, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010013', 'WL-ZL50', '3792240', '3G8991', '弹簧', 2, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010014', 'WL-ZL50', '3792240', '3385495', '弹簧', 2, 'C', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010015', 'WL-ZL50', '3792240', '4761915', '固定器', 4, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083084010016', 'WL-ZL50', '3792240', '8T4198', '螺栓', 4, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010000', 'WL-ZL50', '3792240', '5P1075', '垫片', 4, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010001', 'WL-ZL50', '3792240', '0994691', '螺栓', 2, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010002', 'WL-ZL50', '3792240', '8T4223', '垫圈', 2, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010003', 'WL-ZL50', '3792240', '0041963', 'O型圈', 2, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010004', 'WL-ZL50', '3792240', '3792243', '铭牌', 1, 'D', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010005', 'WL-ZL50', '3792240', '4T9311', '盖子', 2, 'E', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010006', 'WL-ZL50', '3792240', '4D2886', '吊环', 2, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010007', 'WL-ZL50', '3792240', '3J1907', 'O型圈', 5, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010008', 'WL-ZL50', '3792240', '9S4191', '堵头', 5, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010009', 'WL-ZL50', '3792240', '3J5553', '纸垫片', 2, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010010', 'WL-ZL50', '3792240', '3J5554', '纸垫片', 4, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010011', 'WL-ZL50', '3792240', '8J4398', '盖板', 4, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010012', 'WL-ZL50', '3792240', '8J5893', '盖板', 2, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520083085010013', 'WL-ZL50', '3792240', '8T4179', '螺栓', 12, 'F', 1, '2025-03-21 09:21:23', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010000', 'MG Stack', '1303122', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010001', 'MG Stack', '1303122', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010002', 'MG Stack', '1303122', '3K0360', '橡胶密封圈', 6, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010003', 'MG Stack', '1303122', '9S8005', '钢铁制塞堵', 6, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010004', 'MG Stack', '1303122', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010005', 'MG Stack', '1303122', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010006', 'MG Stack', '1303122', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010007', 'MG Stack', '1303122', '8T6408', '钢铁制螺栓', 3, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010008', 'MG Stack', '1303122', '8T4896', '钢铁制垫圈', 1, 'A', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010009', 'MG Stack', '1303122', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010010', 'MG Stack', '1303122', '5615574', '密封衬垫', 8, 'B', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010011', 'MG Stack', '1303122', '2191891', '塑料塞堵', 8, 'B', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010012', 'MG Stack', '1303122', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010013', 'MG Stack', '1303122', '2191893', '塑料塞堵', 2, 'C', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520095435010014', 'MG Stack', '1303122', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-21 09:21:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520107892010000', 'Machined', '7T6428', '1S6250', 'DOWEL', 2, 'A', 6, '2025-03-21 09:21:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520107892010001', 'Machined', '7T6428', '5H8985', 'PIN-SPRING', 1, 'A', 6, '2025-03-21 09:21:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520107892010002', 'Machined', '7T6428', '7L0811', 'DOWEL', 1, 'A', 6, '2025-03-21 09:21:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010000', 'ACS', '4165352', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010001', 'ACS', '4165352', '4J0526', 'SEAL-O RING', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010002', 'ACS', '4165352', '3093911', '13EEVE', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010003', 'ACS', '4165352', '3112866', 'RETAINER', 2, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010004', 'ACS', '4165352', '3112888', 'SPRING', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010005', 'ACS', '4165352', '3461634', 'BOLT', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010006', 'ACS', '4165352', '3576292', 'RING-BACKUP', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010007', 'ACS', '4165352', '3112864', 'KIT-SEAL', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520155072010008', 'ACS', '4165352', '3789426', 'STEM-CT', 1, 'A', 1, '2025-03-21 09:22:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010000', 'ACS', '4165348', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010001', 'ACS', '4165348', '4J0523', 'SEAL-O-RING', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010002', 'ACS', '4165348', '3045114', 'SLEEVE', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010003', 'ACS', '4165348', '3175154', 'RING-BACKUP', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010004', 'ACS', '4165348', '3461626', 'SPRING', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010005', 'ACS', '4165348', '3461628', 'RETAINER', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010006', 'ACS', '4165348', '3467576', 'WASHER', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010007', 'ACS', '4165348', '3523048', 'KIT-SEAL', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742520166659010008', 'ACS', '4165348', '3789422', 'STEM-PC', 1, 'A', 1, '2025-03-21 09:22:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010000', 'MG Stack', '1303117', '9S4180', '钢铁制塞堵', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010001', 'MG Stack', '1303117', '4J7533', '橡胶密封圈', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010002', 'MG Stack', '1303117', '8T4189', '钢铁制螺栓', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010003', 'MG Stack', '1303117', '8T4224', '钢铁制垫圈', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010004', 'MG Stack', '1303117', '7S0530', '钢铁制管夹', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010005', 'MG Stack', '1303117', '8T4186', '钢铁制螺栓', 3, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010006', 'MG Stack', '1303117', '8T4896', '钢铁制垫圈', 1, 'A', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010007', 'MG Stack', '1303117', '1010509', '密封衬垫', 5, 'B', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010008', 'MG Stack', '1303117', '7X2546', '钢铁制螺栓', 2, 'B', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010009', 'MG Stack', '1303117', '8T6408', '钢铁制螺栓', 1, 'B', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052128010010', 'MG Stack', '1303117', '2191891', '塑料塞堵', 8, 'B', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052129010000', 'MG Stack', '1303117', '2521631', '塑料制塞堵组件', 1, 'C', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521052129010001', 'MG Stack', '1303117', '2191893', '塑料塞堵', 2, 'C', 2, '2025-03-21 09:37:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521230431010000', 'selector', '6E5397', '5H3193', '钢铁弹簧销', 2, 'A', 1, '2025-03-21 09:40:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521230431010001', 'selector', '6E5397', '6E5289', '钢铁制螺纹接头', 2, 'A', 1, '2025-03-21 09:40:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521230431010002', 'selector', '6E5397', '6E5291', '钢铁弹簧', 2, 'A', 1, '2025-03-21 09:40:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521230431010003', 'selector', '6E5397', '3K0360', '橡胶密封圈', 2, 'A', 1, '2025-03-21 09:40:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010000', 'QCT', '5173288', '1266612', 'BODY', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010001', 'QCT', '5173288', '0304606', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010002', 'QCT', '5173288', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010003', 'QCT', '5173288', '5149364', 'VALVE', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010004', 'QCT', '5173288', '8B4624', 'SHIM', 4, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010005', 'QCT', '5173288', '3886987', 'SHIM', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010006', 'QCT', '5173288', '6J3380', 'SPRING', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010007', 'QCT', '5173288', '6K6307', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521326430010008', 'QCT', '5173288', '1266104', 'PLUG-STOR', 1, 'A', 1, '2025-03-21 09:42:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586828010000', 'WL-ZL50', '2906007', '3G2683', '漏堵', 4, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586828010001', 'WL-ZL50', '2906007', '2S4078', 'O型圈', 4, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586828010002', 'WL-ZL50', '2906007', '1U1577', '漏堵', 1, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010000', 'WL-ZL50', '2906007', '6K6307', 'O型圈', 1, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010001', 'WL-ZL50', '2906007', '1U0322', '轴承', 4, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010002', 'WL-ZL50', '2906007', '7S8491', '弹簧', 4, 'A', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010003', 'WL-ZL50', '2906007', '9S4182', '漏堵', 3, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010004', 'WL-ZL50', '2906007', '3J7354', 'O型圈', 3, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010005', 'WL-ZL50', '2906007', '3G4135', '漏堵', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010006', 'WL-ZL50', '2906007', '4J0522', 'O型圈', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010007', 'WL-ZL50', '2906007', '7M8485', 'O型圈', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010008', 'WL-ZL50', '2906007', '9S8005', '堵头', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010009', 'WL-ZL50', '2906007', '3K0360', 'O型圈', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010010', 'WL-ZL50', '2906007', '1J8960', '弹簧', 1, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010011', 'WL-ZL50', '2906007', '7J7423', '阀', 4, 'B', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010012', 'WL-ZL50', '2906007', '1U1578', '阀', 1, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010013', 'WL-ZL50', '2906007', '4J0522', 'O型圈', 1, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010014', 'WL-ZL50', '2906007', '4J0523', 'O型圈', 1, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010015', 'WL-ZL50', '2906007', '4T4162', '阀', 1, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010016', 'WL-ZL50', '2906007', '4T4934', '阀', 1, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010017', 'WL-ZL50', '2906007', '7X2551', '螺栓', 5, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010018', 'WL-ZL50', '2906007', '8T4223', '垫圈', 5, 'C', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010019', 'WL-ZL50', '2906007', '4T4935', '阀', 1, 'D', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010020', 'WL-ZL50', '2906007', '4T6103', '阀', 1, 'D', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586829010021', 'WL-ZL50', '2906007', '6E6003', '阀', 1, 'D', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010000', 'WL-ZL50', '2906007', '4T9312', '盖子', 3, 'D', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010001', 'WL-ZL50', '2906007', '1H9696', 'O型圈', 3, 'E', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010002', 'WL-ZL50', '2906007', '8T4182', '螺钉', 6, 'E', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010003', 'WL-ZL50', '2906007', '5P1075', '垫圈', 6, 'E', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010004', 'WL-ZL50', '2906007', '3385494', '固定器', 6, 'E', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010005', 'WL-ZL50', '2906007', '3385495', '弹簧', 3, 'E', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010006', 'WL-ZL50', '2906007', '3G8991', '弹簧', 3, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010007', 'WL-ZL50', '2906007', '0041963', 'O型圈', 3, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010008', 'WL-ZL50', '2906007', '0994691', '螺钉', 3, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010009', 'WL-ZL50', '2906007', '8T4223', '垫圈', 3, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010010', 'WL-ZL50', '2906007', '2906006', '铭牌', 1, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010011', 'WL-ZL50', '2906007', '8T4198', '螺栓', 6, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010012', 'WL-ZL50', '2906007', '5P1075', '垫片', 6, 'F', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010013', 'WL-ZL50', '2906007', '4T9311', '盖子', 3, 'G', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010014', 'WL-ZL50', '2906007', '4D2886', '吊环', 2, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010015', 'WL-ZL50', '2906007', '3J1907', 'O型圈', 7, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010016', 'WL-ZL50', '2906007', '9S4191', '堵头', 7, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010017', 'WL-ZL50', '2906007', '3J5553', '纸垫片', 2, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010018', 'WL-ZL50', '2906007', '3J5554', '纸垫片', 6, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010019', 'WL-ZL50', '2906007', '8J4398', '盖板', 6, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586830010020', 'WL-ZL50', '2906007', '8J5893', '盖板', 2, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521586831010000', 'WL-ZL50', '2906007', '8T4179', '螺栓', 14, 'H', 1, '2025-03-21 09:46:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010000', 'WL-ZL50', '6122630', '2828827', 'PLUG', 21, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010001', 'WL-ZL50', '6122630', '2507662', 'VALVE GP', 4, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010002', 'WL-ZL50', '6122630', '3676002', 'PLUG AS', 2, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010003', 'WL-ZL50', '6122630', '1947072', 'VALVE GP-CHECK', 1, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010004', 'WL-ZL50', '6122630', '5969317', 'VALVE GP-SOL', 1, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010005', 'WL-ZL50', '6122630', '8T0288', 'BOLT', 6, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010006', 'WL-ZL50', '6122630', '6399413', 'PLATE', 1, 'A', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010007', 'WL-ZL50', '6122630', '3351074', 'VALVE GP', 1, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010008', 'WL-ZL50', '6122630', '4579878', 'VALVE GP-SOL', 1, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010009', 'WL-ZL50', '6122630', '3041142', 'VALVE GP', 2, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010010', 'WL-ZL50', '6122630', '2660531', 'CAP', 4, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010011', 'WL-ZL50', '6122630', '2965987', 'PLUG', 8, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521666796010012', 'WL-ZL50', '6122630', '3331701', 'PLUG', 1, 'B', 1, '2025-03-21 09:47:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010000', 'QCT', '1757852', '1P3709', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010001', 'QCT', '1757852', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010002', 'QCT', '1757852', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010003', 'QCT', '1757852', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010004', 'QCT', '1757852', '4J9780', 'PLUG-NPTF(ORIFICE)', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010005', 'QCT', '1757852', '5H6005', 'SEAL-O RING', 2, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010006', 'QCT', '1757852', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010007', 'QCT', '1757852', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010008', 'QCT', '1757852', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010009', 'QCT', '1757852', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010010', 'QCT', '1757852', '9S8002', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010011', 'QCT', '1757852', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010012', 'QCT', '1757852', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010013', 'QCT', '1757852', '3603681', 'PLUG-HD STOR', 1, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010014', 'QCT', '1757852', '3676001', 'PLUG AS-HD STOR', 4, 'A', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010015', 'QCT', '1757852', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010016', 'QCT', '1757852', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010017', 'QCT', '1757852', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010018', 'QCT', '1757852', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010019', 'QCT', '1757852', '4J0519', 'SEAL-O-RING', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010020', 'QCT', '1757852', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010021', 'QCT', '1757852', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010022', 'QCT', '1757852', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010023', 'QCT', '1757852', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010024', 'QCT', '1757852', '8J2379', 'VALVE', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010025', 'QCT', '1757852', '1138263', 'PISTON', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010026', 'QCT', '1757852', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010027', 'QCT', '1757852', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010028', 'QCT', '1757852', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010029', 'QCT', '1757852', '4J0519', 'SEAL-O-RING', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010030', 'QCT', '1757852', '4J2506', 'SEAL-O RING', 2, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010031', 'QCT', '1757852', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010032', 'QCT', '1757852', '7D8048', 'SEAL-O RING', 2, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010033', 'QCT', '1757852', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010034', 'QCT', '1757852', '8J2306', 'STEM-VALVE', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010035', 'QCT', '1757852', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010036', 'QCT', '1757852', '9S8005', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010037', 'QCT', '1757852', '3676002', 'PLUG AS-HD STOR', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010038', 'QCT', '1757852', '4D2886', 'CLIP', 1, 'C', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010039', 'QCT', '1757852', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010040', 'QCT', '1757852', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010041', 'QCT', '1757852', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010042', 'QCT', '1757852', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010043', 'QCT', '1757852', '9P8217', 'WASHER', 4, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010044', 'QCT', '1757852', '1761661', 'PLATE-IDENT', 1, 'D', 1, '2025-03-21 09:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217484010045', 'QCT', '1757852', '4168724', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010000', 'QCT', '1757852', '4224594', 'VALVE GP-RELIEF(DIRECT OPERATED)-1-7 (A)', 1, 'D', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010001', 'QCT', '1757852', '1067683', 'ADAPTER', 1, 'E', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010002', 'QCT', '1757852', '1266612', 'BODY', 1, 'E', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010003', 'QCT', '1757852', '1761662', 'STEM', 1, 'E', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010004', 'QCT', '1757852', '2J2668', 'FLANGE-COVER', 4, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010005', 'QCT', '1757852', '2J5608', 'FLANGE-COVER', 1, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010006', 'QCT', '1757852', '4J0524', 'SEAL-O-RING', 4, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010007', 'QCT', '1757852', '4J0527', 'SEAL-O-RING', 1, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010008', 'QCT', '1757852', '5P2566', 'BOLT-HEX HEAD', 20, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010009', 'QCT', '1757852', '8T4223', 'WASHER-HARD', 21, 'F', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010010', 'QCT', '1757852', '1P4579', 'FLANGE-SPLIT', 8, 'G', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010011', 'QCT', '1757852', '1P4582', 'FLANGE-SPLIT', 2, 'G', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010012', 'QCT', '1757852', '8B4624', 'SHIM', 4, 'H', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010013', 'QCT', '1757852', '6E0630', 'VALVE gr', 1, 'H', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010014', 'QCT', '1757852', '1185081', 'ACTUATOR', 2, 'H', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742522217500010015', 'QCT', '1757852', '3676002', 'PLUG', 1, 'H', 1, '2025-03-21 09:56:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010000', 'COMBO', '3701290', '9S8009', '堵头', 1, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010001', 'COMBO', '3701290', '4K1388', 'O型圈', 1, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010002', 'COMBO', '3701290', '9S4189', '堵头', 1, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010003', 'COMBO', '3701290', '2M9780', 'O型圈', 1, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010004', 'COMBO', '3701290', '9S4182', '堵头', 3, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010005', 'COMBO', '3701290', '3J7354', 'O型圈', 6, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010006', 'COMBO', '3701290', '9S8002', '堵头', 1, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010007', 'COMBO', '3701290', '6V8647', '接头*8', 2, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010008', 'COMBO', '3701290', '4J5477', 'O型圈', 2, 'A', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010009', 'COMBO', '3701290', '9S4183', '堵头', 5, 'B', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010010', 'COMBO', '3701290', '3D2824', 'O型圈', 5, 'B', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010011', 'COMBO', '3701290', '9S4185', '堵头', 5, 'B', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010012', 'COMBO', '3701290', '3K0360', 'O型圈', 5, 'B', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010013', 'COMBO', '3701290', '9S4191', '堵头', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010014', 'COMBO', '3701290', '3J1907', 'O型圈', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010015', 'COMBO', '3701290', '1318350', '阀', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010016', 'COMBO', '3701290', '3K0360', 'O型圈', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010017', 'COMBO', '3701290', '3T8236', '弹簧', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009367010018', 'COMBO', '3701290', '6V8398', 'O型圈', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010000', 'COMBO', '3701290', '1007000', '支撑环', 2, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010001', 'COMBO', '3701290', '9S8003', '堵头', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010002', 'COMBO', '3701290', '1J9671', 'O型圈', 1, 'C', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010003', 'COMBO', '3701290', '8T8987', '直角接头', 1, 'D', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010004', 'COMBO', '3701290', '6V9833', '盖帽', 1, 'D', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010005', 'COMBO', '3701290', '5K9090', 'O型圈', 1, 'D', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010006', 'COMBO', '3701290', '2S4078', 'O型圈', 1, 'D', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010007', 'COMBO', '3701290', '9S8001', '堵头', 2, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010008', 'COMBO', '3701290', '4J7533', 'O型圈', 2, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010009', 'COMBO', '3701290', '8J6815', '节流螺钉', 2, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010010', 'COMBO', '3701290', '3P9498', '节流螺钉', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010011', 'COMBO', '3701290', '1H0337', '阀', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010012', 'COMBO', '3701290', '9F6705', '弹簧', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010013', 'COMBO', '3701290', '4T1860', '梭阀', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010014', 'COMBO', '3701290', '6E1924', '弹簧', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010015', 'COMBO', '3701290', '6E1925', '弹簧', 1, 'E', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010016', 'COMBO', '3701290', '8M3175', '垫片', 2, 'F', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010017', 'COMBO', '3701290', '5M2057', 'O型圈', 1, 'F', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010018', 'COMBO', '3701290', '6V5230', '螺栓', 2, 'F', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010019', 'COMBO', '3701290', '4460768', '阀', 1, 'F', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010020', 'COMBO', '3701290', '3307743', '阀', 1, 'G', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010021', 'COMBO', '3701290', '4T4935', '阀', 1, 'G', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010022', 'COMBO', '3701290', '6E1923', '油管', 1, 'G', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010023', 'COMBO', '3701290', '3701289', '铭牌', 1, 'G', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778009368010024', 'COMBO', '3701290', '5796930', 'FILM', 1, 'H', 4, '2025-03-24 09:00:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070626010000', 'COMBO', '9T5957', '9S8009', '堵头', 1, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070626010001', 'COMBO', '9T5957', '4K1388', 'O型圈', 1, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010000', 'COMBO', '9T5957', '9S4189', '堵头', 1, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010001', 'COMBO', '9T5957', '2M9780', 'O型圈', 1, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010002', 'COMBO', '9T5957', '9S4182', '堵头', 3, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010003', 'COMBO', '9T5957', '3J7354', 'O型圈', 6, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010004', 'COMBO', '9T5957', '9S8002', '堵头', 1, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010005', 'COMBO', '9T5957', '6V8647', '接头*8', 2, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010006', 'COMBO', '9T5957', '4J5477', 'O型圈', 2, 'A', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010007', 'COMBO', '9T5957', '9S4183', '堵头', 5, 'B', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010008', 'COMBO', '9T5957', '3D2824', 'O型圈', 5, 'B', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010009', 'COMBO', '9T5957', '9S4185', '堵头', 5, 'B', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010010', 'COMBO', '9T5957', '3K0360', 'O型圈', 5, 'B', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010011', 'COMBO', '9T5957', '6V3965', '测压接头', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010012', 'COMBO', '9T5957', '3J1907', 'O型圈', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010013', 'COMBO', '9T5957', '1318350', '阀', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010014', 'COMBO', '9T5957', '3K0360', 'O型圈', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010015', 'COMBO', '9T5957', '3T8236', '弹簧', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010016', 'COMBO', '9T5957', '6V8398', 'O型圈', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010017', 'COMBO', '9T5957', '1007000', '支撑环', 2, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010018', 'COMBO', '9T5957', '9S8003', '堵头', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010019', 'COMBO', '9T5957', '1J9671', 'O型圈', 1, 'C', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010020', 'COMBO', '9T5957', '8T8987', '直角接头', 1, 'D', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010021', 'COMBO', '9T5957', '6V9833', '盖帽', 1, 'D', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010022', 'COMBO', '9T5957', '5K9090', 'O型圈', 1, 'D', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010023', 'COMBO', '9T5957', '2S4078', 'O型圈', 1, 'D', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010024', 'COMBO', '9T5957', '9S8001', '堵头', 2, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010025', 'COMBO', '9T5957', '4J7533', 'O型圈', 2, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010026', 'COMBO', '9T5957', '8J6815', '节流螺钉', 2, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010027', 'COMBO', '9T5957', '3P9498', '节流螺钉', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010028', 'COMBO', '9T5957', '1H0337', '阀', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010029', 'COMBO', '9T5957', '9F6705', '弹簧', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010030', 'COMBO', '9T5957', '4T1860', '梭阀', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010031', 'COMBO', '9T5957', '6E1924', '弹簧', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010032', 'COMBO', '9T5957', '6E1925', '弹簧', 1, 'E', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010033', 'COMBO', '9T5957', '8M3175', '垫片', 2, 'F', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010034', 'COMBO', '9T5957', '5M2057', 'O型圈', 1, 'F', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010035', 'COMBO', '9T5957', '6V5230', '螺栓', 2, 'F', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010036', 'COMBO', '9T5957', '1006021', '阀', 1, 'F', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010037', 'COMBO', '9T5957', '3307743', '阀', 1, 'G', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010038', 'COMBO', '9T5957', '4T4935', '阀', 1, 'G', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010039', 'COMBO', '9T5957', '6E1923', '油管', 1, 'G', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010040', 'COMBO', '9T5957', '1119632', '铭牌', 1, 'G', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010041', 'COMBO', '9T5957', '5796930', 'FILM', 1, 'H', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778070627010042', 'COMBO', '9T5957', '6V0852', '橡胶套', 1, 'H', 4, '2025-03-24 09:01:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010000', 'Steering', '4560777', '9S4183', '堵头', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010001', 'Steering', '4560777', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010002', 'Steering', '4560777', '9S4185', '堵头', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010003', 'Steering', '4560777', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010004', 'Steering', '4560777', '9S8006', '堵头', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010005', 'Steering', '4560777', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010006', 'Steering', '4560777', '7J1089', '堵头', 2, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010007', 'Steering', '4560777', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010008', 'Steering', '4560777', '5H3193', '穿销', 4, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010009', 'Steering', '4560777', '9S8002', '堵头', 10, 'A', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010010', 'Steering', '4560777', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010011', 'Steering', '4560777', '6E5289', '堵头', 2, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010012', 'Steering', '4560777', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010013', 'Steering', '4560777', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010014', 'Steering', '4560777', '9S4185', '堵头', 1, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010015', 'Steering', '4560777', '9S8002', '堵头', 1, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010016', 'Steering', '4560777', '9J9821', '底座阀', 4, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010017', 'Steering', '4560777', '4B9782', '钢珠', 5, 'B', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010018', 'Steering', '4560777', '2S2596', '弹簧', 4, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010019', 'Steering', '4560777', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010020', 'Steering', '4560777', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010021', 'Steering', '4560777', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010022', 'Steering', '4560777', '8T4196', '螺栓', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010023', 'Steering', '4560777', '8T6466', '螺栓', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010024', 'Steering', '4560777', '6E5291', '弹簧', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010025', 'Steering', '4560777', '6T6052', '截流套', 1, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010026', 'Steering', '4560777', '6V9830', '盖帽', 2, 'C', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010027', 'Steering', '4560777', '6J6506', '垫片', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010028', 'Steering', '4560777', '1268473', '弹簧', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010029', 'Steering', '4560777', '7J4321', '固定器', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010030', 'Steering', '4560777', '9M1974', '垫圈', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010031', 'Steering', '4560777', '6V5195', '螺栓', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010032', 'Steering', '4560777', '8T5005', '螺栓', 4, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010033', 'Steering', '4560777', '4564627', '铭牌', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010034', 'Steering', '4560777', '9T8672', '固定器', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010035', 'Steering', '4560777', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010036', 'Steering', '4560777', '4564633', '溢流阀', 1, 'E', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010037', 'Steering', '4560777', '4564624', '溢流阀', 1, 'E', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010038', 'Steering', '4560777', '9T7220', '盖板', 1, 'E', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010039', 'Steering', '4560777', '8C3206', '法兰', 4, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010040', 'Steering', '4560777', '5H4019', '盖板', 2, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010041', 'Steering', '4560777', '4J0520', '密封圈', 2, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010042', 'Steering', '4560777', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010043', 'Steering', '4560777', '8T4121', '垫圈', 8, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010044', 'Steering', '4560777', '8T4196', '螺栓', 8, 'F终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010045', 'Steering', '4560777', '4J8174', '纸垫片', 2, 'G终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010046', 'Steering', '4560777', '7J3554', '盖板', 2, 'G终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778218121010047', 'Steering', '4560777', '6V8212', '螺栓', 4, 'G终装', 2, '2025-03-24 09:03:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010000', 'Steering', '3749878', '9S4183', '堵头', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010001', 'Steering', '3749878', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010002', 'Steering', '3749878', '9S4185', '堵头', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010003', 'Steering', '3749878', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010004', 'Steering', '3749878', '9S8006', '堵头', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010005', 'Steering', '3749878', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010006', 'Steering', '3749878', '7J1089', '堵头', 2, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010007', 'Steering', '3749878', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010008', 'Steering', '3749878', '5H3193', '穿销', 4, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010009', 'Steering', '3749878', '9S8002', '堵头', 10, 'A', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010010', 'Steering', '3749878', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010011', 'Steering', '3749878', '6E5289', '堵头', 2, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010012', 'Steering', '3749878', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010013', 'Steering', '3749878', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010014', 'Steering', '3749878', '9S4185', '堵头', 1, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010015', 'Steering', '3749878', '9S8002', '堵头', 1, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010016', 'Steering', '3749878', '9J9821', '底座阀', 4, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010017', 'Steering', '3749878', '4B9782', '钢珠', 5, 'B', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010018', 'Steering', '3749878', '2S2596', '弹簧', 4, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010019', 'Steering', '3749878', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010020', 'Steering', '3749878', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010021', 'Steering', '3749878', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010022', 'Steering', '3749878', '8T4196', '螺栓', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010023', 'Steering', '3749878', '8T6466', '螺栓', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010024', 'Steering', '3749878', '6E5291', '弹簧', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010025', 'Steering', '3749878', '6T6052', '截流套', 1, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010026', 'Steering', '3749878', '6V9830', '盖帽', 2, 'C', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010027', 'Steering', '3749878', '6J6506', '垫片', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010028', 'Steering', '3749878', '1268473', '弹簧', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010029', 'Steering', '3749878', '7J4321', '固定器', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010030', 'Steering', '3749878', '9M1974', '垫圈', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010031', 'Steering', '3749878', '6V5195', '螺栓', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010032', 'Steering', '3749878', '8T5005', '螺栓', 4, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010033', 'Steering', '3749878', '3760630', '铭牌', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010034', 'Steering', '3749878', '9T8672', '固定器', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010035', 'Steering', '3749878', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010036', 'Steering', '3749878', '1298222', '溢流阀', 1, 'E', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010037', 'Steering', '3749878', '3760631', '溢流阀', 1, 'E', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010038', 'Steering', '3749878', '9T7220', '盖板', 1, 'E', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010039', 'Steering', '3749878', '8C3206', '法兰', 4, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010040', 'Steering', '3749878', '5H4019', '盖板', 2, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010041', 'Steering', '3749878', '4J0520', '密封圈', 2, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010042', 'Steering', '3749878', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010043', 'Steering', '3749878', '8T4121', '垫圈', 8, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010044', 'Steering', '3749878', '8T4196', '螺栓', 8, 'F终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010045', 'Steering', '3749878', '4J8174', '纸垫片', 2, 'G终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010046', 'Steering', '3749878', '7J3554', '盖板', 2, 'G终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778584328010047', 'Steering', '3749878', '6V8212', '螺栓', 4, 'G终装', 2, '2025-03-24 09:09:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010000', 'Steering', '4413485', '9S4183', '堵头', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010001', 'Steering', '4413485', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010002', 'Steering', '4413485', '9S4185', '堵头', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010003', 'Steering', '4413485', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010004', 'Steering', '4413485', '9S8006', '堵头', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010005', 'Steering', '4413485', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010006', 'Steering', '4413485', '7J1089', '堵头', 2, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010007', 'Steering', '4413485', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010008', 'Steering', '4413485', '5H3193', '穿销', 4, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010009', 'Steering', '4413485', '9S8002', '堵头', 10, 'A', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010010', 'Steering', '4413485', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010011', 'Steering', '4413485', '6E5289', '堵头', 2, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010012', 'Steering', '4413485', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010013', 'Steering', '4413485', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010014', 'Steering', '4413485', '9S4185', '堵头', 1, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010015', 'Steering', '4413485', '9S8002', '堵头', 1, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010016', 'Steering', '4413485', '9J9821', '底座阀', 4, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010017', 'Steering', '4413485', '4B9782', '钢珠', 5, 'B', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010018', 'Steering', '4413485', '2S2596', '弹簧', 4, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010019', 'Steering', '4413485', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010020', 'Steering', '4413485', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010021', 'Steering', '4413485', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010022', 'Steering', '4413485', '8T4196', '螺栓', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010023', 'Steering', '4413485', '8T6466', '螺栓', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010024', 'Steering', '4413485', '6E5291', '弹簧', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010025', 'Steering', '4413485', '6T6052', '截流套', 1, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010026', 'Steering', '4413485', '6V9830', '盖帽', 2, 'C', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010027', 'Steering', '4413485', '6J6506', '垫片', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010028', 'Steering', '4413485', '1268473', '弹簧', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010029', 'Steering', '4413485', '7J4321', '固定器', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010030', 'Steering', '4413485', '9M1974', '垫圈', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010031', 'Steering', '4413485', '6V5195', '螺栓', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010032', 'Steering', '4413485', '8T5005', '螺栓', 4, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010033', 'Steering', '4413485', '4419221', '铭牌', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010034', 'Steering', '4413485', '9T8672', '固定器', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010035', 'Steering', '4413485', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010036', 'Steering', '4413485', '1298222', '溢流阀', 1, 'E', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010037', 'Steering', '4413485', '3760631', '溢流阀', 1, 'E', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010038', 'Steering', '4413485', '9T7220', '盖板', 1, 'E', 2, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010039', 'Steering', '4413485', '8C3206', '法兰', 4, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010040', 'Steering', '4413485', '5H4019', '盖板', 2, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010041', 'Steering', '4413485', '4J0520', '密封圈', 2, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010042', 'Steering', '4413485', '7S0530', '吊环', 1, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010043', 'Steering', '4413485', '8T4121', '垫圈', 8, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010044', 'Steering', '4413485', '8T4196', '螺栓', 8, 'F终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010045', 'Steering', '4413485', '3K0360', '密封圈', 4, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010046', 'Steering', '4413485', '9S4185', '堵头', 4, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010047', 'Steering', '4413485', '3600293', '油路块', 1, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010048', 'Steering', '4413485', '8T4121', '垫圈', 8, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010049', 'Steering', '4413485', '8T6466', '螺栓', 8, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778708239010050', 'Steering', '4413485', '4J0520', '密封圈', 2, 'G终装', 1, '2025-03-24 09:11:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944674010000', 'Steering', '6457847', '9S4183', '堵头', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010000', 'Steering', '6457847', '3D2824', 'O型圈', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010001', 'Steering', '6457847', '9S4185', '堵头', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010002', 'Steering', '6457847', '3K0360', 'O型圈', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010003', 'Steering', '6457847', '9S8006', '堵头', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010004', 'Steering', '6457847', '2M9780', 'O型圈', 1, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010005', 'Steering', '6457847', '7J1089', '堵头', 2, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010006', 'Steering', '6457847', '3J1907', 'O型圈', 2, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010007', 'Steering', '6457847', '5H3193', '穿销', 4, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010008', 'Steering', '6457847', '9S8002', '堵头', 10, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010009', 'Steering', '6457847', '3J7354', 'O型圈', 10, 'A', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010010', 'Steering', '6457847', '6E5289', '堵头', 2, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010011', 'Steering', '6457847', '3K0360', 'O型圈', 3, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010012', 'Steering', '6457847', '6V8398', 'O型圈', 2, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010013', 'Steering', '6457847', '9S4185', '堵头', 1, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010014', 'Steering', '6457847', '9S8002', '堵头', 1, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010015', 'Steering', '6457847', '3J7354', 'O型圈', 1, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010016', 'Steering', '6457847', '9J9821', '底座阀', 4, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010017', 'Steering', '6457847', '4B9782', '钢珠', 5, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010018', 'Steering', '6457847', '2S2596', '弹簧', 4, 'B', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010019', 'Steering', '6457847', '8J6815', '节流螺丝', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010020', 'Steering', '6457847', '8F9206', 'O型圈', 7, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010021', 'Steering', '6457847', '5J2974', 'O型圈', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010022', 'Steering', '6457847', '8T4196', '螺栓', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010023', 'Steering', '6457847', '8T6466', '螺栓', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010024', 'Steering', '6457847', '6E5291', '弹簧', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010025', 'Steering', '6457847', '6T6052', '截流套', 1, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010026', 'Steering', '6457847', '6V9830', '盖帽', 2, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010027', 'Steering', '6457847', '6J6506', '垫片', 1, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010028', 'Steering', '6457847', '1268473', '弹簧', 1, 'C', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010029', 'Steering', '6457847', '7J4321', '固定器', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010030', 'Steering', '6457847', '9M1974', '垫圈', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010031', 'Steering', '6457847', '6V5195', '螺栓', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010032', 'Steering', '6457847', '8T5005', '螺栓', 4, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010033', 'Steering', '6457847', '6457849', '铭牌', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010034', 'Steering', '6457847', '9T8672', '固定器', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010035', 'Steering', '6457847', '4J0520', 'O型圈', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010036', 'Steering', '6457847', '3760631', '溢流阀', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010037', 'Steering', '6457847', '1298222', '溢流阀', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010038', 'Steering', '6457847', '9T7220', '盖板', 1, 'D', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010039', 'Steering', '6457847', '5H4019', '盖板', 2, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010040', 'Steering', '6457847', '4J0520', '密封圈', 2, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010041', 'Steering', '6457847', '7S0530', '吊环', 1, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010042', 'Steering', '6457847', '8C3206', '法兰', 4, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010043', 'Steering', '6457847', '8T4121', '垫圈', 8, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010044', 'Steering', '6457847', '8T4196', '螺栓', 8, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742778944675010045', 'Steering', '6457847', '6065745', '贴膜', 1, 'E终装', 1, '2025-03-24 09:15:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010000', 'Steering', '5429999', '9S4183', '堵头', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010001', 'Steering', '5429999', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010002', 'Steering', '5429999', '9S4185', '堵头', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010003', 'Steering', '5429999', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010004', 'Steering', '5429999', '9S8006', '堵头', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010005', 'Steering', '5429999', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010006', 'Steering', '5429999', '7J1089', '堵头', 2, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010007', 'Steering', '5429999', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010008', 'Steering', '5429999', '5H3193', '穿销', 4, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010009', 'Steering', '5429999', '9S8002', '堵头', 10, 'A', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010010', 'Steering', '5429999', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010011', 'Steering', '5429999', '6E5289', '堵头', 2, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010012', 'Steering', '5429999', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010013', 'Steering', '5429999', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010014', 'Steering', '5429999', '9S4185', '堵头', 1, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010015', 'Steering', '5429999', '9S8002', '堵头', 1, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010016', 'Steering', '5429999', '9J9821', '底座阀', 4, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010017', 'Steering', '5429999', '4B9782', '钢珠', 5, 'B', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010018', 'Steering', '5429999', '2S2596', '弹簧', 4, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010019', 'Steering', '5429999', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010020', 'Steering', '5429999', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010021', 'Steering', '5429999', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010022', 'Steering', '5429999', '8T4196', '螺栓', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010023', 'Steering', '5429999', '8T6466', '螺栓', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010024', 'Steering', '5429999', '6E5291', '弹簧', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010025', 'Steering', '5429999', '6T6052', '截流套', 1, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010026', 'Steering', '5429999', '6V9830', '盖帽', 2, 'C', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010027', 'Steering', '5429999', '6J6506', '垫片', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010028', 'Steering', '5429999', '1268473', '弹簧', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010029', 'Steering', '5429999', '7J4321', '固定器', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010030', 'Steering', '5429999', '9M1974', '垫圈', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010031', 'Steering', '5429999', '1070269', '螺栓', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010032', 'Steering', '5429999', '8T5005', '螺栓', 4, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010033', 'Steering', '5429999', '5481611', '铭牌', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010034', 'Steering', '5429999', '9T8672', '固定器', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010035', 'Steering', '5429999', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010036', 'Steering', '5429999', '4564624', '溢流阀', 1, 'E', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010037', 'Steering', '5429999', '4564633', '溢流阀', 1, 'E', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010038', 'Steering', '5429999', '9T7220', '盖板', 1, 'E', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010039', 'Steering', '5429999', '8C3206', '法兰', 4, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010040', 'Steering', '5429999', '5H4019', '盖板', 2, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010041', 'Steering', '5429999', '4J0520', '密封圈', 2, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010042', 'Steering', '5429999', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010043', 'Steering', '5429999', '8T4121', '垫圈', 8, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010044', 'Steering', '5429999', '8T4196', '螺栓', 8, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742779086475010045', 'Steering', '5429999', '6065745', '铭牌', 1, 'F终装', 2, '2025-03-24 09:18:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418542010000', 'COMBO', '4512444', '9S8009', '堵头', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418543010000', 'COMBO', '4512444', '4K1388', 'O型圈', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418543010001', 'COMBO', '4512444', '9S4189', '堵头', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418544010000', 'COMBO', '4512444', '2M9780', 'O型圈', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418546010000', 'COMBO', '4512444', '9S4182', '堵头', 3, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418546010001', 'COMBO', '4512444', '3J7354', 'O型圈', 5, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418546010002', 'COMBO', '4512444', '9S4183', '堵头', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418547010000', 'COMBO', '4512444', '3D2824', 'O型圈', 1, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418547010001', 'COMBO', '4512444', '6V8647', '接头*8', 2, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418548010000', 'COMBO', '4512444', '4J5477', 'O型圈', 2, 'A', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418548010001', 'COMBO', '4512444', '3603693', '堵头', 4, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418548010002', 'COMBO', '4512444', '3K0360', 'O型圈', 5, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418548010003', 'COMBO', '4512444', '9S8003', '堵头', 1, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418548010004', 'COMBO', '4512444', '1J9671', 'O型圈', 1, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418549010000', 'COMBO', '4512444', '1318350', '阀', 1, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418549010001', 'COMBO', '4512444', '6V8398', 'O型圈', 1, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418550010000', 'COMBO', '4512444', '1007000', '支撑环', 2, 'B', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418550010001', 'COMBO', '4512444', '3676001', '堵头', 2, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418550010002', 'COMBO', '4512444', '3676002', '堵头', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418551010000', 'COMBO', '4512444', '3T8236', '弹簧', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418551010001', 'COMBO', '4512444', '1H0337', '阀', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418552010000', 'COMBO', '4512444', '4T1860', '梭阀', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418553010000', 'COMBO', '4512444', '8J6815', '节流螺钉', 2, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418553010001', 'COMBO', '4512444', '3P9498', '节流螺钉', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418553010002', 'COMBO', '4512444', '9F6705', '弹簧', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418556010000', 'COMBO', '4512444', '5M2057', 'O型圈', 1, 'C', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010000', 'COMBO', '4512444', '1006021', '阀', 1, 'D', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010001', 'COMBO', '4512444', '6E1924', '弹簧', 1, 'D', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010002', 'COMBO', '4512444', '6E1925', '弹簧', 1, 'D', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010003', 'COMBO', '4512444', '6V5230', '螺栓', 2, 'E', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010004', 'COMBO', '4512444', '8M3175', '垫片', 2, 'E', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010005', 'COMBO', '4512444', '4540936', '铭牌', 1, 'E', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010006', 'COMBO', '4512444', '3307743', '阀', 1, 'E', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010007', 'COMBO', '4512444', '6E1923', '油管', 1, 'E', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010008', 'COMBO', '4512444', '1488356', '直角接头组件', 1, 'F', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010009', 'COMBO', '4512444', '6V9834', '盖帽', 1, 'F', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010010', 'COMBO', '4512444', '4T4935', '阀', 1, 'F', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010011', 'COMBO', '4512444', '2191891', '塑料堵头', 1, 'G', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010012', 'COMBO', '4512444', '2965987', '塑料堵头', 1, 'G', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010013', 'COMBO', '4512444', '5796930', 'FILM', 1, 'G', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742780418557010014', 'COMBO', '4512444', '2191893', '塑料堵头', 4, 'H', 4, '2025-03-24 09:40:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005966010000', 'QD#1', '4860999', '2828827', '阀用塞堵', 4, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010000', 'QD#1', '4860999', '6204980', '钢铁簧环', 1, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010001', 'QD#1', '4860999', '1J9671', '橡胶密封圈', 2, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010002', 'QD#1', '4860999', '1P3706', '橡胶密封圈', 2, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010003', 'QD#1', '4860999', '3J7354', '橡胶密封圈', 1, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010004', 'QD#1', '4860999', '3603690', '钢铁制塞堵', 1, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010005', 'QD#1', '4860999', '9S8003', '钢铁制塞堵', 2, 'A', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010006', 'QD#1', '4860999', '2343043', '阀用盖板', 1, 'B', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010007', 'QD#1', '4860999', '6V8200', '钢铁制螺栓', 8, 'B', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010008', 'QD#1', '4860999', '2343451', '阀用盖板', 1, 'C', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010009', 'QD#1', '4860999', '5334159', '钢铁制螺栓', 24, 'C', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010010', 'QD#1', '4860999', '8C3206', '钢铁制法兰', 12, 'D', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010011', 'QD#1', '4860999', '4J0520', '橡胶密封圈', 6, 'E', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010012', 'QD#1', '4860999', '5H4019', '钢铁安装盖', 6, 'E', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005967010013', 'QD#1', '4860999', '2855628', '电磁换向阀', 1, 'E', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005968010000', 'QD#1', '4860999', '4D2886', '钢铁制管夹', 1, 'F', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742781005968010001', 'QD#1', '4860999', '2660531', '插座盖', 1, 'F', 4, '2025-03-24 09:50:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010000', 'COMBO', '1174079', '9S8009', '堵头', 1, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010001', 'COMBO', '1174079', '4K1388', 'O型圈', 1, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010002', 'COMBO', '1174079', '9S4189', '堵头', 1, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010003', 'COMBO', '1174079', '2M9780', 'O型圈', 1, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010004', 'COMBO', '1174079', '9S4182', '堵头', 3, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010005', 'COMBO', '1174079', '3J7354', 'O型圈', 6, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010006', 'COMBO', '1174079', '9S8002', '堵头', 1, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010007', 'COMBO', '1174079', '6V8647', '接头*8', 2, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010008', 'COMBO', '1174079', '4J5477', 'O型圈', 2, 'A', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010009', 'COMBO', '1174079', '9S4183', '堵头', 5, 'B', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010010', 'COMBO', '1174079', '3D2824', 'O型圈', 5, 'B', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010011', 'COMBO', '1174079', '9S4185', '堵头', 5, 'B', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010012', 'COMBO', '1174079', '3K0360', 'O型圈', 5, 'B', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010013', 'COMBO', '1174079', '6V3965', '测压接头', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010014', 'COMBO', '1174079', '3J1907', 'O型圈', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010015', 'COMBO', '1174079', '1318350', '阀', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010016', 'COMBO', '1174079', '3K0360', 'O型圈', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010017', 'COMBO', '1174079', '3T8236', '弹簧', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010018', 'COMBO', '1174079', '6V8398', 'O型圈', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010019', 'COMBO', '1174079', '7X4776', '支撑环', 2, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010020', 'COMBO', '1174079', '9S8003', '堵头', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010021', 'COMBO', '1174079', '1J9671', 'O型圈', 1, 'C', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010022', 'COMBO', '1174079', '8T8987', '直角接头', 1, 'D', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010023', 'COMBO', '1174079', '6V9833', '盖帽', 1, 'D', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010024', 'COMBO', '1174079', '5K9090', 'O型圈', 1, 'D', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010025', 'COMBO', '1174079', '2S4078', 'O型圈', 1, 'D', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010026', 'COMBO', '1174079', '9S8001', '堵头', 2, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010027', 'COMBO', '1174079', '4J7533', 'O型圈', 2, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010028', 'COMBO', '1174079', '8J6815', '节流螺钉', 2, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010029', 'COMBO', '1174079', '3P9498', '节流螺钉', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010030', 'COMBO', '1174079', '1H0337', '阀', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010031', 'COMBO', '1174079', '9F6705', '弹簧', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010032', 'COMBO', '1174079', '4T1860', '梭阀', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010033', 'COMBO', '1174079', '6E1924', '弹簧', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010034', 'COMBO', '1174079', '6E1925', '弹簧', 1, 'E', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010035', 'COMBO', '1174079', '8M3175', '垫片', 2, 'F', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010036', 'COMBO', '1174079', '5M2057', 'O型圈', 1, 'F', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010037', 'COMBO', '1174079', '6V5230', '螺栓', 2, 'F', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010038', 'COMBO', '1174079', '1278480', '阀', 1, 'F', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010039', 'COMBO', '1174079', '6E4703', '阀', 1, 'G', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010040', 'COMBO', '1174079', '4T4935', '阀', 1, 'G', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010041', 'COMBO', '1174079', '6E1923', '油管', 1, 'G', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010042', 'COMBO', '1174079', '1243488', '铭牌', 1, 'G', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010043', 'COMBO', '1174079', '5796930', 'FILM', 1, 'H', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742782449969010044', 'COMBO', '1174079', '6V0852', '保护套', 1, 'H', 4, '2025-03-24 10:14:10', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010000', 'MG Segment', '3701255', '9S8005', '堵头', 1, 'A', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010001', 'MG Segment', '3701255', '3K0360', '密封O型圈', 3, 'A', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010002', 'MG Segment', '3701255', '9J0404', '堵头', 2, 'A', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010003', 'MG Segment', '3701255', '7J9933', '密封O型圈', 2, 'A', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010004', 'MG Segment', '3701255', '3405472', '左手柄', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010005', 'MG Segment', '3701255', '8M4437', '密封O型圈', 2, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010006', 'MG Segment', '3701255', '6E4502', '堵头', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010007', 'MG Segment', '3701255', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010008', 'MG Segment', '3701255', '6E3019', '阀', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010009', 'MG Segment', '3701255', '6E5153', '弹簧', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010010', 'MG Segment', '3701255', '1082187', '堵头', 1, 'B', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010011', 'MG Segment', '3701255', '5B9318', '钢球', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010012', 'MG Segment', '3701255', '6E3007', '弹簧', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010013', 'MG Segment', '3701255', '1011973', '轴承座', 4, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010014', 'MG Segment', '3701255', '1027412', '弹簧', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010015', 'MG Segment', '3701255', '8T4189', '螺栓', 2, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010016', 'MG Segment', '3701255', '8T4224', '垫片', 2, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010017', 'MG Segment', '3701255', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010018', 'MG Segment', '3701255', '1011971', '杆体', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010019', 'MG Segment', '3701255', '1063659', '活塞', 1, 'C', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010020', 'MG Segment', '3701255', '1487906', '阀芯', 1, 'D', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010021', 'MG Segment', '3701255', '1011984', '手柄座套', 1, 'E', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010022', 'MG Segment', '3701255', '2K8199', '密封O型圈', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010023', 'MG Segment', '3701255', '8T4138', '螺栓', 2, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010024', 'MG Segment', '3701255', '1012480', '盖板', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010025', 'MG Segment', '3701255', '1118233', '弹簧', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010026', 'MG Segment', '3701255', '4D9986', '密封O型圈', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320958010027', 'MG Segment', '3701255', '3701256', '铭牌', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320959010000', 'MG Segment', '3701255', '8T4189', '螺栓', 2, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320959010001', 'MG Segment', '3701255', '8T4224', '垫片', 2, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783320959010002', 'MG Segment', '3701255', '1011978', '盖板', 1, 'F', 8, '2025-03-24 10:28:41', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010000', 'MG Combo', '5358582', '9S8009', '堵头', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010001', 'MG Combo', '5358582', '4K1388', 'O型圈', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010002', 'MG Combo', '5358582', '9S4189', '堵头', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010003', 'MG Combo', '5358582', '2M9780', 'O型圈', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010004', 'MG Combo', '5358582', '9S4182', '堵头', 3, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010005', 'MG Combo', '5358582', '3J7354', 'O型圈', 3, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010006', 'MG Combo', '5358582', '9S8002', '堵头', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010007', 'MG Combo', '5358582', '3J7354', 'O型圈', 1, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010008', 'MG Combo', '5358582', '6V8647', '接头', 2, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010009', 'MG Combo', '5358582', '3J7354', 'O型圈', 2, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010010', 'MG Combo', '5358582', '4J5477', 'O型圈', 2, 'A', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010011', 'MG Combo', '5358582', '9S4183', '堵头', 5, 'B', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010012', 'MG Combo', '5358582', '3D2824', 'O型圈', 5, 'B', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010013', 'MG Combo', '5358582', '9S4185', '堵头', 5, 'B', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010014', 'MG Combo', '5358582', '3K0360', 'O型圈', 5, 'B', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010015', 'MG Combo', '5358582', '6V3965', '测压接头', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010016', 'MG Combo', '5358582', '3J1907', 'O型圈', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010017', 'MG Combo', '5358582', '1318350', '阀', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010018', 'MG Combo', '5358582', '3K0360', 'O型圈', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010019', 'MG Combo', '5358582', '3T8236', '弹簧', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010020', 'MG Combo', '5358582', '6V8398', 'O型圈', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010021', 'MG Combo', '5358582', '1007000', '支撑环', 2, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010022', 'MG Combo', '5358582', '9S8003', '堵头', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010023', 'MG Combo', '5358582', '1J9671', 'O型圈', 1, 'C', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010024', 'MG Combo', '5358582', '8T8987', '直角接头', 1, 'D', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010025', 'MG Combo', '5358582', '6V9833', '盖帽', 1, 'D', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010026', 'MG Combo', '5358582', '5K9090', 'O型圈', 1, 'D', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010027', 'MG Combo', '5358582', '2S4078', 'O型圈', 1, 'D', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010028', 'MG Combo', '5358582', '9S8001', '堵头', 2, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010029', 'MG Combo', '5358582', '4J7533', 'O型圈', 2, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010030', 'MG Combo', '5358582', '8J6815', '节流螺钉', 2, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010031', 'MG Combo', '5358582', '3P9498', '节流螺钉', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010032', 'MG Combo', '5358582', '1H0337', '阀', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010033', 'MG Combo', '5358582', '9F6705', '弹簧', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010034', 'MG Combo', '5358582', '4T1860', '梭阀', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010035', 'MG Combo', '5358582', '6E1924', '弹簧', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010036', 'MG Combo', '5358582', '6E1925', '弹簧', 1, 'E', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010037', 'MG Combo', '5358582', '8M3175', '垫片', 2, 'F', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010038', 'MG Combo', '5358582', '5M2057', 'O型圈', 1, 'F', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010039', 'MG Combo', '5358582', '6V5230', '螺栓', 2, 'F', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010040', 'MG Combo', '5358582', '5358581', '阀', 1, 'F', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010041', 'MG Combo', '5358582', '3307743', '阀', 1, 'G', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010042', 'MG Combo', '5358582', '4T4935', '阀', 1, 'G', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010043', 'MG Combo', '5358582', '6E1923', '油管', 1, 'G', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010044', 'MG Combo', '5358582', '5358583', '铭牌', 1, 'G', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010045', 'MG Combo', '5358582', '5796930', 'FILM', 1, 'H', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742787871472010046', 'MG Combo', '5358582', '6V0852', '保护套', 1, 'H', 4, '2025-03-24 11:44:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010000', 'Monoblock Valve', '6065004', '2828827', 'PLUG', 14, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010001', 'Monoblock Valve', '6065004', '3884493', 'VALVE GP-CHECK', 2, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010002', 'Monoblock Valve', '6065004', '3J1907', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010003', 'Monoblock Valve', '6065004', '9S8004', 'PLUG-LD STOR', 5, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010004', 'Monoblock Valve', '6065004', '2928061', 'PLUG', 4, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010005', 'Monoblock Valve', '6065004', '9S4191', 'PLUG-EXT HEX', 2, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010006', 'Monoblock Valve', '6065004', '3676003', 'PLUG AS-HD STOR', 2, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010007', 'Monoblock Valve', '6065004', '3321986', 'VALVE GP-D RLF-A', 1, 'A', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010008', 'Monoblock Valve', '6065004', '2344869', 'VALVE GP-MAKE UP', 1, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010009', 'Monoblock Valve', '6065004', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010010', 'Monoblock Valve', '6065004', '9S4182', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010011', 'Monoblock Valve', '6065004', '6014921', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010012', 'Monoblock Valve', '6065004', '3568547', 'SPOOL', 2, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010013', 'Monoblock Valve', '6065004', '3631610', 'SPRING', 2, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010014', 'Monoblock Valve', '6065004', '3568548', 'SPOOL', 2, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010015', 'Monoblock Valve', '6065004', '4519131', 'PLUG-RETAINER', 2, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010016', 'Monoblock Valve', '6065004', '7M8485', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010017', 'Monoblock Valve', '6065004', '3J1907', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010018', 'Monoblock Valve', '6065004', '9S4191', 'PLUG-EXT HEX', 2, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010019', 'Monoblock Valve', '6065004', '6V5393', 'SEAL-O-RING', 2, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010020', 'Monoblock Valve', '6065004', '4J5309', 'SEAL-O RING', 2, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010021', 'Monoblock Valve', '6065004', '8T3844', 'BOLT-HEX HEAD ', 4, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010022', 'Monoblock Valve', '6065004', '9X8256', 'WASHER ', 4, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010023', 'Monoblock Valve', '6065004', '5981605', 'VALVE GP-SOL', 2, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010024', 'Monoblock Valve', '6065004', '1091393', 'BOLT-SOCKET HEAD', 4, 'C', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010025', 'Monoblock Valve', '6065004', '7M8485', 'SEAL-O-RING-STOR', 2, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010026', 'Monoblock Valve', '6065004', '9S4181', 'PLUG-LD STOR', 2, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010027', 'Monoblock Valve', '6065004', '3705764', 'VALVE GP-D RLF-C', 1, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010028', 'Monoblock Valve', '6065004', '3338242', 'VALVE GP-SOL', 1, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010029', 'Monoblock Valve', '6065004', '4955303', 'VALVE GP-D RLF-C', 1, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010030', 'Monoblock Valve', '6065004', '4948090', 'RETAINER', 4, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010031', 'Monoblock Valve', '6065004', '2841010', 'V00MB00028Spring', 2, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010032', 'Monoblock Valve', '6065004', '2841011', 'SPRING', 2, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010033', 'Monoblock Valve', '6065004', '3594661', 'BOLT', 2, 'D', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010034', 'Monoblock Valve', '6065004', '3568561', 'VALVE', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010035', 'Monoblock Valve', '6065004', '2369832', 'SPRING', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010036', 'Monoblock Valve', '6065004', '4456109', 'VALVE GP-P CHK', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010037', 'Monoblock Valve', '6065004', '2913787', 'Valve GP-Relief', 1, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010038', 'Monoblock Valve', '6065004', '3K0360', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010039', 'Monoblock Valve', '6065004', '9S8005', 'PLUG-INTL HEX', 1, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010040', 'Monoblock Valve', '6065004', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010041', 'Monoblock Valve', '6065004', '9S4191', 'PLUG-EXT HEX', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010042', 'Monoblock Valve', '6065004', '2256948', 'SEAL-O-RING', 2, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010043', 'Monoblock Valve', '6065004', '4J5309', 'SEAL-O RING', 1, 'E', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010044', 'Monoblock Valve', '6065004', '5P9186', 'SEAL-O-RING', 1, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010045', 'Monoblock Valve', '6065004', '4572451', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010046', 'Monoblock Valve', '6065004', '9X8256', 'WASHER ', 4, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010047', 'Monoblock Valve', '6065004', '5981605', 'VALVE GP-SOL', 2, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010048', 'Monoblock Valve', '6065004', '1091393', 'BOLT-SOCKET HEAD', 4, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010049', 'Monoblock Valve', '6065004', '9S4180', 'PLUG-LD STOR', 2, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010050', 'Monoblock Valve', '6065004', '4J7533', 'SEAL-O-RING-STOR', 2, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010051', 'Monoblock Valve', '6065004', '6065014', 'PLATE-IDENT', 1, 'F', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010052', 'Monoblock Valve', '6065004', '2965987', 'PLUG', 3, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010053', 'Monoblock Valve', '6065004', '3J7354', 'SEAL-O-RING-STOR', 1, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010054', 'Monoblock Valve', '6065004', '9S4182', 'PLUG-LD STOR', 1, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010055', 'Monoblock Valve', '6065004', '2660531', 'CAP-CONNECTOR', 1, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010056', 'Monoblock Valve', '6065004', '6164614', 'FLIM', 1, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010057', 'Monoblock Valve', '6065004', '6164612', 'FLIM', 3, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010058', 'Monoblock Valve', '6065004', '6164613', 'FLIM', 4, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742792949296010059', 'Monoblock Valve', '6065004', '5542333', 'CAP-CONNECTOR', 4, 'G', 1, '2025-03-24 13:09:09', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010000', 'MG Segment', '6E3035', '3K0360', '密封O型圈', 3, 'A', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010001', 'MG Segment', '6E3035', '9S8005', '堵头', 1, 'A', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010002', 'MG Segment', '6E3035', '9J0404', '堵头', 2, 'A', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010003', 'MG Segment', '6E3035', '3613549', '密封O型圈', 2, 'A', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010004', 'MG Segment', '6E3035', '3405472', '左手柄', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010005', 'MG Segment', '6E3035', '8M4437', '密封O型圈', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010006', 'MG Segment', '6E3035', '6E4502', '堵头', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010007', 'MG Segment', '6E3035', '4J7533', '密封O型圈', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010008', 'MG Segment', '6E3035', '6E3019', '阀', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010009', 'MG Segment', '6E3035', '6E5153', '弹簧', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010010', 'MG Segment', '6E3035', '1082187', '堵头', 1, 'B', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010011', 'MG Segment', '6E3035', '5B9318', '钢球', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010012', 'MG Segment', '6E3035', '6E3007', '弹簧', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010013', 'MG Segment', '6E3035', '1011973', '轴承座', 4, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010014', 'MG Segment', '6E3035', '1027412', '弹簧', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010015', 'MG Segment', '6E3035', '8T4189', '螺栓', 2, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010016', 'MG Segment', '6E3035', '8T4224', '垫片', 2, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010017', 'MG Segment', '6E3035', '2K8199', '密封O型圈', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010018', 'MG Segment', '6E3035', '1011971', '杆体', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010019', 'MG Segment', '6E3035', '1063659', '活塞', 1, 'C', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010020', 'MG Segment', '6E3035', '1487906', '阀芯', 1, 'D', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010021', 'MG Segment', '6E3035', '1011984', '手柄座套', 1, 'E', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010022', 'MG Segment', '6E3035', '2K8199', '密封O型圈', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010023', 'MG Segment', '6E3035', '8T4138', '螺栓', 2, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010024', 'MG Segment', '6E3035', '1012480', '盖板', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010025', 'MG Segment', '6E3035', '1118233', '弹簧', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010026', 'MG Segment', '6E3035', '4D9986', '密封O型圈', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010027', 'MG Segment', '6E3035', '1070518', '铭牌', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010028', 'MG Segment', '6E3035', '8T4189', '螺栓', 2, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010029', 'MG Segment', '6E3035', '8T4224', '垫片', 2, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793105464010030', 'MG Segment', '6E3035', '1011978', '盖板', 1, 'F', 8, '2025-03-24 13:11:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010000', 'Monoblock Valve', '5090599', '3J1907', 'SEAL-O-RING-STOR', 7, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010001', 'Monoblock Valve', '5090599', '9S4191', 'PLUG-LD STOR', 2, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010002', 'Monoblock Valve', '5090599', '3J7354', 'SEAL-O-RING-STOR', 1, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010003', 'Monoblock Valve', '5090599', '9S4182', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010004', 'Monoblock Valve', '5090599', '9S8004', 'PLUG-LD STOR', 5, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010005', 'Monoblock Valve', '5090599', '2828827', 'PLUG', 9, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010006', 'Monoblock Valve', '5090599', '2928061', 'PLUG', 4, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010007', 'Monoblock Valve', '5090599', '3321986', 'VALVE GP-D RLF-A', 1, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010008', 'Monoblock Valve', '5090599', '3884493', 'VALVE GP-CHECK', 2, 'A1', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010009', 'Monoblock Valve', '5090599', '9S4191', 'PLUG-LD STOR', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010010', 'Monoblock Valve', '5090599', '3J1907', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010011', 'Monoblock Valve', '5090599', '7M8485', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010012', 'Monoblock Valve', '5090599', '2344869', 'VALVE GP-MAKE UP', 1, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010013', 'Monoblock Valve', '5090599', '3568547', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010014', 'Monoblock Valve', '5090599', '3568548', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010015', 'Monoblock Valve', '5090599', '3631610', 'SPRING', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010016', 'Monoblock Valve', '5090599', '6068313', 'VALVE GP-P RLF-A', 1, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010017', 'Monoblock Valve', '5090599', '4519131', 'PLUG-RETAINER', 2, 'A2', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010018', 'Monoblock Valve', '5090599', '3S9233', 'SEAL-O-RING', 1, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010019', 'Monoblock Valve', '5090599', '4J5309', '4J5309 RING', 1, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010020', 'Monoblock Valve', '5090599', '6V5393', 'SEAL-O RING', 2, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010021', 'Monoblock Valve', '5090599', '7M8485', 'SEAL-O-RING-STOR', 2, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010022', 'Monoblock Valve', '5090599', '8T4138', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010023', 'Monoblock Valve', '5090599', '9S4181', 'PLUG-LD STOR', 2, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010024', 'Monoblock Valve', '5090599', '3338242', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010025', 'Monoblock Valve', '5090599', '3705764', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010026', 'Monoblock Valve', '5090599', '4955303', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010027', 'Monoblock Valve', '5090599', '2841010', 'Spring', 2, 'A4', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010028', 'Monoblock Valve', '5090599', '2841011', 'SPRING', 2, 'A4', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010029', 'Monoblock Valve', '5090599', '5498842', 'PLUG AS', 4, 'A4', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010030', 'Monoblock Valve', '5090599', '3594661', 'BOLT', 2, 'A4', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010031', 'Monoblock Valve', '5090599', '4948090', 'RETAINER', 4, 'A4', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010032', 'Monoblock Valve', '5090599', '2369832', 'SPRING', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010033', 'Monoblock Valve', '5090599', '3568561', 'VALVE', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010034', 'Monoblock Valve', '5090599', '4J5309', '4J5309 RING', 1, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010035', 'Monoblock Valve', '5090599', '8F3469', 'SEAL-O RING', 1, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010036', 'Monoblock Valve', '5090599', '8T4138', 'BOLT-HEX HEAD', 4, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010037', 'Monoblock Valve', '5090599', '9S4191', 'PLUG-LD STOR', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010038', 'Monoblock Valve', '5090599', '3J1907', 'SEAL-O-RING-STOR', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010039', 'Monoblock Valve', '5090599', '2256948', 'SEAL-O-RING', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010040', 'Monoblock Valve', '5090599', '4456109', 'VALVE GP-P CHK', 2, 'A5', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010041', 'Monoblock Valve', '5090599', '9S4180', 'PLUG-LD STOR', 2, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010042', 'Monoblock Valve', '5090599', '4J7533', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010043', 'Monoblock Valve', '5090599', '1919247', 'WASHER', 4, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010044', 'Monoblock Valve', '5090599', '1982914', 'NUT-HEXAGON', 4, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010045', 'Monoblock Valve', '5090599', '3128629', 'COIL AS', 4, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010046', 'Monoblock Valve', '5090599', '3161438', 'CARTRIDGE AS', 4, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010047', 'Monoblock Valve', '5090599', '3617213', 'Cartridge As', 4, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010048', 'Monoblock Valve', '5090599', '5090600', 'PLATE-IDENT', 1, 'A6', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010049', 'Monoblock Valve', '5090599', '6164612', 'FILM', 3, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010050', 'Monoblock Valve', '5090599', '6164614', 'FILM', 1, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010051', 'Monoblock Valve', '5090599', '3J7354', 'SEAL-O-RING-STOR', 1, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010052', 'Monoblock Valve', '5090599', '9S4182', 'PLUG-LD STOR', 1, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010053', 'Monoblock Valve', '5090599', '2660531', 'CAP-CONNECTOR', 5, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793233999010054', 'Monoblock Valve', '5090599', '2965987', 'PLUG', 3, 'A7', 1, '2025-03-24 13:13:54', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010000', 'Monoblock Valve', '6125992', '3J1907', 'SEAL-O-RING-STOR', 7, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010001', 'Monoblock Valve', '6125992', '9S4191', 'PLUG-LD STOR', 2, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010002', 'Monoblock Valve', '6125992', '3J7354', 'SEAL-O-RING-STOR', 1, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010003', 'Monoblock Valve', '6125992', '9S4182', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010004', 'Monoblock Valve', '6125992', '9S8004', 'PLUG-LD STOR', 5, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010005', 'Monoblock Valve', '6125992', '2828827', 'PLUG', 6, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010006', 'Monoblock Valve', '6125992', '2928061', 'PLUG', 4, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010007', 'Monoblock Valve', '6125992', '3884493', 'VALVE GP-CHECK', 2, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010008', 'Monoblock Valve', '6125992', '5537512', 'Valve GP-P RLF-B', 1, 'A1', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010009', 'Monoblock Valve', '6125992', '7M8485', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010010', 'Monoblock Valve', '6125992', '2344869', 'SEAL-O-RING-STOR', 1, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010011', 'Monoblock Valve', '6125992', '3568547', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010012', 'Monoblock Valve', '6125992', '3568548', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010013', 'Monoblock Valve', '6125992', '3631610', 'SPRING', 2, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010014', 'Monoblock Valve', '6125992', '6014921', 'VALVE GP-P RLF-A', 1, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010015', 'Monoblock Valve', '6125992', '4519131', 'PLUG-RETAINER', 2, 'A2', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010016', 'Monoblock Valve', '6125992', '6V5393', 'SEAL-O RING', 2, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010017', 'Monoblock Valve', '6125992', '7M8485', 'SEAL-O-RING-STOR', 2, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010018', 'Monoblock Valve', '6125992', '8T4138', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010019', 'Monoblock Valve', '6125992', '9S4181', 'PLUG-LD STOR', 2, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010020', 'Monoblock Valve', '6125992', '3338242', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010021', 'Monoblock Valve', '6125992', '3705764', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010022', 'Monoblock Valve', '6125992', '4955300', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010023', 'Monoblock Valve', '6125992', '2256948', 'SEAL-O-RING', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010024', 'Monoblock Valve', '6125992', '2369832', 'SPRING', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010025', 'Monoblock Valve', '6125992', '2841010', 'Spring', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010026', 'Monoblock Valve', '6125992', '2841011', 'SPRING', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010027', 'Monoblock Valve', '6125992', '2950993', 'RETAINER', 4, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010028', 'Monoblock Valve', '6125992', '3568561', 'VALVE', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010029', 'Monoblock Valve', '6125992', '3594661', 'BOLT', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010030', 'Monoblock Valve', '6125992', '4456109', 'VALVE GP-P CHK', 2, 'A4', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010031', 'Monoblock Valve', '6125992', '8T4138', 'BOLT-HEX HEAD', 3, 'A5', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010032', 'Monoblock Valve', '6125992', '9S4180', 'PLUG-LD STOR', 2, 'A5', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010033', 'Monoblock Valve', '6125992', '4J7533', 'SEAL-O-RING-STOR', 2, 'A5', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010034', 'Monoblock Valve', '6125992', '6126001', 'PLATE-IDENT', 1, 'A5', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010035', 'Monoblock Valve', '6125992', '5498842', 'PLUG', 6, 'A5', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010036', 'Monoblock Valve', '6125992', '6164612', 'FILM', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010037', 'Monoblock Valve', '6125992', '6164650', 'FILM', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010038', 'Monoblock Valve', '6125992', '3J7354', 'SEAL-O-RING-STOR', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010039', 'Monoblock Valve', '6125992', '9S4182', 'PLUG-LD STOR', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010040', 'Monoblock Valve', '6125992', '2660531', 'CAP-CONNECTOR', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010041', 'Monoblock Valve', '6125992', '2965987', 'PLUG', 7, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793312524010042', 'Monoblock Valve', '6125992', '6403576', 'PLUG', 1, 'A6', 1, '2025-03-24 13:15:13', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010000', 'WL-ZL50', '6456686', '3J1907', 'SEAL-O-RING-STOR', 8, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010001', 'WL-ZL50', '6456686', '9S4191', 'PLUG-LD STOR', 3, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010002', 'WL-ZL50', '6456686', '3J7354', 'SEAL-O-RING-STOR', 1, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010003', 'WL-ZL50', '6456686', '9S4182', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010004', 'WL-ZL50', '6456686', '9S8004', 'PLUG-LD STOR', 5, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010005', 'WL-ZL50', '6456686', '1483483', 'PLUG', 1, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010006', 'WL-ZL50', '6456686', '2828827', 'PLUG', 5, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010007', 'WL-ZL50', '6456686', '2928061', 'PLUG', 2, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010008', 'WL-ZL50', '6456686', '5514844', 'VALVE GP-D RLF-A', 1, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010009', 'WL-ZL50', '6456686', '3884493', 'VALVE GP-CHECK', 2, 'A1', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010010', 'WL-ZL50', '6456686', '7M8485', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010011', 'WL-ZL50', '6456686', '2344869', 'VALVE GP-MAKE UP', 1, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010012', 'WL-ZL50', '6456686', '3568547', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010013', 'WL-ZL50', '6456686', '3568548', 'SPOOL', 2, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010014', 'WL-ZL50', '6456686', '3631610', 'SPRING', 2, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010015', 'WL-ZL50', '6456686', '6068312', 'VALVE GP-P RLF-A', 1, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010016', 'WL-ZL50', '6456686', '4519131', 'PLUG-RETAINER', 2, 'A2', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010017', 'WL-ZL50', '6456686', '8T4138', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010018', 'WL-ZL50', '6456686', '7M8485', 'SEAL-O-RING-STOR', 2, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010019', 'WL-ZL50', '6456686', '9S4181', 'PLUG-LD STOR', 2, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010020', 'WL-ZL50', '6456686', '6116430', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010021', 'WL-ZL50', '6456686', '8T3998', 'BOLT', 2, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010022', 'WL-ZL50', '6456686', '5514844', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010023', 'WL-ZL50', '6456686', '4955302', 'VALVE GP-D RLF-C', 1, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010024', 'WL-ZL50', '6456686', '6V5393', 'SEAL-O-RING-STOR', 2, 'A3', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010025', 'WL-ZL50', '6456686', '2256948', 'SEAL-O-RING', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010026', 'WL-ZL50', '6456686', '2369832', 'SPRING', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010027', 'WL-ZL50', '6456686', '2841010', 'Spring', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010028', 'WL-ZL50', '6456686', '2841011', 'SPRING', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010029', 'WL-ZL50', '6456686', '2950993', 'RETAINER', 4, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010030', 'WL-ZL50', '6456686', '3568561', 'VALVE', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010031', 'WL-ZL50', '6456686', '3594661', 'BOLT', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010032', 'WL-ZL50', '6456686', '4456109', 'VALVE GP-P CHK', 2, 'A4', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010033', 'WL-ZL50', '6456686', '8T4138', 'BOLT-HEX HEAD', 3, 'A5', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010034', 'WL-ZL50', '6456686', '9S4180', 'PLUG-LD STOR', 2, 'A5', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010035', 'WL-ZL50', '6456686', '4J7533', 'SEAL-O-RING-STOR', 2, 'A5', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010036', 'WL-ZL50', '6456686', '6460227', 'PLATE-IDENT', 1, 'A5', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010037', 'WL-ZL50', '6456686', '6164612', 'FILM', 3, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010038', 'WL-ZL50', '6456686', '6164614', 'FILM', 1, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010039', 'WL-ZL50', '6456686', '3J7354', 'SEAL-O-RING-STOR', 1, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010040', 'WL-ZL50', '6456686', '9S4182', 'PLUG-LD STOR', 1, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010041', 'WL-ZL50', '6456686', '5542333', 'CAP-CONNECTOR', 1, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010042', 'WL-ZL50', '6456686', '2965987', 'PLUG', 6, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010043', 'WL-ZL50', '6456686', '5498842', 'PLUG AS', 4, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742793685162010044', 'WL-ZL50', '6456686', '6403576', 'PLUG', 1, 'A6', 1, '2025-03-24 13:21:25', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010000', 'Monoblock Valve', '4948095', '9S8007', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010001', 'Monoblock Valve', '4948095', '1T0936', 'PLUG-PIPE', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010002', 'Monoblock Valve', '4948095', '7T6496', 'PLUG', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010003', 'Monoblock Valve', '4948095', '1014845', 'PLUG-NPTF', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010004', 'Monoblock Valve', '4948095', '1483483', 'PLUG', 7, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010005', 'Monoblock Valve', '4948095', '7J0204', 'SEAL-O-RING', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010006', 'Monoblock Valve', '4948095', '2828827', 'PLUG', 1, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010007', 'Monoblock Valve', '4948095', '3676002', 'PLUG AS-HD STOR', 4, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010008', 'Monoblock Valve', '4948095', '3676003', 'PLUG AS-HD STOR', 2, 'A1', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010009', 'Monoblock Valve', '4948095', '9J5754', 'SPRING', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010010', 'Monoblock Valve', '4948095', '2M9780', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010011', 'Monoblock Valve', '4948095', '9S4190', 'PLUG-LD STOR', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010012', 'Monoblock Valve', '4948095', '3631613', 'BOLT', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010013', 'Monoblock Valve', '4948095', '3603681', 'PLUG-HD STOR', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010014', 'Monoblock Valve', '4948095', '6061170', 'VALVE GP-D RLF-C', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010015', 'Monoblock Valve', '4948095', '4231786', 'RETAINER', 2, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010016', 'Monoblock Valve', '4948095', '4231787', 'SPRING', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010017', 'Monoblock Valve', '4948095', '4555822', 'VALVE GP-RLF -A', 1, 'A2', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010018', 'Monoblock Valve', '4948095', '9X8256', 'WASHER', 4, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010019', 'Monoblock Valve', '4948095', '3J1907', 'SEAL-O-RING-STOR', 4, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010020', 'Monoblock Valve', '4948095', '9S8004', 'PLUG-LD STOR', 4, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010021', 'Monoblock Valve', '4948095', '2828827', 'PLUG', 11, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010022', 'Monoblock Valve', '4948095', '3884493', 'VALVE GP-CHECK', 2, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010023', 'Monoblock Valve', '4948095', '4572451', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010024', 'Monoblock Valve', '4948095', '6V5759', 'SEAL-O-RING', 4, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010025', 'Monoblock Valve', '4948095', '3979397', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010026', 'Monoblock Valve', '4948095', '1234750', 'VALVE-CHECK', 1, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010027', 'Monoblock Valve', '4948095', '1488378', 'ADAPTER AS', 1, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010028', 'Monoblock Valve', '4948095', '9S4191', 'PLUG-LD STOR', 2, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010029', 'Monoblock Valve', '4948095', '3J1907', 'SEAL-O-RING-STOR', 2, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010030', 'Monoblock Valve', '4948095', '2928061', 'PLUG', 6, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010031', 'Monoblock Valve', '4948095', '3685096', 'TUBE AS.', 1, 'A4', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010032', 'Monoblock Valve', '4948095', '6J2419', 'SEAL-O RING', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010033', 'Monoblock Valve', '4948095', '8T4138', 'BOLT-HEX HEAD', 2, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010034', 'Monoblock Valve', '4948095', '9S4191', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010035', 'Monoblock Valve', '4948095', '3J7354', 'SEAL-O-RING-STOR', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010036', 'Monoblock Valve', '4948095', '9S4182', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010037', 'Monoblock Valve', '4948095', '3J1907', 'SEAL-O-RING-STOR', 5, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010038', 'Monoblock Valve', '4948095', '9S8004', 'PLUG-LD STOR', 4, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010039', 'Monoblock Valve', '4948095', '7J0204', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010040', 'Monoblock Valve', '4948095', '2344869', 'VALVE GP-MAKE UP', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010041', 'Monoblock Valve', '4948095', '3321986', 'VALVE GP-D RLF-A', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010042', 'Monoblock Valve', '4948095', '3632687', 'HOUSING', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010043', 'Monoblock Valve', '4948095', '6068313', 'VALVE GP-P RLF-A', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010044', 'Monoblock Valve', '4948095', '9S8007', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010045', 'Monoblock Valve', '4948095', '6V5393', 'SEAL-O RING', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010046', 'Monoblock Valve', '4948095', '7M8485', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010047', 'Monoblock Valve', '4948095', '9W7783', 'PLUG', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010048', 'Monoblock Valve', '4948095', '3J1907', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010049', 'Monoblock Valve', '4948095', '9S4191', 'PLUG-LD STOR', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010050', 'Monoblock Valve', '4948095', '3568547', 'SPOOL', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010051', 'Monoblock Valve', '4948095', '3568548', 'SPOOL', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010052', 'Monoblock Valve', '4948095', '3631610', 'SPRING', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010053', 'Monoblock Valve', '4948095', '4519131', 'PLUG-RETAINER', 2, 'A6', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010054', 'Monoblock Valve', '4948095', '3S9233', 'SEAL-O-RING', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010055', 'Monoblock Valve', '4948095', '4J5309', '4J5309 RING', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010056', 'Monoblock Valve', '4948095', '6J3134', 'SEAL-O RING', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010057', 'Monoblock Valve', '4948095', '8T4138', 'BOLT-HEX HEAD', 4, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010058', 'Monoblock Valve', '4948095', '7M8485', 'SEAL-O-RING-STOR', 2, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010059', 'Monoblock Valve', '4948095', '9S4181', 'PLUG-LD STOR', 2, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010060', 'Monoblock Valve', '4948095', '3338242', 'VALVE GP-SOL', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010061', 'Monoblock Valve', '4948095', '3705764', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010062', 'Monoblock Valve', '4948095', '4955303', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010063', 'Monoblock Valve', '4948095', '6V0357', 'SEAL-O RING', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010064', 'Monoblock Valve', '4948095', '6V7607', 'WASHER-HARD', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010065', 'Monoblock Valve', '4948095', '2404695', 'RING-BACKUP', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010066', 'Monoblock Valve', '4948095', '2841010', 'Spring', 2, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010067', 'Monoblock Valve', '4948095', '2841011', 'SPRING', 2, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010068', 'Monoblock Valve', '4948095', '3594661', 'BOLT', 2, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010069', 'Monoblock Valve', '4948095', '3632697', 'RETAINER', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010070', 'Monoblock Valve', '4948095', '3632698', 'STEM-VALVE', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010071', 'Monoblock Valve', '4948095', '3964852', 'SEAL-O-RING', 1, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010072', 'Monoblock Valve', '4948095', '4948090', 'RETAINER', 4, 'A8', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010073', 'Monoblock Valve', '4948095', '4J5309', '4J5309 RING', 1, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010074', 'Monoblock Valve', '4948095', '6K6307', 'SEAL-O-RING', 1, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010075', 'Monoblock Valve', '4948095', '8F3469', 'SEAL-O RING', 1, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010076', 'Monoblock Valve', '4948095', '2256948', 'SEAL-O-RING', 2, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010077', 'Monoblock Valve', '4948095', '2369832', 'SPRING', 2, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010078', 'Monoblock Valve', '4948095', '3568561', 'VALVE', 2, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010079', 'Monoblock Valve', '4948095', '3632692', 'SPRING', 1, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010080', 'Monoblock Valve', '4948095', '3948568', 'PLUG-RETAINER', 1, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010081', 'Monoblock Valve', '4948095', '4456109', 'VALVE GP-P CHK', 2, 'A9', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010082', 'Monoblock Valve', '4948095', '8T4138', 'BOLT-HEX HEAD', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010083', 'Monoblock Valve', '4948095', '3J1907', 'SEAL-O-RING-STOR', 2, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010084', 'Monoblock Valve', '4948095', '9S4191', 'PLUG-LD STOR', 2, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010085', 'Monoblock Valve', '4948095', '1919247', 'WASHER', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010086', 'Monoblock Valve', '4948095', '1982914', 'NUT-HEXAGON', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010087', 'Monoblock Valve', '4948095', '3128629', 'COIL AS', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010088', 'Monoblock Valve', '4948095', '3161438', 'CARTRIDGE AS', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010089', 'Monoblock Valve', '4948095', '3617213', 'Cartridge As', 4, 'A10', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010090', 'Monoblock Valve', '4948095', '4J7533', 'SEAL-O-RING-STOR', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010091', 'Monoblock Valve', '4948095', '3J7354', 'SEAL-O-RING-STOR', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010092', 'Monoblock Valve', '4948095', '9S4182', 'PLUG-LD STOR', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010093', 'Monoblock Valve', '4948095', '9S4180', 'PLUG-LD STOR', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010094', 'Monoblock Valve', '4948095', '2778863', 'VALVE GP-SOL', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010095', 'Monoblock Valve', '4948095', '5498842', 'PLUG AS', 5, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010096', 'Monoblock Valve', '4948095', '3741478', 'SPOOL-COMP', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010097', 'Monoblock Valve', '4948095', '4982921', 'PLATE-IDENT', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010098', 'Monoblock Valve', '4948095', '4308983', 'STEM', 1, 'A11', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010099', 'Monoblock Valve', '4948095', '6164612', 'FILM', 3, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010100', 'Monoblock Valve', '4948095', '6164614', 'FILM', 1, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010101', 'Monoblock Valve', '4948095', '3J7354', 'SEAL-O-RING-STOR', 1, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010102', 'Monoblock Valve', '4948095', '9S4182', 'PLUG-LD STOR', 1, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010103', 'Monoblock Valve', '4948095', '2660531', 'CAP-CONNECTOR', 7, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742794085713010104', 'Monoblock Valve', '4948095', '2965987', 'PLUG', 3, 'A12', 1, '2025-03-24 13:28:06', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010000', 'Monoblock Valve', '6137643', '2828827', 'PLUG', 5, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010001', 'Monoblock Valve', '6137643', '5P6300', 'SEAL-O-RING', 4, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010002', 'Monoblock Valve', '6137643', '2M9780', 'SEAL-O-RING-STOR', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010003', 'Monoblock Valve', '6137643', '9S4190', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010004', 'Monoblock Valve', '6137643', '3631613', 'BOLT', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010005', 'Monoblock Valve', '6137643', '3676003', 'PLUG AS-HD STOR', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010006', 'Monoblock Valve', '6137643', '4231786', 'RETAINER', 2, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010007', 'Monoblock Valve', '6137643', '4231787', 'SPRING', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010008', 'Monoblock Valve', '6137643', '6061170', 'VALVE', 1, 'A1', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010009', 'Monoblock Valve', '6137643', '8T3844', 'BOLT', 4, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010010', 'Monoblock Valve', '6137643', '9X8256', 'WASHER', 4, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010011', 'Monoblock Valve', '6137643', '1234750', 'VALVE-CHECK', 1, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010012', 'Monoblock Valve', '6137643', '1488378', 'ADAPTER AS', 1, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010013', 'Monoblock Valve', '6137643', '2828827', 'PLUG', 5, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010014', 'Monoblock Valve', '6137643', '4447322', 'TUBE AS', 1, 'A2', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010015', 'Monoblock Valve', '6137643', '3J1907', 'SEAL-O-RING-STOR', 9, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010016', 'Monoblock Valve', '6137643', '9S4191', 'PLUG-LD STOR', 3, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010017', 'Monoblock Valve', '6137643', '3J7354', 'SEAL-O-RING-STOR', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010018', 'Monoblock Valve', '6137643', '9S4182', 'PLUG-LD STOR', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010019', 'Monoblock Valve', '6137643', '9S8004', 'PLUG-LD STOR', 6, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010020', 'Monoblock Valve', '6137643', '7J0204', 'SEAL-O-RING', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010021', 'Monoblock Valve', '6137643', '9S8007', 'PLUG-LD STOR', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010022', 'Monoblock Valve', '6137643', '2344869', 'VALVE GP-MAKE UP', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010023', 'Monoblock Valve', '6137643', '5537512', 'VALVE GP-D RLF-A', 1, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010024', 'Monoblock Valve', '6137643', '3884493', 'VALVE GP-CHECK', 2, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010025', 'Monoblock Valve', '6137643', '2928061', 'PLUG', 5, 'A3', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010026', 'Monoblock Valve', '6137643', '6J2419', 'SEAL-O RING', 1, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010027', 'Monoblock Valve', '6137643', '7M8485', 'SEAL-O-RING-STOR', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010028', 'Monoblock Valve', '6137643', '8T4138', 'BOLT-HEX HEAD', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010029', 'Monoblock Valve', '6137643', '3568547', 'SPOOL', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010030', 'Monoblock Valve', '6137643', '3568548', 'SPOOL', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010031', 'Monoblock Valve', '6137643', '3631610', 'SPRING', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010032', 'Monoblock Valve', '6137643', '3632687', 'HOUSING', 1, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010033', 'Monoblock Valve', '6137643', '6014921', 'VALVE GP-P RLF-A', 1, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010034', 'Monoblock Valve', '6137643', '9W7783', 'PLUG', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010035', 'Monoblock Valve', '6137643', '4519131', 'PLUG-RETAINER', 2, 'A4', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010036', 'Monoblock Valve', '6137643', '6V5393', 'SEAL-O RING', 2, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010037', 'Monoblock Valve', '6137643', '8T4138', 'BOLT-HEX HEAD', 4, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010038', 'Monoblock Valve', '6137643', '7M8485', 'SEAL-O-RING-STOR', 2, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010039', 'Monoblock Valve', '6137643', '9S4181', 'PLUG-LD STOR', 2, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010040', 'Monoblock Valve', '6137643', '3338242', 'VALVE GP-SOL', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010041', 'Monoblock Valve', '6137643', '3705764', 'VALVE GP-D RLF-C', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010042', 'Monoblock Valve', '6137643', '3S9233', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010043', 'Monoblock Valve', '6137643', '4J5309', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010044', 'Monoblock Valve', '6137643', '6J3134', 'SEAL-O RING', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010045', 'Monoblock Valve', '6137643', '4955300', 'VALVE GP-D RLF-C', 1, 'A5', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010046', 'Monoblock Valve', '6137643', '6V0357', 'SEAL-O RING', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010047', 'Monoblock Valve', '6137643', '6V7607', 'WASHER-HARD', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010048', 'Monoblock Valve', '6137643', '2404695', 'RING-BACKUP', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010049', 'Monoblock Valve', '6137643', '2841010', 'Spring', 2, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010050', 'Monoblock Valve', '6137643', '2841011', 'SPRING', 2, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010051', 'Monoblock Valve', '6137643', '2950993', 'RETAINER', 4, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010052', 'Monoblock Valve', '6137643', '3594661', 'BOLT', 2, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010053', 'Monoblock Valve', '6137643', '3632697', 'RETAINER', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010054', 'Monoblock Valve', '6137643', '3632698', 'STEM-VALVE', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010055', 'Monoblock Valve', '6137643', '3964852', 'SEAL-O-RING', 1, 'A6', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010056', 'Monoblock Valve', '6137643', '6K6307', 'SEAL-O-RING', 1, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010057', 'Monoblock Valve', '6137643', '2256948', 'SEAL-O-RING', 2, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010058', 'Monoblock Valve', '6137643', '2369832', 'SPRING', 2, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010059', 'Monoblock Valve', '6137643', '3568561', 'VALVE', 2, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010060', 'Monoblock Valve', '6137643', '3632692', 'SPRING', 1, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010061', 'Monoblock Valve', '6137643', '3948568', 'PLUG-RETAINER', 1, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010062', 'Monoblock Valve', '6137643', '4456109', 'VALVE GP-P CHK', 2, 'A7', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010063', 'Monoblock Valve', '6137643', '8T4138', 'BOLT-HEX HEAD', 3, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010064', 'Monoblock Valve', '6137643', '9S4180', 'PLUG-LD STOR', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010065', 'Monoblock Valve', '6137643', '4J7533', 'SEAL-O-RING-STOR', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010066', 'Monoblock Valve', '6137643', '6132841', 'PLUG', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010067', 'Monoblock Valve', '6137643', '3K0360', 'SEAL-O-RING-STOR', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010068', 'Monoblock Valve', '6137643', '4K2039', 'SEAL O RING', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010069', 'Monoblock Valve', '6137643', '6M5062', 'SEAL-O RING', 2, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010070', 'Monoblock Valve', '6137643', '2778863', 'VALVE GP-SOL', 1, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010071', 'Monoblock Valve', '6137643', '4389359', 'STEM', 1, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010072', 'Monoblock Valve', '6137643', '6137652', 'PLATE-IDENT', 1, 'A8', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010073', 'Monoblock Valve', '6137643', '6164612', 'FILM', 1, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010074', 'Monoblock Valve', '6137643', '6164650', 'FILM', 1, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010075', 'Monoblock Valve', '6137643', '3J7354', 'SEAL-O-RING-STOR', 1, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010076', 'Monoblock Valve', '6137643', '9S4182', 'PLUG-LD STOR', 1, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010077', 'Monoblock Valve', '6137643', '2660531', 'CAP-CONNECTOR', 2, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010078', 'Monoblock Valve', '6137643', '2965987', 'PLUG', 7, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010079', 'Monoblock Valve', '6137643', '5498842', 'PLUG AS', 7, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803044181010080', 'Monoblock Valve', '6137643', '6403576', 'PLUG', 1, 'A9', 1, '2025-03-24 15:57:24', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010000', 'Monoblock Valve', '6078912', '1483483', 'PLUG', 7, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010001', 'Monoblock Valve', '6078912', '2828827', 'PLUG', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010002', 'Monoblock Valve', '6078912', '1T0936', 'PLUG-PIPE', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010003', 'Monoblock Valve', '6078912', '1014845', 'PLUG-NPTF', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010004', 'Monoblock Valve', '6078912', '3676002', 'PLUG AS-HD STOR', 4, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010005', 'Monoblock Valve', '6078912', '7J0204', 'SEAL-O-RING', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010006', 'Monoblock Valve', '6078912', '9S8007', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010007', 'Monoblock Valve', '6078912', '7T6496', 'PLUG', 1, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010008', 'Monoblock Valve', '6078912', '3676003', 'PLUG AS-HD STOR', 2, 'A1', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010009', 'Monoblock Valve', '6078912', '4231786', 'RETAINER', 2, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010010', 'Monoblock Valve', '6078912', '4231787', 'SPRING', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010011', 'Monoblock Valve', '6078912', '3631613', 'BOLT', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010012', 'Monoblock Valve', '6078912', '2M9780', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010013', 'Monoblock Valve', '6078912', '3603681', 'PLUG-HD STOR', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010014', 'Monoblock Valve', '6078912', '9S4190', 'PLUG-LD STOR', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010015', 'Monoblock Valve', '6078912', '4555822', 'VALVE GP-RLF -A', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010016', 'Monoblock Valve', '6078912', '6061170', 'VALVE GP-D RLF-C', 1, 'A2', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010017', 'Monoblock Valve', '6078912', '3979397', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010018', 'Monoblock Valve', '6078912', '6V5759', 'SEAL-O-RING', 4, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010019', 'Monoblock Valve', '6078912', '4572451', 'BOLT-HEX HEAD', 4, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010020', 'Monoblock Valve', '6078912', '9X8256', 'WASHER', 4, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010021', 'Monoblock Valve', '6078912', '2828827', 'PLUG', 11, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010022', 'Monoblock Valve', '6078912', '3884493', 'VALVE GP-CHECK', 2, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010023', 'Monoblock Valve', '6078912', '3J1907', 'SEAL-O-RING-STOR', 4, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010024', 'Monoblock Valve', '6078912', '9S8004', 'PLUG-LD STOR', 4, 'A3', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010025', 'Monoblock Valve', '6078912', '1234750', 'VALVE-CHECK', 1, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010026', 'Monoblock Valve', '6078912', '1488378', 'ADAPTER AS', 1, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010027', 'Monoblock Valve', '6078912', '3685096', 'TUBE AS.', 1, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010028', 'Monoblock Valve', '6078912', '3J1907', 'SEAL-O-RING-STOR', 2, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010029', 'Monoblock Valve', '6078912', '9S4191', 'PLUG-EXT HEX', 2, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010030', 'Monoblock Valve', '6078912', '2928061', 'PLUG', 6, 'A4', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010031', 'Monoblock Valve', '6078912', '3J1907', 'SEAL-O-RING-STOR', 5, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010032', 'Monoblock Valve', '6078912', '9S8004', 'PLUG-LD STOR', 4, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010033', 'Monoblock Valve', '6078912', '3321986', 'VALVE GP-D RLF-C', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010034', 'Monoblock Valve', '6078912', '2344869', 'VALVE GP-MAKE UP', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010035', 'Monoblock Valve', '6078912', '7J0204', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010036', 'Monoblock Valve', '6078912', '9S8007', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010037', 'Monoblock Valve', '6078912', '3J7354', 'SEAL-O-RING-STOR', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010038', 'Monoblock Valve', '6078912', '9S4182', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010039', 'Monoblock Valve', '6078912', '3632687', 'HOUSING', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010040', 'Monoblock Valve', '6078912', '6J2419', 'SEAL-O RING', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010041', 'Monoblock Valve', '6078912', '8T4138', 'BOLT-HEX HEAD', 2, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010042', 'Monoblock Valve', '6078912', '9S4191', 'PLUG-EXT HEX', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010043', 'Monoblock Valve', '6078912', '6152089', 'VALVE GP-P RLF-A', 1, 'A5', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010044', 'Monoblock Valve', '6078912', '3568547', 'SPOOL', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010045', 'Monoblock Valve', '6078912', '3631610', 'SPRING', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010046', 'Monoblock Valve', '6078912', '3568548', 'SPOOL', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010047', 'Monoblock Valve', '6078912', '4519131', 'PLUG-RETAINER', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010048', 'Monoblock Valve', '6078912', '7M8485', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010049', 'Monoblock Valve', '6078912', '9W7783', 'PLUG', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010050', 'Monoblock Valve', '6078912', '3J1907', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010051', 'Monoblock Valve', '6078912', '9S4191', 'PLUG-EXT HEX', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010052', 'Monoblock Valve', '6078912', '6V5393', 'SEAL-O RING', 2, 'A6', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010053', 'Monoblock Valve', '6078912', '3S9233', 'SEAL-O-RING', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010054', 'Monoblock Valve', '6078912', '6J3134', 'SEAL-O RING', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010055', 'Monoblock Valve', '6078912', '4J5309', 'SEAL-O RING', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010056', 'Monoblock Valve', '6078912', '8T4138', 'BOLT-HEX HEAD', 4, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010057', 'Monoblock Valve', '6078912', '3705764', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010058', 'Monoblock Valve', '6078912', '4955303', 'VALVE GP-D RLF-A', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010059', 'Monoblock Valve', '6078912', '3338242', 'VALVE GP-SOL', 1, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010060', 'Monoblock Valve', '6078912', '7M8485', 'SEAL-O-RING-STOR', 2, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010061', 'Monoblock Valve', '6078912', '9S4181', 'PLUG-LD STOR', 2, 'A7', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010062', 'Monoblock Valve', '6078912', '4948090', 'RETAINER', 4, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010063', 'Monoblock Valve', '6078912', '2841010', 'V00MB00028Spring', 2, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010064', 'Monoblock Valve', '6078912', '2841011', 'SPRING', 2, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010065', 'Monoblock Valve', '6078912', '3594661', 'BOLT', 2, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010066', 'Monoblock Valve', '6078912', '3632698', 'STEM-VALVE', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010067', 'Monoblock Valve', '6078912', '3964852', 'SEAL-O-RING', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010068', 'Monoblock Valve', '6078912', '3632697', 'RETAINER', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010069', 'Monoblock Valve', '6078912', '6V0357', 'SEAL-O RING', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010070', 'Monoblock Valve', '6078912', '2404695', 'RING-BACKUP', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010071', 'Monoblock Valve', '6078912', '6V7607', 'WASHER-HARD', 1, 'A8', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010072', 'Monoblock Valve', '6078912', '3632692', 'SPRING', 1, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010073', 'Monoblock Valve', '6078912', '3948568', 'PLUG-RETAINER', 1, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010074', 'Monoblock Valve', '6078912', '6K6307', 'SEAL-O-RING', 1, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010075', 'Monoblock Valve', '6078912', '3568561', 'VALVE', 2, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010076', 'Monoblock Valve', '6078912', '2369832', 'SPRING', 2, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010077', 'Monoblock Valve', '6078912', '4456109', 'VALVE GP-P CHK', 2, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010078', 'Monoblock Valve', '6078912', '4J5309', 'SEAL-O RING', 1, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010079', 'Monoblock Valve', '6078912', '8F3469', 'SEAL-O RING', 1, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010080', 'Monoblock Valve', '6078912', '2256948', 'SEAL-O-RING', 2, 'A9', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010081', 'Monoblock Valve', '6078912', '8T4138', 'BOLT-HEX HEAD', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010082', 'Monoblock Valve', '6078912', '3J1907', 'SEAL-O-RING-STOR', 2, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010083', 'Monoblock Valve', '6078912', '9S4191', 'PLUG-EXT HEX', 2, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010084', 'Monoblock Valve', '6078912', '3617213', 'Cartridge As', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010085', 'Monoblock Valve', '6078912', '3161438', 'CARTRIDGE AS', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010086', 'Monoblock Valve', '6078912', '3128629', 'COIL AS', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010087', 'Monoblock Valve', '6078912', '1919247', 'WASHER-SOFT', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010088', 'Monoblock Valve', '6078912', '1982914', 'NUT-HEXAGON', 4, 'A10', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010089', 'Monoblock Valve', '6078912', '2778863', 'VALVE GP-SOL', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010090', 'Monoblock Valve', '6078912', '9S4180', 'PLUG-LD STOR', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010091', 'Monoblock Valve', '6078912', '4J7533', 'SEAL-O-RING-STOR', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010092', 'Monoblock Valve', '6078912', '3J7354', 'SEAL-O-RING-STOR', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010093', 'Monoblock Valve', '6078912', '9S4182', 'PLUG-LD STOR', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010094', 'Monoblock Valve', '6078912', '6079281', 'PLATE-IDENT', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010095', 'Monoblock Valve', '6078912', '3741478', 'SPOOL-COMP', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010096', 'Monoblock Valve', '6078912', '4308983', 'STEM', 1, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010097', 'Monoblock Valve', '6078912', '5498842', 'PLUG', 5, 'A11', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010098', 'Monoblock Valve', '6078912', '2965987', 'PLUG', 3, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010099', 'Monoblock Valve', '6078912', '6164612', 'FILM', 3, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010100', 'Monoblock Valve', '6078912', '6164614', 'FILM', 1, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010101', 'Monoblock Valve', '6078912', '3J7354', 'SEAL-O-RING-STOR', 1, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010102', 'Monoblock Valve', '6078912', '9S4182', 'PLUG-LD STOR', 1, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803202722010103', 'Monoblock Valve', '6078912', '2660531', 'CAP-CONNECTOR', 7, 'A12', 1, '2025-03-24 16:00:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010000', 'Monoblock Valve', '6078923', '7J0204', 'SEAL-O-RING', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010001', 'Monoblock Valve', '6078923', '9S8007', 'PLUG-LD STOR', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010002', 'Monoblock Valve', '6078923', '1T0936', 'PLUG-PIPE', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010003', 'Monoblock Valve', '6078923', '7T6496', 'PLUG', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010004', 'Monoblock Valve', '6078923', '1014845', 'PLUG-NPTF', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010005', 'Monoblock Valve', '6078923', '1483483', 'PLUG', 7, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010006', 'Monoblock Valve', '6078923', '2660531', 'CAP-CONNECTOR', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010007', 'Monoblock Valve', '6078923', '2828827', 'PLUG', 1, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010008', 'Monoblock Valve', '6078923', '3676002', 'PLUG AS-HD STOR', 4, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010009', 'Monoblock Valve', '6078923', '3676003', 'PLUG AS-HD STOR', 2, 'A1', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010010', 'Monoblock Valve', '6078923', '9J5754', 'SPRING', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010011', 'Monoblock Valve', '6078923', '9S4190', 'PLUG-LD STOR', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010012', 'Monoblock Valve', '6078923', '3631613', 'BOLT', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010013', 'Monoblock Valve', '6078923', '2M9780', 'SEAL-O-RING-STOR', 2, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010014', 'Monoblock Valve', '6078923', '3603681', 'PLUG-HD STOR', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010015', 'Monoblock Valve', '6078923', '4231786', 'RETAINER', 2, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010016', 'Monoblock Valve', '6078923', '4231787', 'SPRING', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010017', 'Monoblock Valve', '6078923', '6014924', 'VALVE GP-D RLF-C', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010018', 'Monoblock Valve', '6078923', '4555822', 'VALVE GP-RLF -A', 1, 'A2', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010019', 'Monoblock Valve', '6078923', '8T4145', 'BOLT', 4, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010020', 'Monoblock Valve', '6078923', '9X6381', 'WASHER', 4, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010021', 'Monoblock Valve', '6078923', '3J1907', 'SEAL-O-RING-STOR', 4, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010022', 'Monoblock Valve', '6078923', '9S8004', 'PLUG-LD STOR', 4, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010023', 'Monoblock Valve', '6078923', '2828827', 'PLUG', 11, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010024', 'Monoblock Valve', '6078923', '3884493', 'VALVE GP-CHECK', 2, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010025', 'Monoblock Valve', '6078923', '6V5759', 'SEAL-O-RING', 4, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010026', 'Monoblock Valve', '6078923', '3979397', 'VALVE GP-SOL', 1, 'A3', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010027', 'Monoblock Valve', '6078923', '1234750', 'VALVE-CHECK', 1, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010028', 'Monoblock Valve', '6078923', '1488378', 'ADAPTER AS', 1, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010029', 'Monoblock Valve', '6078923', '3J1907', 'SEAL-O-RING-STOR', 2, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010030', 'Monoblock Valve', '6078923', '9S4191', 'PLUG-LD STOR', 2, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010031', 'Monoblock Valve', '6078923', '2928061', 'PLUG', 6, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010032', 'Monoblock Valve', '6078923', '3685096', 'TUBE AS.', 1, 'A4', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282031010033', 'Monoblock Valve', '6078923', '6J2419', 'SEAL-O RING', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010000', 'Monoblock Valve', '6078923', '8T4138', 'BOLT-HEX HEAD', 2, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010001', 'Monoblock Valve', '6078923', '9S4191', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010002', 'Monoblock Valve', '6078923', '3J7354', 'SEAL-O-RING-STOR', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010003', 'Monoblock Valve', '6078923', '9S4182', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010004', 'Monoblock Valve', '6078923', '3J1907', 'SEAL-O-RING-STOR', 5, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010005', 'Monoblock Valve', '6078923', '9S8004', 'PLUG-LD STOR', 4, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010006', 'Monoblock Valve', '6078923', '2344869', 'VALVE GP-MAKE UP', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010007', 'Monoblock Valve', '6078923', '3321985', 'VALVE GP-D RLF-A', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010008', 'Monoblock Valve', '6078923', '3632687', 'HOUSING', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010009', 'Monoblock Valve', '6078923', '6152087', 'VALVE GP-P RLF-A', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010010', 'Monoblock Valve', '6078923', '7J0204', 'SEAL-O-RING', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010011', 'Monoblock Valve', '6078923', '9S8007', 'PLUG-LD STOR', 1, 'A5', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010012', 'Monoblock Valve', '6078923', '6V5393', 'SEAL-O RING', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010013', 'Monoblock Valve', '6078923', '7M8485', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010014', 'Monoblock Valve', '6078923', '9W7783', 'PLUG', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010015', 'Monoblock Valve', '6078923', '9S4191', 'PLUG-LD STOR', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010016', 'Monoblock Valve', '6078923', '3J1907', 'SEAL-O-RING-STOR', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010017', 'Monoblock Valve', '6078923', '3568547', 'SPOOL', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010018', 'Monoblock Valve', '6078923', '3568548', 'SPOOL', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010019', 'Monoblock Valve', '6078923', '3631610', 'SPRING', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010020', 'Monoblock Valve', '6078923', '4519131', 'PLUG-RETAINER', 2, 'A6', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010021', 'Monoblock Valve', '6078923', '3S9233', 'SEAL-O-RING', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010022', 'Monoblock Valve', '6078923', '4J5309', '4J5309 RING', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010023', 'Monoblock Valve', '6078923', '6J3134', 'SEAL-O RING', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010024', 'Monoblock Valve', '6078923', '8T4138', 'BOLT-HEX HEAD', 4, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010025', 'Monoblock Valve', '6078923', '7M8485', 'SEAL-O-RING-STOR', 2, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010026', 'Monoblock Valve', '6078923', '9S4181', 'PLUG-LD STOR', 2, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010027', 'Monoblock Valve', '6078923', '3338242', 'VALVE GP-SOL', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010028', 'Monoblock Valve', '6078923', '3705764', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010029', 'Monoblock Valve', '6078923', '4955302', 'VALVE GP-D RLF-C', 1, 'A7', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010030', 'Monoblock Valve', '6078923', '6V0357', 'SEAL-O RING', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010031', 'Monoblock Valve', '6078923', '6V7607', 'WASHER-HARD', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010032', 'Monoblock Valve', '6078923', '2404695', 'RING-BACKUP', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010033', 'Monoblock Valve', '6078923', '2841010', 'Spring', 2, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010034', 'Monoblock Valve', '6078923', '2841011', 'SPRING', 2, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010035', 'Monoblock Valve', '6078923', '2950993', 'RETAINER', 4, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010036', 'Monoblock Valve', '6078923', '3594661', 'BOLT', 2, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010037', 'Monoblock Valve', '6078923', '3632697', 'RETAINER', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010038', 'Monoblock Valve', '6078923', '3632698', 'STEM-VALVE', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010039', 'Monoblock Valve', '6078923', '3964852', 'SEAL-O-RING', 1, 'A8', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010040', 'Monoblock Valve', '6078923', '4J5309', '4J5309 RING', 1, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010041', 'Monoblock Valve', '6078923', '6K6307', 'SEAL-O-RING', 1, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010042', 'Monoblock Valve', '6078923', '8F3469', 'SEAL-O RING', 1, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010043', 'Monoblock Valve', '6078923', '2256948', 'SEAL-O-RING', 2, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010044', 'Monoblock Valve', '6078923', '2369832', 'SPRING', 2, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010045', 'Monoblock Valve', '6078923', '3568561', 'VALVE', 2, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010046', 'Monoblock Valve', '6078923', '3632692', 'SPRING', 1, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010047', 'Monoblock Valve', '6078923', '3948568', 'PLUG-RETAINER', 1, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010048', 'Monoblock Valve', '6078923', '4456109', 'VALVE GP-P CHK', 2, 'A9', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010049', 'Monoblock Valve', '6078923', '8T4138', 'BOLT-HEX HEAD', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010050', 'Monoblock Valve', '6078923', '9S4191', 'PLUG-LD STOR', 2, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010051', 'Monoblock Valve', '6078923', '3J1907', 'SEAL-O-RING-STOR', 2, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010052', 'Monoblock Valve', '6078923', '1919247', 'WASHER', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010053', 'Monoblock Valve', '6078923', '1982914', 'NUT-HEXAGON', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010054', 'Monoblock Valve', '6078923', '3128629', 'COIL AS', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010055', 'Monoblock Valve', '6078923', '3161438', 'CARTRIDGE AS', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010056', 'Monoblock Valve', '6078923', '3617213', 'Cartridge As', 4, 'A10', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010057', 'Monoblock Valve', '6078923', '9S4180', 'PLUG-LD STOR', 2, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010058', 'Monoblock Valve', '6078923', '4J7533', 'SEAL-O-RING-STOR', 2, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010059', 'Monoblock Valve', '6078923', '2778863', 'VALVE GP-SOL', 1, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010060', 'Monoblock Valve', '6078923', '6079283', 'PLATE-IDENT', 1, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010061', 'Monoblock Valve', '6078923', '3741478', 'SPOOL-COMP', 1, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010062', 'Monoblock Valve', '6078923', '4308983', 'STEM', 1, 'A11', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010063', 'Monoblock Valve', '6078923', '6164612', 'FILM', 1, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010064', 'Monoblock Valve', '6078923', '6164650', 'FILM', 1, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010065', 'Monoblock Valve', '6078923', '3J7354', 'SEAL-O-RING-STOR', 1, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010066', 'Monoblock Valve', '6078923', '9S4182', 'PLUG-LD STOR', 1, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010067', 'Monoblock Valve', '6078923', '2965987', 'PLUG', 2, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010068', 'Monoblock Valve', '6078923', '6403576', 'PLUG', 1, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010069', 'Monoblock Valve', '6078923', '2660531', 'PLUG', 7, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742803282033010070', 'Monoblock Valve', '6078923', '5498842', 'PLUG AS', 7, 'A12', 1, '2025-03-24 16:01:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010000', 'Monoblock Valve', '4448048', '3J1907', 'SEAL-O-RING-STOR', 2, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010001', 'Monoblock Valve', '4448048', '9S8004', 'PLUG-LD STOR', 2, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010002', 'Monoblock Valve', '4448048', '3705764', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010003', 'Monoblock Valve', '4448048', '3338242', 'VALVE GP-SOL', 1, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010004', 'Monoblock Valve', '4448048', '4955302', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010005', 'Monoblock Valve', '4448048', '7M8485', 'SEAL-O-RING-STOR', 2, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010006', 'Monoblock Valve', '4448048', '9S4181', 'PLUG-LD STOR', 2, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010007', 'Monoblock Valve', '4448048', '2950993', 'RETAINER', 4, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010008', 'Monoblock Valve', '4448048', '2841010', 'Spring', 2, '二工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010009', 'Monoblock Valve', '4448048', '2841011', 'SPRING', 2, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010010', 'Monoblock Valve', '4448048', '3594661', 'BOLT', 2, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010011', 'Monoblock Valve', '4448048', '3632698', 'STEM-VALVE', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010012', 'Monoblock Valve', '4448048', '3964852', 'SEAL-O-RING', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010013', 'Monoblock Valve', '4448048', '3632697', 'RETAINER', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010014', 'Monoblock Valve', '4448048', '2404695', 'RING-BACKUP', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010015', 'Monoblock Valve', '4448048', '6V0357', 'SEAL-O RING', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010016', 'Monoblock Valve', '4448048', '6V7607', 'WASHER-HARD', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010017', 'Monoblock Valve', '4448048', '3632692', 'SPRING', 1, '二工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010018', 'Monoblock Valve', '4448048', '3948568', 'PLUG-RETAINER', 1, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010019', 'Monoblock Valve', '4448048', '6K6307', 'SEAL-O-RING', 1, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010020', 'Monoblock Valve', '4448048', '3568561', 'VALVE', 2, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010021', 'Monoblock Valve', '4448048', '2369832', 'SPRING', 2, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010022', 'Monoblock Valve', '4448048', '4456109', 'VALVE GP-P CHK', 2, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010023', 'Monoblock Valve', '4448048', '8T4138', 'BOLT-HEX HEAD', 4, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010024', 'Monoblock Valve', '4448048', '3161438', 'CARTRIDGE AS', 4, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010025', 'Monoblock Valve', '4448048', '3617213', 'Cartridge As', 4, '二工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010026', 'Monoblock Valve', '4448048', '4571138', 'PLATE-IDENT', 1, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010027', 'Monoblock Valve', '4448048', '3128629', 'COIL AS', 4, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010028', 'Monoblock Valve', '4448048', '1919247', 'WASHER', 4, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010029', 'Monoblock Valve', '4448048', '1982914', 'NUT-HEXAGON', 4, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010030', 'Monoblock Valve', '4448048', '2778863', 'VALVE GP-SOL', 1, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010031', 'Monoblock Valve', '4448048', '9S4180', 'PLUG-LD STOR', 2, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010032', 'Monoblock Valve', '4448048', '4J7533', 'SEAL-O-RING-STOR', 2, '二工位-4', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010033', 'Monoblock Valve', '4448048', '2828827', 'PLUG', 8, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010034', 'Monoblock Valve', '4448048', '2928061', 'PLUG', 6, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010035', 'Monoblock Valve', '4448048', '3884493', 'VALVE GP-CHECK', 2, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010036', 'Monoblock Valve', '4448048', '3J1907', 'SEAL-O-RING-STOR', 6, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010037', 'Monoblock Valve', '4448048', '9S8004', 'PLUG-LD STOR', 6, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010038', 'Monoblock Valve', '4448048', '1234750', 'VALVE-CHECK', 1, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010039', 'Monoblock Valve', '4448048', '8T4145', 'BOLT', 4, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010040', 'Monoblock Valve', '4448048', '9X6381', 'WASHER', 4, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010041', 'Monoblock Valve', '4448048', '1488378', 'ADAPTER AS', 1, '一工位-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010042', 'Monoblock Valve', '4448048', '3685096', 'TUBE AS.', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010043', 'Monoblock Valve', '4448048', '3J1907', 'SEAL-O-RING-STOR', 3, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010044', 'Monoblock Valve', '4448048', '9S4191', 'PLUG-LD STOR', 3, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010045', 'Monoblock Valve', '4448048', '7J0204', 'SEAL-O-RING', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010046', 'Monoblock Valve', '4448048', '9S8007', 'PLUG-LD STOR', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010047', 'Monoblock Valve', '4448048', '3J7354', 'SEAL-O-RING-STOR', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010048', 'Monoblock Valve', '4448048', '9S4182', 'PLUG-LD STOR', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010049', 'Monoblock Valve', '4448048', '3321985', 'VALVE GP-D RLF-A', 1, '一工位-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010050', 'Monoblock Valve', '4448048', '2344869', 'VALVE GP-MAKE UP', 1, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010051', 'Monoblock Valve', '4448048', '3632687', 'HOUSING', 1, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010052', 'Monoblock Valve', '4448048', '6J2419', 'SEAL-O RING', 1, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010053', 'Monoblock Valve', '4448048', '8T4138', 'BOLT-HEX HEAD', 6, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010054', 'Monoblock Valve', '4448048', '6068312', 'VALVE GP-P RLF-A', 1, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010055', 'Monoblock Valve', '4448048', '3568547', 'SPOOL', 2, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010056', 'Monoblock Valve', '4448048', '3631610', 'SPRING', 2, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010057', 'Monoblock Valve', '4448048', '3568548', 'SPOOL', 2, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010058', 'Monoblock Valve', '4448048', '4519131', 'PLUG-RETAINER', 2, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010059', 'Monoblock Valve', '4448048', '7M8485', 'SEAL-O-RING-STOR', 2, '一工位-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010060', 'Monoblock Valve', '4448048', '5498842', 'PLUG AS', 7, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010061', 'Monoblock Valve', '4448048', '6164612', 'FILM', 1, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010062', 'Monoblock Valve', '4448048', '6164650', 'FILM', 1, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010063', 'Monoblock Valve', '4448048', '2965987', 'PLUG', 2, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010064', 'Monoblock Valve', '4448048', '6403576', 'PLUG', 1, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010065', 'Monoblock Valve', '4448048', '3J7354', 'SEAL-O-RING-STOR', 1, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010066', 'Monoblock Valve', '4448048', '9S4182', 'PLUG-LD STOR', 1, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010067', 'Monoblock Valve', '4448048', '2660531', 'CAP-CONNECTOR', 7, '终装配', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010068', 'Monoblock Valve', '4448048', '1483483', 'PLUG', 7, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010069', 'Monoblock Valve', '4448048', '2828827', 'PLUG', 4, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010070', 'Monoblock Valve', '4448048', '7T6496', 'PLUG', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010071', 'Monoblock Valve', '4448048', '1T0936', 'PLUG-PIPE', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010072', 'Monoblock Valve', '4448048', '1014845', 'PLUG-NPTF', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010073', 'Monoblock Valve', '4448048', '3676002', 'PLUG AS-HD STOR', 4, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010074', 'Monoblock Valve', '4448048', '7J0204', 'SEAL-O-RING', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010075', 'Monoblock Valve', '4448048', '9S8007', 'PLUG-LD STOR', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010076', 'Monoblock Valve', '4448048', '3676003', 'PLUG AS-HD STOR', 2, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010077', 'Monoblock Valve', '4448048', '3741478', 'SPOOL-COMP', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010078', 'Monoblock Valve', '4448048', '4308983', 'STEM', 1, '子装配-1', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010079', 'Monoblock Valve', '4448048', '9J5754', 'SPRING', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010080', 'Monoblock Valve', '4448048', '2M9780', 'SEAL-O-RING-STOR', 2, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010081', 'Monoblock Valve', '4448048', '3603681', 'PLUG-HD STOR', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010082', 'Monoblock Valve', '4448048', '4231786', 'RETAINER', 2, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010083', 'Monoblock Valve', '4448048', '4231787', 'SPRING', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010084', 'Monoblock Valve', '4448048', '3631613', 'BOLT', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010085', 'Monoblock Valve', '4448048', '9S4190', 'PLUG-LD STOR', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010086', 'Monoblock Valve', '4448048', '4555822', 'VALVE GP-RLF -A', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010087', 'Monoblock Valve', '4448048', '6014924', 'VALVE GP-D RLF-A', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010088', 'Monoblock Valve', '4448048', '3979397', 'VALVE GP-SOL', 1, '子装配-2', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010089', 'Monoblock Valve', '4448048', '6V5759', 'SEAL-O-RING', 4, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010090', 'Monoblock Valve', '4448048', '9W7783', 'PLUG', 2, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010091', 'Monoblock Valve', '4448048', '6V5393', 'SEAL-O RING', 2, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010092', 'Monoblock Valve', '4448048', '3S9233', 'SEAL-O-RING', 1, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010093', 'Monoblock Valve', '4448048', '4J5309', '4J5309 RING', 2, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010094', 'Monoblock Valve', '4448048', '6J3134', 'SEAL-O RING', 1, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010095', 'Monoblock Valve', '4448048', '3J1907', 'SEAL-O-RING-STOR', 4, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010096', 'Monoblock Valve', '4448048', '9S4191', 'PLUG-LD STOR', 4, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010097', 'Monoblock Valve', '4448048', '2256948', 'SEAL-O-RING', 2, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871672347010098', 'Monoblock Valve', '4448048', '8F3469', 'SEAL-O RING', 1, '子装配-3', 1, '2025-03-25 11:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010000', 'Monoblock Valve', '4648501', '2828827', 'PLUG', 9, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010001', 'Monoblock Valve', '4648501', '2928061', 'PLUG', 4, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010002', 'Monoblock Valve', '4648501', '4648502', 'PLATE-IDENT', 1, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010003', 'Monoblock Valve', '4648501', '3884493', 'VALVE GP-CHECK', 2, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010004', 'Monoblock Valve', '4648501', '3J1907', 'SEAL-O-RING-STOR', 9, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010005', 'Monoblock Valve', '4648501', '9S8004', 'PLUG-LD STOR', 5, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010006', 'Monoblock Valve', '4648501', '9S4191', 'PLUG-LD STOR', 4, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010007', 'Monoblock Valve', '4648501', '3J7354', 'SEAL-O-RING-STOR', 1, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010008', 'Monoblock Valve', '4648501', '9S4182', 'PLUG-LD STOR', 1, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010009', 'Monoblock Valve', '4648501', '3321985', 'VALVE GP-D RLF-A', 1, '一工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010010', 'Monoblock Valve', '4648501', '2344869', 'VALVE GP-MAKE UP', 1, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010011', 'Monoblock Valve', '4648501', '6068312', 'VALVE GP-P RLF-A', 1, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010012', 'Monoblock Valve', '4648501', '3568547', 'SPOOL', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010013', 'Monoblock Valve', '4648501', '3631610', 'SPRING', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010014', 'Monoblock Valve', '4648501', '3568548', 'SPOOL', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010015', 'Monoblock Valve', '4648501', '4519131', 'PLUG-RETAINER', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010016', 'Monoblock Valve', '4648501', '7M8485', 'SEAL-O-RING-STOR', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010017', 'Monoblock Valve', '4648501', '6V5393', 'SEAL-O RING', 2, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010018', 'Monoblock Valve', '4648501', '3S9233', 'SEAL-O-RING', 1, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010019', 'Monoblock Valve', '4648501', '4J5309', 'SEAL-O-RING', 1, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010020', 'Monoblock Valve', '4648501', '8T4138', 'BOLT-HEX HEAD', 4, '一工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010021', 'Monoblock Valve', '4648501', '3705764', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010022', 'Monoblock Valve', '4648501', '3338242', 'VALVE GP-SOL', 1, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010023', 'Monoblock Valve', '4648501', '4955302', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010024', 'Monoblock Valve', '4648501', '7M8485', 'SEAL-O-RING-STOR', 2, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010025', 'Monoblock Valve', '4648501', '9S4181', 'PLUG-LD STOR', 2, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010026', 'Monoblock Valve', '4648501', '2950993', 'RETAINER', 4, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010027', 'Monoblock Valve', '4648501', '2841010', 'Spring', 2, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010028', 'Monoblock Valve', '4648501', '2841011', 'SPRING', 2, '二工位-1', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010029', 'Monoblock Valve', '4648501', '3594661', 'BOLT', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010030', 'Monoblock Valve', '4648501', '3568561', 'VALVE', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010031', 'Monoblock Valve', '4648501', '2369832', 'SPRING', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010032', 'Monoblock Valve', '4648501', '4456109', 'VALVE GP-P CHK', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010033', 'Monoblock Valve', '4648501', '2256948', 'SEAL-O-RING', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010034', 'Monoblock Valve', '4648501', '8F3469', 'SEAL-O RING', 1, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010035', 'Monoblock Valve', '4648501', '4J5309', 'SEAL-O RING', 1, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010036', 'Monoblock Valve', '4648501', '8T4138', 'BOLT-HEX HEAD', 4, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010037', 'Monoblock Valve', '4648501', '3J1907', 'SEAL-O-RING-STOR', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010038', 'Monoblock Valve', '4648501', '9S4191', 'PLUG-LD STOR', 2, '二工位-2', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010039', 'Monoblock Valve', '4648501', '3161438', 'CARTRIDGE AS', 4, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010040', 'Monoblock Valve', '4648501', '3617213', 'Cartridge As', 4, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010041', 'Monoblock Valve', '4648501', '3128629', 'COIL AS', 4, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010042', 'Monoblock Valve', '4648501', '1919247', 'WASHER', 4, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010043', 'Monoblock Valve', '4648501', '1982914', 'NUT-HEXAGON', 4, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010044', 'Monoblock Valve', '4648501', '9S4180', 'PLUG-LD STOR', 2, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010045', 'Monoblock Valve', '4648501', '4J7533', 'SEAL-O-RING-STOR', 2, '二工位-3', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010046', 'Monoblock Valve', '4648501', '5498842', 'PLUG AS', 6, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010047', 'Monoblock Valve', '4648501', '6164612', 'FILM', 1, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010048', 'Monoblock Valve', '4648501', '6164650', 'FILM', 1, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010049', 'Monoblock Valve', '4648501', '2965987', 'PLUG', 2, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010050', 'Monoblock Valve', '4648501', '6403576', 'PLUG', 1, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010051', 'Monoblock Valve', '4648501', '3J7354', 'SEAL-O-RING-STOR', 1, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010052', 'Monoblock Valve', '4648501', '9S4182', 'PLUG-LD STOR', 1, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871809756010053', 'Monoblock Valve', '4648501', '2660531', 'CAP-CONNECTOR', 5, '终装配', 1, '2025-03-25 11:03:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883785010000', 'Monoblock Valve', '6137645', '6137654', 'PLATE-IDENT', 1, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883785010001', 'Monoblock Valve', '6137645', '2828827', 'PLUG', 6, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010000', 'Monoblock Valve', '6137645', '2928061', 'PLUG', 4, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010001', 'Monoblock Valve', '6137645', '3884493', 'VALVE GP-CHECK', 2, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010002', 'Monoblock Valve', '6137645', '3J1907', 'SEAL-O-RING-STOR', 7, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010003', 'Monoblock Valve', '6137645', '9S8004', 'PLUG-LD STOR', 5, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010004', 'Monoblock Valve', '6137645', '9S4191', 'PLUG-LD STOR', 2, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010005', 'Monoblock Valve', '6137645', '3J7354', 'SEAL-O-RING-STOR', 1, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010006', 'Monoblock Valve', '6137645', '9S4182', 'PLUG-LD STOR', 1, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010007', 'Monoblock Valve', '6137645', '5537512', 'VALVE GP-D RLF-A', 1, '一工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883786010008', 'Monoblock Valve', '6137645', '2344869', 'VALVE GP-MAKE UP', 1, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010000', 'Monoblock Valve', '6137645', '6014921', 'VALVE GP-P RLF-A', 1, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010001', 'Monoblock Valve', '6137645', '3568547', 'SPOOL', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010002', 'Monoblock Valve', '6137645', '3631610', 'SPRING', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010003', 'Monoblock Valve', '6137645', '3568548', 'SPOOL', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010004', 'Monoblock Valve', '6137645', '4519131', 'PLUG-RETAINER', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010005', 'Monoblock Valve', '6137645', '7M8485', 'SEAL-O-RING-STOR', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010006', 'Monoblock Valve', '6137645', '6V5393', 'SEAL-O-RING-STOR', 2, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010007', 'Monoblock Valve', '6137645', '8T4138', 'BOLT-HEX HEAD', 4, '一工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010008', 'Monoblock Valve', '6137645', '3705764', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010009', 'Monoblock Valve', '6137645', '3338242', 'VALVE GP-SOL', 1, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010010', 'Monoblock Valve', '6137645', '4955300', 'VALVE GP-D RLF-C', 1, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010011', 'Monoblock Valve', '6137645', '7M8485', 'SEAL-O-RING-STOR', 2, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010012', 'Monoblock Valve', '6137645', '9S4181', 'PLUG-LD STOR', 2, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010013', 'Monoblock Valve', '6137645', '2950993', 'RETAINER', 4, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010014', 'Monoblock Valve', '6137645', '2841010', 'Spring', 2, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010015', 'Monoblock Valve', '6137645', '2841011', 'SPRING', 2, '二工位-1', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010016', 'Monoblock Valve', '6137645', '3594661', 'BOLT', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010017', 'Monoblock Valve', '6137645', '3568561', 'VALVE', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010018', 'Monoblock Valve', '6137645', '2369832', 'SPRING', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010019', 'Monoblock Valve', '6137645', '4456109', 'VALVE GP-P CHK', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010020', 'Monoblock Valve', '6137645', '2256948', 'SEAL-O-RING', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010021', 'Monoblock Valve', '6137645', '8T4138', 'BOLT-HEX HEAD', 3, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010022', 'Monoblock Valve', '6137645', '9S4180', 'PLUG-LD STOR', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010023', 'Monoblock Valve', '6137645', '4J7533', 'SEAL-O-RING-STOR', 2, '二工位-2', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010024', 'Monoblock Valve', '6137645', '5498842', 'PLUG AS', 4, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010025', 'Monoblock Valve', '6137645', '6284961', 'FILM', 2, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010026', 'Monoblock Valve', '6137645', '6164613', 'FILM', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010027', 'Monoblock Valve', '6137645', '6164650', 'FILM', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010028', 'Monoblock Valve', '6137645', '2965987', 'PLUG', 7, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010029', 'Monoblock Valve', '6137645', '6403576', 'PLUG', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010030', 'Monoblock Valve', '6137645', '3J7354', 'SEAL-O-RING-STOR', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010031', 'Monoblock Valve', '6137645', '9S4182', 'PLUG-LD STOR', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742871883787010032', 'Monoblock Valve', '6137645', '2660531', 'CAP-CONNECTOR', 1, '终装配', 1, '2025-03-25 11:04:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010000', 'B Segment', '4415945', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010001', 'B Segment', '4415945', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010002', 'B Segment', '4415945', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010003', 'B Segment', '4415945', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010004', 'B Segment', '4415945', '4D0514', 'PLUG-PTF ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010005', 'B Segment', '4415945', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010006', 'B Segment', '4415945', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010007', 'B Segment', '4415945', '4J5351', 'SEAL-O-RING ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010008', 'B Segment', '4415945', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010009', 'B Segment', '4415945', '4T1108', 'PLUG ', 1, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010010', 'B Segment', '4415945', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010011', 'B Segment', '4415945', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010012', 'B Segment', '4415945', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010013', 'B Segment', '4415945', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010014', 'B Segment', '4415945', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010015', 'B Segment', '4415945', '2S2596', 'SPRING ', 1, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010016', 'B Segment', '4415945', '1008010', 'VALVE ', 1, 'B', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010017', 'B Segment', '4415945', '1008012', 'BODY ', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010018', 'B Segment', '4415945', '7J9933', 'SEAL-O RING ', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010019', 'B Segment', '4415945', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010020', 'B Segment', '4415945', '4415947', 'PLATE-IDENT ', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010021', 'B Segment', '4415945', '2608590', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010022', 'B Segment', '4415945', '7M8485', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010023', 'B Segment', '4415945', '9S4181', 'PLUG-LD STOR ', 1, 'C', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010024', 'B Segment', '4415945', '4J7533', 'SEAL-O-RING-STOR', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010025', 'B Segment', '4415945', '9S4180', 'PLUG-LD STOR ', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010026', 'B Segment', '4415945', '2077434', 'RETAINER ', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010027', 'B Segment', '4415945', '3487104', 'SPRING ', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010028', 'B Segment', '4415945', '3529955', 'RETAINER ', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010029', 'B Segment', '4415945', '8T4145', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010030', 'B Segment', '4415945', '9X8256', 'WASHER ', 2, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010031', 'B Segment', '4415945', '3529956', 'RETAINER ', 1, 'D', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010032', 'B Segment', '4415945', '3529954', 'SPRING ', 1, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010033', 'B Segment', '4415945', '2077434', 'RETAINER ', 1, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010034', 'B Segment', '4415945', '8T4145', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010035', 'B Segment', '4415945', '9X8256', 'WASHER ', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010036', 'B Segment', '4415945', '1503065', 'ADAPTER AS-ELBOW', 1, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010037', 'B Segment', '4415945', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010038', 'B Segment', '4415945', '7W7381', 'FITTING-OUTLET ', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010039', 'B Segment', '4415945', '6V3965', 'ADAPTER-STR ', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010040', 'B Segment', '4415945', '2147568', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010041', 'B Segment', '4415945', '6V0852', 'CAP-DUST ', 2, 'F', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010042', 'B Segment', '4415945', '2660531', 'CAP-CONNECTOR ', 2, 'F', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010043', 'B Segment', '4415945', '2427955', 'HOUSING AS ', 1, 'G', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010044', 'B Segment', '4415945', '3617213', 'CARTRIDGE AS ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010045', 'B Segment', '4415945', '3161438', 'CARTRIDGE AS ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010046', 'B Segment', '4415945', '3128629', 'COIL AS ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010047', 'B Segment', '4415945', '1919247', 'WASHER ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010048', 'B Segment', '4415945', '1982914', 'NUT-HEXAGON ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010049', 'B Segment', '4415945', '1879630', 'SEAL-O-RING ', 1, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010050', 'B Segment', '4415945', '1H1023', 'SEAL-O RING ', 2, 'H', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010051', 'B Segment', '4415945', '3328826', 'HOUSING AS ', 1, 'I', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010052', 'B Segment', '4415945', '3617213', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010053', 'B Segment', '4415945', '3161438', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010054', 'B Segment', '4415945', '3128629', 'COIL AS ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010055', 'B Segment', '4415945', '1919247', 'WASHER ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010056', 'B Segment', '4415945', '1982914', 'NUT-HEXAGON ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010057', 'B Segment', '4415945', '1879630', 'SEAL-O-RING ', 1, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890215465010058', 'B Segment', '4415945', '1H1023', 'SEAL-O RING ', 2, 'J', 6, '2025-03-25 16:10:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010000', 'B Segment', '3773674', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010001', 'B Segment', '3773674', '1008010', '阀芯', 1, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010002', 'B Segment', '3773674', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010003', 'B Segment', '3773674', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010004', 'B Segment', '3773674', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010005', 'B Segment', '3773674', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010006', 'B Segment', '3773674', '3J7354', '橡胶密封圈', 1, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010007', 'B Segment', '3773674', '4J5351', '橡胶密封圈', 1, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010008', 'B Segment', '3773674', '4K1388', '橡胶密封圈', 2, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010009', 'B Segment', '3773674', '4T5072', '塑料密封圈', 1, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010010', 'B Segment', '3773674', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010011', 'B Segment', '3773674', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010012', 'B Segment', '3773674', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010013', 'B Segment', '3773674', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010014', 'B Segment', '3773674', '1008012', '阀体', 1, 'B', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010015', 'B Segment', '3773674', '2608590', '换向阀', 1, 'C', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010016', 'B Segment', '3773674', '4T1701', '钢铁弹簧', 1, 'C', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010017', 'B Segment', '3773674', '4T4511', '阀用管套', 1, 'C', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010018', 'B Segment', '3773674', '3664972', '塑料密封圈', 1, 'D', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010019', 'B Segment', '3773674', '5M2057', '橡胶密封圈', 1, 'D', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010020', 'B Segment', '3773674', '6V5556', '橡胶密封圈', 1, 'D', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010021', 'B Segment', '3773674', '8T4185', '螺栓8T-4185', 2, 'D', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010022', 'B Segment', '3773674', '1919247', '钢铁制垫圈', 2, 'E', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010023', 'B Segment', '3773674', '1982914', '钢铁制螺母', 2, 'E', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010024', 'B Segment', '3773674', '3161438', '插装阀组件', 2, 'E', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010025', 'B Segment', '3773674', '3617213', '插装阀组件', 2, 'E', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010026', 'B Segment', '3773674', '2077434', '阀用止动块', 2, 'E', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010027', 'B Segment', '3773674', '3128629', '电磁线圈', 2, 'F', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010028', 'B Segment', '3773674', '2427955', '阀座', 2, 'G', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010029', 'B Segment', '3773674', '9S4180', '钢铁制塞堵', 1, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010030', 'B Segment', '3773674', '4J7533', '橡胶密封圈', 1, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010031', 'B Segment', '3773674', '1H1023', '橡胶密封圈', 4, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010032', 'B Segment', '3773674', '1879630', '橡胶密封圈', 2, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010033', 'B Segment', '3773674', '3502762', '钢铁弹簧', 1, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010034', 'B Segment', '3773674', '3J1907', '橡胶密封圈', 2, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010035', 'B Segment', '3773674', '9S8004', '钢铁制塞堵', 2, 'H', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010036', 'B Segment', '3773674', '3529954', '钢铁弹簧', 1, 'I', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010037', 'B Segment', '3773674', '3529956', '阀用止动块', 1, 'I', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890291793010038', 'B Segment', '3773674', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-03-25 16:11:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339671010000', 'B Segment', '4755120', '9J8126', '节流阀', 1, 'A', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010000', 'B Segment', '4755120', '2608590', '梭阀', 1, 'A', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010001', 'B Segment', '4755120', '8T4145', '螺钉', 2, 'A', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010002', 'B Segment', '4755120', '9X8256', '垫片', 2, 'A', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010003', 'B Segment', '4755120', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010004', 'B Segment', '4755120', '4T1701', '弹簧', 1, 'B', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010005', 'B Segment', '4755120', '8T4185', '螺钉', 2, 'B', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010006', 'B Segment', '4755120', '4T1649', '端盖', 1, 'B', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010007', 'B Segment', '4755120', '3529954', '弹簧', 1, 'D', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010008', 'B Segment', '4755120', '2077434', '弹簧座', 1, 'D', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010009', 'B Segment', '4755120', '3529956', '弹簧座', 1, 'D', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010010', 'B Segment', '4755120', '1879630', '密封O型圈', 2, 'D', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010011', 'B Segment', '4755120', '1H1023', '密封O型圈', 4, 'D', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010012', 'B Segment', '4755120', '2077434', '弹簧座', 1, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010013', 'B Segment', '4755120', '3529956', '弹簧座', 1, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010014', 'B Segment', '4755120', '8T4145', '螺钉', 2, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010015', 'B Segment', '4755120', '9X8256', '垫片', 2, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010016', 'B Segment', '4755120', '3529954', '弹簧', 1, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010017', 'B Segment', '4755120', '4755302', '铭牌', 1, 'E', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010018', 'B Segment', '4755120', '3617213', '阀', 1, 'F1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010019', 'B Segment', '4755120', '1919247', '垫片', 1, 'F1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010020', 'B Segment', '4755120', '1982914', '螺母', 1, 'F1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010021', 'B Segment', '4755120', '3128629', '电磁线圈', 1, 'F1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010022', 'B Segment', '4755120', '3161438', '阀杆', 1, 'F1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010023', 'B Segment', '4755120', '3617213', '阀', 1, 'F2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010024', 'B Segment', '4755120', '1919247', '垫片', 1, 'F2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010025', 'B Segment', '4755120', '1982914', '螺母', 1, 'F2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010026', 'B Segment', '4755120', '3128629', '电磁线圈', 1, 'F2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010027', 'B Segment', '4755120', '3161438', '阀杆', 1, 'F2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010028', 'B Segment', '4755120', '1503065', '直角弯头', 2, 'F3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010029', 'B Segment', '4755120', '6V0852', '防尘套', 2, 'F3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010030', 'B Segment', '4755120', '2427955', '铝盖', 1, 'F4', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010031', 'B Segment', '4755120', '2427955', '铝盖', 1, 'F5', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010032', 'B Segment', '4755120', '4T1108', '堵头', 1, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010033', 'B Segment', '4755120', '9S8002', '堵头', 1, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010034', 'B Segment', '4755120', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010035', 'B Segment', '4755120', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010036', 'B Segment', '4755120', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010037', 'B Segment', '4755120', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010038', 'B Segment', '4755120', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010039', 'B Segment', '4755120', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010040', 'B Segment', '4755120', '1008011', '堵头', 1, '预装配2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010041', 'B Segment', '4755120', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010042', 'B Segment', '4755120', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010043', 'B Segment', '4755120', '1008010', '阀', 1, '预装配2', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010044', 'B Segment', '4755120', '4J5351', '密封O型圈', 2, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010045', 'B Segment', '4755120', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010046', 'B Segment', '4755120', '4T5072', '密封环', 2, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010047', 'B Segment', '4755120', '9S4180', '堵头', 1, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010048', 'B Segment', '4755120', '4J7533', '密封O型圈', 1, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010049', 'B Segment', '4755120', '6V5556', '密封O型圈', 1, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010050', 'B Segment', '4755120', '3664972', '密封环', 1, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010051', 'B Segment', '4755120', '4T4511', '导套', 1, '预装配3', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010052', 'B Segment', '4755120', '7W7381', '连接头', 2, '预装配4', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010053', 'B Segment', '4755120', '3J1907', '密封O型圈', 2, '预装配4', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010054', 'B Segment', '4755120', '6V3965', '测压头', 2, '预装配4', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890339672010055', 'B Segment', '4755120', '2147568', '密封O型圈', 2, '预装配4', 6, '2025-03-25 16:12:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010000', 'B Segment', '4669339', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010001', 'B Segment', '4669339', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010002', 'B Segment', '4669339', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010003', 'B Segment', '4669339', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010004', 'B Segment', '4669339', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010005', 'B Segment', '4669339', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010006', 'B Segment', '4669339', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010007', 'B Segment', '4669339', '4J7533', 'SEAL-O-RING-STOR', 2, 'A', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010008', 'B Segment', '4669339', '4644067', 'VALVE GP-CHECK-D', 1, 'B', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010009', 'B Segment', '4669339', '4644067', 'VALVE GP-CHECK-D', 1, 'C', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010010', 'B Segment', '4669339', '9S8001', 'PLUG-LD STOR ', 2, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010011', 'B Segment', '4669339', '2608590', 'VALVE GP-SHTL -B', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010012', 'B Segment', '4669339', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368666010013', 'B Segment', '4669339', '3664972', 'RING-BACKUP ', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010000', 'B Segment', '4669339', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010001', 'B Segment', '4669339', '4T1701', 'SPRING ', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010002', 'B Segment', '4669339', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010003', 'B Segment', '4669339', '4T1649', 'HOUSING ', 1, 'F', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010004', 'B Segment', '4669339', '8T4185', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010005', 'B Segment', '4669339', '4J7533', 'SEAL-O-RING-STOR', 1, 'F', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010006', 'B Segment', '4669339', '9S4180', 'PLUG-LD STOR ', 1, 'F', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010007', 'B Segment', '4669339', '3529956', 'RETAINER ', 1, 'F', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010008', 'B Segment', '4669339', '3529954', 'SPRING ', 2, 'G', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010009', 'B Segment', '4669339', '2077434', 'RETAINER ', 2, 'G', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010010', 'B Segment', '4669339', '8T4145', 'BOLT-HEX HEAD ', 2, 'G', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010011', 'B Segment', '4669339', '9X8256', 'WASHER ', 2, 'G', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010012', 'B Segment', '4669339', '3529956', 'RETAINER ', 1, 'G', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010013', 'B Segment', '4669339', '8T4145', 'BOLT-HEX HEAD ', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010014', 'B Segment', '4669339', '9X8256', 'WASHER ', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010015', 'B Segment', '4669339', '4678042', 'PLATE-IDENT ', 1, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010016', 'B Segment', '4669339', '1503065', 'ADAPTER AS-ELBOW', 1, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010017', 'B Segment', '4669339', '3J1907', 'SEAL-O-RING-STOR', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010018', 'B Segment', '4669339', '7W7381', 'FITTING-OUTLET ', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010019', 'B Segment', '4669339', '6V3965', 'ADAPTER-STR ', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010020', 'B Segment', '4669339', '2147568', 'SEAL-O-RING-STOR', 2, 'H', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010021', 'B Segment', '4669339', '6V0852', 'CAP-DUST ', 2, 'I', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010022', 'B Segment', '4669339', '2427955', 'HOUSING AS ', 1, 'J', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010023', 'B Segment', '4669339', '3617213', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010024', 'B Segment', '4669339', '3161438', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010025', 'B Segment', '4669339', '3128629', 'COIL AS ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010026', 'B Segment', '4669339', '1919247', 'WASHER ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010027', 'B Segment', '4669339', '1982914', 'NUT-HEXAGON ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010028', 'B Segment', '4669339', '1879630', 'SEAL-O-RING ', 1, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010029', 'B Segment', '4669339', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010030', 'B Segment', '4669339', '3328826', 'HOUSING AS ', 1, 'L', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010031', 'B Segment', '4669339', '3617213', 'CARTRIDGE AS ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010032', 'B Segment', '4669339', '3161438', 'CARTRIDGE AS ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010033', 'B Segment', '4669339', '3128629', 'COIL AS ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010034', 'B Segment', '4669339', '1919247', 'WASHER ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010035', 'B Segment', '4669339', '1982914', 'NUT-HEXAGON ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010036', 'B Segment', '4669339', '1879630', 'SEAL-O-RING ', 1, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890368667010037', 'B Segment', '4669339', '1H1023', 'SEAL-O RING ', 2, 'M', 6, '2025-03-25 16:12:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010000', 'B Segment', '2698152', '1008010', '阀芯', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010001', 'B Segment', '2698152', '2S2596', '钢铁弹簧', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010002', 'B Segment', '2698152', '1008011', '钢铁制塞堵', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010003', 'B Segment', '2698152', '7M8485', '橡胶密封圈', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010004', 'B Segment', '2698152', '9J8126', '钢铁制塞堵', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010005', 'B Segment', '2698152', '9S8002', '钢铁制塞堵', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010006', 'B Segment', '2698152', '3J7354', '橡胶密封圈', 1, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010007', 'B Segment', '2698152', '4J7533', '橡胶密封圈', 2, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010008', 'B Segment', '2698152', '9S8001', '钢铁制塞堵', 2, 'A', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010009', 'B Segment', '2698152', '4T1860', '换向阀', 1, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010010', 'B Segment', '2698152', '4T4511', '阀用管套', 1, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010011', 'B Segment', '2698152', '4T1701', '钢铁弹簧', 1, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010012', 'B Segment', '2698152', '5M2057', '橡胶密封圈', 2, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010013', 'B Segment', '2698152', '3664972', '塑料密封圈', 1, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010014', 'B Segment', '2698152', '6V5556', '橡胶密封圈', 1, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010015', 'B Segment', '2698152', '8T4185', '螺栓8T-4185', 2, 'B', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010016', 'B Segment', '2698152', '7J0204', '橡胶密封圈', 1, 'C', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010017', 'B Segment', '2698152', '1537551', '阀用止动块', 1, 'C', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010018', 'B Segment', '2698152', '1536976', '钢铁弹簧', 1, 'C', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010019', 'B Segment', '2698152', '4T4631', '钢铁弹簧', 1, 'C', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010020', 'B Segment', '2698152', '1537067', '阀用止动挡圈', 1, 'C', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010021', 'B Segment', '2698152', '5K0227', '橡胶密封圈', 1, 'D', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010022', 'B Segment', '2698152', '1027365', '钢铁制螺栓', 2, 'D', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890401559010023', 'B Segment', '2698152', '6V5192', '钢铁制螺栓', 2, 'D', 1, '2025-03-25 16:13:22', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412678010000', 'B Segment', '3773675', '2S2596', '钢铁弹簧', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010000', 'B Segment', '3773675', '1008010', '阀芯', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010001', 'B Segment', '3773675', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010002', 'B Segment', '3773675', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010003', 'B Segment', '3773675', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010004', 'B Segment', '3773675', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010005', 'B Segment', '3773675', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010006', 'B Segment', '3773675', '4J5351', '橡胶密封圈', 2, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010007', 'B Segment', '3773675', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010008', 'B Segment', '3773675', '4T5072', '塑料密封圈', 2, 'B', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010009', 'B Segment', '3773675', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010010', 'B Segment', '3773675', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010011', 'B Segment', '3773675', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010012', 'B Segment', '3773675', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010013', 'B Segment', '3773675', '2608590', '换向阀', 1, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010014', 'B Segment', '3773675', '1239624', '钢铁弹簧', 1, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010015', 'B Segment', '3773675', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010016', 'B Segment', '3773675', '9X2027', '钢铁制垫圈', 2, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010017', 'B Segment', '3773675', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010018', 'B Segment', '3773675', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010019', 'B Segment', '3773675', '3995792', '安全阀', 1, 'D', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010020', 'B Segment', '3773675', '3128629', '电磁线圈', 2, 'E', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010021', 'B Segment', '3773675', '3161438', '插装阀组件', 2, 'F', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010022', 'B Segment', '3773675', '3617213', '插装阀组件', 2, 'F', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010023', 'B Segment', '3773675', '2427955', '阀座', 2, 'G', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010024', 'B Segment', '3773675', '2077434', '阀用止动块', 2, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010025', 'B Segment', '3773675', '9S4180', '钢铁制塞堵', 1, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010026', 'B Segment', '3773675', '4J7533', '橡胶密封圈', 1, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010027', 'B Segment', '3773675', '1H1023', '橡胶密封圈', 4, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010028', 'B Segment', '3773675', '1879630', '橡胶密封圈', 2, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010029', 'B Segment', '3773675', '3J1907', '橡胶密封圈', 2, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010030', 'B Segment', '3773675', '9S8004', '钢铁制塞堵', 2, 'H', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010031', 'B Segment', '3773675', '3529954', '钢铁弹簧', 2, 'I', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010032', 'B Segment', '3773675', '3529956', '阀用止动块', 2, 'I', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742890412679010033', 'B Segment', '3773675', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-03-25 16:13:33', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010000', 'B Segment', '3679496', '0963831/HE', '节流阀', 1, 'A', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010001', 'B Segment', '3679496', '9T1573', '安全阀', 1, 'A', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010002', 'B Segment', '3679496', '8T4145', '螺钉', 2, 'A', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010003', 'B Segment', '3679496', '9X8256', '垫片', 2, 'A', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010004', 'B Segment', '3679496', '3711784', '溢流阀', 1, 'B', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010005', 'B Segment', '3679496', '9X2027', '垫片', 2, 'B', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620111010006', 'B Segment', '3679496', '0858091/HE', '螺钉', 2, 'B', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010000', 'B Segment', '3679496', '1879630', '密封O型圈', 2, 'C', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010001', 'B Segment', '3679496', '1H1023', '密封O型圈', 4, 'C', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010002', 'B Segment', '3679496', '1239624', '弹簧', 1, 'C', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010003', 'B Segment', '3679496', '5M2057', '密封O型圈', 1, 'C', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010004', 'B Segment', '3679496', '3529954', '弹簧', 1, 'D', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010005', 'B Segment', '3679496', '2077434', '弹簧座', 1, 'D', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010006', 'B Segment', '3679496', '3529956', '弹簧座', 1, 'D', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010007', 'B Segment', '3679496', '9T1573', '安全阀', 1, 'D', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010008', 'B Segment', '3679496', '2077434', '弹簧座', 1, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010009', 'B Segment', '3679496', '3529956', '弹簧座', 1, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010010', 'B Segment', '3679496', '8T4145', '螺钉', 2, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010011', 'B Segment', '3679496', '9X8256', '垫片', 2, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010012', 'B Segment', '3679496', '3529954', '弹簧', 1, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010013', 'B Segment', '3679496', '3679493', '铭牌', 1, 'E', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010014', 'B Segment', '3679496', '3617213', '阀', 1, 'F', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010015', 'B Segment', '3679496', '1919247', '垫片', 1, 'F', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010016', 'B Segment', '3679496', '1982914', '螺母', 1, 'F', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010017', 'B Segment', '3679496', '3128629', '电磁线圈', 1, 'F', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010018', 'B Segment', '3679496', '3161438', '阀杆', 1, 'F', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620112010019', 'B Segment', '3679496', '3617213', '阀', 1, 'G', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010000', 'B Segment', '3679496', '1919247', '垫片', 1, 'G', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010001', 'B Segment', '3679496', '1982914', '螺母', 1, 'G', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010002', 'B Segment', '3679496', '3128629', '电磁线圈', 1, 'G', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010003', 'B Segment', '3679496', '3161438', '阀杆', 1, 'G', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010004', 'B Segment', '3679496', '2427955', '端盖', 1, 'H', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010005', 'B Segment', '3679496', '2427955', '端盖', 1, 'I', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010006', 'B Segment', '3679496', '9S8002', '堵头', 2, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010007', 'B Segment', '3679496', '3J7354', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010008', 'B Segment', '3679496', '4J7533', '密封O型圈', 3, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010009', 'B Segment', '3679496', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010010', 'B Segment', '3679496', '3J1907', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010011', 'B Segment', '3679496', '9S8004', '堵头', 2, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010012', 'B Segment', '3679496', '9S4180', '堵头', 1, '预装配1', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010013', 'B Segment', '3679496', '1008011', '堵头', 1, '预装配2', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010014', 'B Segment', '3679496', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010015', 'B Segment', '3679496', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742952620113010016', 'B Segment', '3679496', '1008010', '阀', 1, '预装配2', 6, '2025-03-26 09:30:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010000', 'B Segment', '3623308', '9J8126', '节流阀', 1, 'A', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010001', 'B Segment', '3623308', '2608590', '梭阀', 1, 'A', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010002', 'B Segment', '3623308', '8T4145', '螺钉', 2, 'A', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010003', 'B Segment', '3623308', '9X8256', '垫片', 2, 'A', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010004', 'B Segment', '3623308', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010005', 'B Segment', '3623308', '4T1701', '弹簧', 1, 'B', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010006', 'B Segment', '3623308', '8T4185', '螺钉', 2, 'B', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010007', 'B Segment', '3623308', '4T1649', '端盖', 1, 'B', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010008', 'B Segment', '3623308', '3487104', '弹簧', 1, 'D', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111402010009', 'B Segment', '3623308', '2077434', '弹簧座', 1, 'D', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010000', 'B Segment', '3623308', '3529955', '弹簧座', 1, 'D', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010001', 'B Segment', '3623308', '1879630', '密封O型圈', 2, 'D', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010002', 'B Segment', '3623308', '1H1023', '密封O型圈', 4, 'D', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010003', 'B Segment', '3623308', '2077434', '弹簧座', 1, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010004', 'B Segment', '3623308', '3529956', '弹簧座', 1, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010005', 'B Segment', '3623308', '8T4145', '螺钉', 2, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010006', 'B Segment', '3623308', '9X8256', '垫片', 2, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010007', 'B Segment', '3623308', '3529954', '弹簧', 1, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010008', 'B Segment', '3623308', '3623325', '铭牌', 1, 'E', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010009', 'B Segment', '3623308', '3617213', '阀', 1, 'F1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010010', 'B Segment', '3623308', '1919247', '垫片', 1, 'F1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010011', 'B Segment', '3623308', '1982914', '螺母', 1, 'F1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010012', 'B Segment', '3623308', '3128629', '电磁线圈', 1, 'F1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010013', 'B Segment', '3623308', '3161438', '阀杆', 1, 'F1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010014', 'B Segment', '3623308', '3617213', '阀', 1, 'F2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010015', 'B Segment', '3623308', '1919247', '垫片', 1, 'F2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010016', 'B Segment', '3623308', '1982914', '螺母', 1, 'F2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111403010017', 'B Segment', '3623308', '3128629', '电磁线圈', 1, 'F2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010000', 'B Segment', '3623308', '3161438', '阀杆', 1, 'F2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010001', 'B Segment', '3623308', '6V0852', '防尘套', 2, 'F3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010002', 'B Segment', '3623308', '2427954', '铝盖', 1, 'F4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010003', 'B Segment', '3623308', '2427955', '铝盖', 1, 'F5', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010004', 'B Segment', '3623308', '9S8002', '堵头', 1, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010005', 'B Segment', '3623308', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010006', 'B Segment', '3623308', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010007', 'B Segment', '3623308', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010008', 'B Segment', '3623308', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010009', 'B Segment', '3623308', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010010', 'B Segment', '3623308', '1008012', '阀体', 1, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010011', 'B Segment', '3623308', '1008010', '阀', 2, '预装配1', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010012', 'B Segment', '3623308', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010013', 'B Segment', '3623308', '2S2596', '弹簧', 2, '预装配2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010014', 'B Segment', '3623308', '1008011', '堵头', 1, '预装配2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010015', 'B Segment', '3623308', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010016', 'B Segment', '3623308', '4J5351', '密封O型圈', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111404010017', 'B Segment', '3623308', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010000', 'B Segment', '3623308', '4T5072', '密封环', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010001', 'B Segment', '3623308', '9S4180', '堵头', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010002', 'B Segment', '3623308', '4J7533', '密封O型圈', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010003', 'B Segment', '3623308', '6V5556', '密封O型圈', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010004', 'B Segment', '3623308', '3664972', '密封环', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010005', 'B Segment', '3623308', '4T4511', '导套', 1, '预装配3', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010006', 'B Segment', '3623308', '7W7381', '连接头', 1, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010007', 'B Segment', '3623308', '3J1907', '密封O型圈', 3, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010008', 'B Segment', '3623308', '6V3965', '测压头', 2, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010009', 'B Segment', '3623308', '2147568', '密封O型圈', 2, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010010', 'B Segment', '3623308', '8C8431', '连接头', 1, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010011', 'B Segment', '3623308', '7E9898', '测压头', 1, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953111405010012', 'B Segment', '3623308', '6V8397', '密封O型圈', 1, '预装配4', 6, '2025-03-26 09:38:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874701010000', 'B Segment', '2350402', '6L9716', '节流阀', 1, 'A', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010000', 'B Segment', '2350402', '2350388', '铭牌', 1, 'A', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010001', 'B Segment', '2350402', '4T1860', '阀', 1, 'A', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010002', 'B Segment', '2350402', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010003', 'B Segment', '2350402', '9T6688', '弹簧', 1, 'B', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010004', 'B Segment', '2350402', '8T4185', '螺钉', 2, 'B', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010005', 'B Segment', '2350402', '4T1649', '端盖', 1, 'B', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010006', 'B Segment', '2350402', '4T1850', '端盖', 1, 'C', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010007', 'B Segment', '2350402', '0993649', '螺钉', 2, 'C', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010008', 'B Segment', '2350402', '8T4224', '垫片', 2, 'C', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010009', 'B Segment', '2350402', '2D0598', '密封O型圈', 1, 'C', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010010', 'B Segment', '2350402', '9T6316', '弹簧', 1, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010011', 'B Segment', '2350402', '1071179', '挡板', 1, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010012', 'B Segment', '2350402', '4T0993', '弹簧座', 2, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010013', 'B Segment', '2350402', '4T1021', '弹簧座', 2, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010014', 'B Segment', '2350402', '7D9749', '密封O型圈', 1, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010015', 'B Segment', '2350402', '8T4177', '螺钉', 2, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010016', 'B Segment', '2350402', '8T4224', '垫片', 2, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010017', 'B Segment', '2350402', '2085498', '密封O型圈', 1, 'D', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010018', 'B Segment', '2350402', '1071177', '端盖', 1, 'F', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010019', 'B Segment', '2350402', '1071183', '阀芯', 1, 'G', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010020', 'B Segment', '2350402', '1008012', '阀体', 1, '预装配2', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010021', 'B Segment', '2350402', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010022', 'B Segment', '2350402', '1008010', '阀', 2, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010023', 'B Segment', '2350402', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010024', 'B Segment', '2350402', '9S8002', '堵头', 1, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010025', 'B Segment', '2350402', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010026', 'B Segment', '2350402', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010027', 'B Segment', '2350402', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010028', 'B Segment', '2350402', '1008012', '阀体', 1, '预装配1', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010029', 'B Segment', '2350402', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010030', 'B Segment', '2350402', '1N5999', '堵头', 1, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010031', 'B Segment', '2350402', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010032', 'B Segment', '2350402', '1008011', '堵头', 1, '预装配2', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010033', 'B Segment', '2350402', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010034', 'B Segment', '2350402', '2S2596', '弹簧', 3, '预装配2', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010035', 'B Segment', '2350402', '1008010', '阀', 1, '预装配2', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010036', 'B Segment', '2350402', '6V5556', '密封O型圈', 1, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010037', 'B Segment', '2350402', '3664972', '密封环', 1, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742953874702010038', 'B Segment', '2350402', '4T4511', '导套', 1, '预装配3', 6, '2025-03-26 09:51:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010000', 'B Segment', '2350405', '9J8126', '节流阀', 1, 'A', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010001', 'B Segment', '2350405', '4T1860', '阀', 1, 'A', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010002', 'B Segment', '2350405', '2350391', '铭牌', 1, 'A', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010003', 'B Segment', '2350405', '1027365', '螺钉', 2, 'A', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010004', 'B Segment', '2350405', '1216649', '溢流阀', 1, 'B', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010005', 'B Segment', '2350405', '9X2027', '垫片', 2, 'B', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010006', 'B Segment', '2350405', '0858091', '螺钉', 2, 'B', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010007', 'B Segment', '2350405', '1239624', '弹簧', 1, 'C', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010008', 'B Segment', '2350405', '1730514', '端盖', 1, 'C', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595909010009', 'B Segment', '2350405', '6V5192', '螺钉', 2, 'C', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010000', 'B Segment', '2350405', '5M2057', '密封O型圈', 2, 'C', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010001', 'B Segment', '2350405', '4T4631', '弹簧', 1, 'D', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010002', 'B Segment', '2350405', '1536976', '弹簧', 1, 'D', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010003', 'B Segment', '2350405', '1537067', '弹簧座', 1, 'D', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010004', 'B Segment', '2350405', '1537551', '弹簧座', 1, 'D', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010005', 'B Segment', '2350405', '5K0227', '密封O型圈', 1, 'E', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010006', 'B Segment', '2350405', '1730511', '端盖', 1, 'F', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010007', 'B Segment', '2350405', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010008', 'B Segment', '2350405', '4T1108', '堵头', 1, '预装配1', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010009', 'B Segment', '2350405', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010010', 'B Segment', '2350405', '4J7533', '密封O型圈', 1, '预装配1', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010011', 'B Segment', '2350405', '9S8001', '堵头', 1, '预装配1', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010012', 'B Segment', '2350405', '1008011', '堵头', 1, '预装配2', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010013', 'B Segment', '2350405', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010014', 'B Segment', '2350405', '1008010', '阀', 1, '预装配2', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010015', 'B Segment', '2350405', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010016', 'B Segment', '2350405', '4J5351', '密封O型圈', 2, '预装配3', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010017', 'B Segment', '2350405', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010018', 'B Segment', '2350405', '4T5072', '密封环', 2, '预装配3', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010019', 'B Segment', '2350405', '1612684', '螺钉', 1, '预装配3', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010020', 'B Segment', '2350405', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742954595910010021', 'B Segment', '2350405', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-26 10:03:16', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010000', 'selector', '1199478', '3J1907', 'O型圈', 2, 'A', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010001', 'selector', '1199478', '9S4191', '螺堵', 2, 'A', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010002', 'selector', '1199478', '2521631', '塑料螺堵', 1, 'A', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010003', 'selector', '1199478', '0874786', '堵头', 1, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010004', 'selector', '1199478', '2M9780', 'O型圈', 2, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010005', 'selector', '1199478', '6V4647', '螺母', 1, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010006', 'selector', '1199478', '6E2140', '定位器', 1, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010007', 'selector', '1199478', '9T8621', '弹簧', 1, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043272002010008', 'selector', '1199478', '1411500', '铭牌', 1, 'B', 10, '2025-03-27 10:41:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333506010000', 'MB', '1334239', '6E5457', '螺堵', 3, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333506010001', 'MB', '1334239', '3D2824', 'O型圈', 3, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333506010002', 'MB', '1334239', '3603694', '螺堵', 1, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010000', 'MB', '1334239', '2M9780', 'O型圈', 1, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010001', 'MB', '1334239', '6E5643', '阀', 3, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010002', 'MB', '1334239', '4T3148', '弹簧', 3, 'A', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010003', 'MB', '1334239', '9T7634', '阀', 1, 'B', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010004', 'MB', '1334239', '1860908', '阀', 3, 'B', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010005', 'MB', '1334239', '1857712', '阀', 1, 'B', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010006', 'MB', '1334239', '9N6629', '夹子', 1, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010007', 'MB', '1334239', '8T4200', '螺栓', 1, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010008', 'MB', '1334239', '1334268', '铭牌', 1, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010009', 'MB', '1334239', '8F0212', 'O型圈', 6, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010010', 'MB', '1334239', '6E5436', '固定器', 6, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010011', 'MB', '1334239', '6E5437', '弹簧', 2, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010012', 'MB', '1334239', '6E5438', '弹簧', 2, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010013', 'MB', '1334239', '1086428', '阀', 1, 'C', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010014', 'MB', '1334239', '6E5439', '弹簧', 4, 'D', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010015', 'MB', '1334239', '6E5440', '弹簧', 4, 'D', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010016', 'MB', '1334239', '8T6870', '螺栓', 12, 'D', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010017', 'MB', '1334239', '8T4224', '垫圈', 12, 'D', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010018', 'MB', '1334239', '6E5434', '机架', 6, 'E', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010019', 'MB', '1334239', '3603697', '螺堵', 7, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010020', 'MB', '1334239', '7M8485', 'O型圈', 7, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010021', 'MB', '1334239', '3603698', '螺堵', 1, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010022', 'MB', '1334239', '2S4078', 'O型圈', 1, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010023', 'MB', '1334239', '3603692', '螺堵', 6, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043333507010024', 'MB', '1334239', '3J1907', 'O型圈', 6, 'F', 3, '2025-03-27 10:42:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428555010000', 'Steering', '1423996', '9S4183', '堵头', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428555010001', 'Steering', '1423996', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428555010002', 'Steering', '1423996', '9S4185', '堵头', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010000', 'Steering', '1423996', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010001', 'Steering', '1423996', '9S8006', '堵头', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010002', 'Steering', '1423996', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010003', 'Steering', '1423996', '7J1089', '堵头', 2, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010004', 'Steering', '1423996', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010005', 'Steering', '1423996', '5H3193', '穿销', 4, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010006', 'Steering', '1423996', '9S8002', '堵头', 10, 'A', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010007', 'Steering', '1423996', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010008', 'Steering', '1423996', '6E5289', '堵头', 2, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010009', 'Steering', '1423996', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010010', 'Steering', '1423996', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010011', 'Steering', '1423996', '9S4185', '堵头', 1, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010012', 'Steering', '1423996', '9S8002', '堵头', 1, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010013', 'Steering', '1423996', '9J9821', '底座阀', 4, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010014', 'Steering', '1423996', '4B9782', '钢珠', 5, 'B', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010015', 'Steering', '1423996', '2S2596', '弹簧', 4, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010016', 'Steering', '1423996', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010017', 'Steering', '1423996', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010018', 'Steering', '1423996', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010019', 'Steering', '1423996', '8T4196', '螺栓', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010020', 'Steering', '1423996', '8T6466', '螺栓', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010021', 'Steering', '1423996', '6E5291', '弹簧', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010022', 'Steering', '1423996', '6T6052', '截流套', 1, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010023', 'Steering', '1423996', '6V9830', '盖帽', 2, 'C', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010024', 'Steering', '1423996', '6J6506', '垫片', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010025', 'Steering', '1423996', '1268473', '弹簧', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010026', 'Steering', '1423996', '7J4321', '固定器', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010027', 'Steering', '1423996', '9M1974', '垫圈', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010028', 'Steering', '1423996', '6V5195', '螺栓', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010029', 'Steering', '1423996', '8T5005', '螺栓', 4, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010030', 'Steering', '1423996', '1357272', '铭牌', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010031', 'Steering', '1423996', '9T8672', '固定器', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010032', 'Steering', '1423996', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010033', 'Steering', '1423996', '1298222', '溢流阀', 1, 'E', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010034', 'Steering', '1423996', '1325258', '溢流阀', 1, 'E', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010035', 'Steering', '1423996', '9T7220', '盖板', 1, 'E', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010036', 'Steering', '1423996', '8C3206', '法兰', 8, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010037', 'Steering', '1423996', '5H4019', '盖板', 4, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010038', 'Steering', '1423996', '4J0520', '密封圈', 4, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010039', 'Steering', '1423996', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010040', 'Steering', '1423996', '8T4121', '垫圈', 16, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043428556010041', 'Steering', '1423996', '8T4196', '螺栓', 16, 'F终装', 2, '2025-03-27 10:43:49', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010000', 'WL-ZL50', '2011150', '3G2683', '螺堵', 3, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010001', 'WL-ZL50', '2011150', '2S4078', 'O型圈', 3, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010002', 'WL-ZL50', '2011150', '1U1577', '螺堵', 1, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010003', 'WL-ZL50', '2011150', '6K6307', 'O型圈', 1, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010004', 'WL-ZL50', '2011150', '9S8005', '堵头', 1, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010005', 'WL-ZL50', '2011150', '3K0360', 'O型圈', 1, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010006', 'WL-ZL50', '2011150', '1U0322', '轴承', 3, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010007', 'WL-ZL50', '2011150', '7S8491', '弹簧', 3, 'A', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010008', 'WL-ZL50', '2011150', '7J7423', '阀', 3, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010009', 'WL-ZL50', '2011150', '1J8960', '弹簧', 1, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010010', 'WL-ZL50', '2011150', '1U1578', '阀', 1, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487759010011', 'WL-ZL50', '2011150', '3G4117', '盖子', 1, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010000', 'WL-ZL50', '2011150', '4J0522', 'O型圈', 1, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010001', 'WL-ZL50', '2011150', '5P2228', '螺栓', 2, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010002', 'WL-ZL50', '2011150', '4T6103', '阀', 2, 'B', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010003', 'WL-ZL50', '2011150', '2011146', '阀', 1, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010004', 'WL-ZL50', '2011150', '4T9312', '盖子', 2, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010005', 'WL-ZL50', '2011150', '1H9696', 'O型圈', 2, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010006', 'WL-ZL50', '2011150', '5S7383', '螺栓', 4, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010007', 'WL-ZL50', '2011150', '5P1075', '垫圈', 4, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010008', 'WL-ZL50', '2011150', '3G8991', '弹簧', 2, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010009', 'WL-ZL50', '2011150', '3385495', '弹簧', 2, 'C', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010010', 'WL-ZL50', '2011150', '4761915', '固定器', 4, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010011', 'WL-ZL50', '2011150', '8T9378', '螺栓', 4, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010012', 'WL-ZL50', '2011150', '5P1075', '垫片', 4, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010013', 'WL-ZL50', '2011150', '7K0734', '螺栓', 2, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010014', 'WL-ZL50', '2011150', '4D6433', '垫圈', 2, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010015', 'WL-ZL50', '2011150', '0041963', 'O型圈', 2, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010016', 'WL-ZL50', '2011150', '2011148', '铭牌', 1, 'D', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010017', 'WL-ZL50', '2011150', '4T9311', '盖子', 2, 'E', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010018', 'WL-ZL50', '2011150', '4D2886', '吊环', 2, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010019', 'WL-ZL50', '2011150', '3J1907', 'O型圈', 5, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010020', 'WL-ZL50', '2011150', '9S4191', '堵头', 5, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010021', 'WL-ZL50', '2011150', '3J5553', '纸垫片', 2, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010022', 'WL-ZL50', '2011150', '3J5554', '纸垫片', 4, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010023', 'WL-ZL50', '2011150', '8J4398', '盖板', 4, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010024', 'WL-ZL50', '2011150', '8J5893', '盖板', 2, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010025', 'WL-ZL50', '2011150', '8T9383', '螺栓', 4, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043487760010026', 'WL-ZL50', '2011150', '7X0272', '螺栓', 8, 'F', 4, '2025-03-27 10:44:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748157010000', 'QCT', '2120394', '5M2504', 'SLUG', 2, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010000', 'QCT', '2120394', '5H8985', 'PIN-SPRING', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010001', 'QCT', '2120394', '8E8439', 'DOWEL', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010002', 'QCT', '2120394', '1S1636', 'RETAINER', 2, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010003', 'QCT', '2120394', '1S1638', 'RING-RETAINING', 2, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010004', 'QCT', '2120394', '4B9880', 'BALL', 2, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010005', 'QCT', '2120394', '4M2381', 'SPRING', 2, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010006', 'QCT', '2120394', '6Y8049', 'SPOOL', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010007', 'QCT', '2120394', '8P7386', 'SPOOL', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010008', 'QCT', '2120394', '9P0683', 'SPRING', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010009', 'QCT', '2120394', '2132227', 'PLATE-IDENT', 1, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010010', 'QCT', '2120394', '9S8001', 'PLUG-INTL HEX', 7, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010011', 'QCT', '2120394', '2385078', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010012', 'QCT', '2120394', '0S1618', 'BOLT', 2, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748158010013', 'QCT', '2120394', '5J1036', 'SHIM', 2, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010000', 'QCT', '2120394', '5J2721', 'SHIM', 2, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010001', 'QCT', '2120394', '6J3993', 'SHIM', 2, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010002', 'QCT', '2120394', '6V3683', 'SEAL-O-RING', 1, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010003', 'QCT', '2120394', '9G9150', 'CLIP', 1, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010004', 'QCT', '2120394', '9M1974', 'WASHER-HARD', 1, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010005', 'QCT', '2120394', '9W7410', 'SPRING', 1, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010006', 'QCT', '2120394', '9S8004', 'PLUG-INTL HEX', 3, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010007', 'QCT', '2120394', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010008', 'QCT', '2120394', '9S8008', 'PLUG-LD STOR', 3, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010009', 'QCT', '2120394', '2385082', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010010', 'QCT', '2120394', '2S0675', 'SPACER', 2, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010011', 'QCT', '2120394', '6Y4541', 'PISTON-SELECTOR', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010012', 'QCT', '2120394', '6Y4542', 'PISTON-LOAD', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010013', 'QCT', '2120394', '6Y7267', 'SPRING', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010014', 'QCT', '2120394', '8E6144', 'SPRING', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010015', 'QCT', '2120394', '8J4452', 'SHIM', 2, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010016', 'QCT', '2120394', '8L2777', 'SEAL-O-RING', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748159010017', 'QCT', '2120394', '9D7884', 'SPRING', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010000', 'QCT', '2120394', '9J1330', 'SHIM', 2, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010001', 'QCT', '2120394', '6V0484', 'ADPTR-ELB 90 DEG', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010002', 'QCT', '2120394', '3706346', 'ORIFICE AS', 1, 'C', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010003', 'QCT', '2120394', '2B2695', 'BOLT', 2, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010004', 'QCT', '2120394', '5L9018', 'BOLT-SOCKET HEAD', 2, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010005', 'QCT', '2120394', '6Y4538', 'COVER', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010006', 'QCT', '2120394', '8E4592', 'STOP', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010007', 'QCT', '2120394', '9W6964', 'VALVE AS-EXHAUST', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010008', 'QCT', '2120394', '0617540', 'SEAL-O-RING', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010009', 'QCT', '2120394', '6V3965', 'ADAPTER-STR', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010010', 'QCT', '2120394', '2147568', 'SEAL-O-RING-STOR', 2, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010011', 'QCT', '2120394', '3023809', 'VALVE GP-SOL', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010012', 'QCT', '2120394', '9S8003', 'PLUG-LD STOR', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010013', 'QCT', '2120394', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010014', 'QCT', '2120394', '0S1618', 'BOLT', 4, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010015', 'QCT', '2120394', '5F4899', 'BOLT', 3, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748160010016', 'QCT', '2120394', '5M2894', 'WASHER-HARD', 3, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010000', 'QCT', '2120394', '6V0852', 'CAP-DUST', 1, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010001', 'QCT', '2120394', '6V6353', 'SEAL-O-RING', 1, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010002', 'QCT', '2120394', '7N9738', 'HOUSING-RCPT', 1, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010003', 'QCT', '2120394', '8E8867', 'COVER', 1, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010004', 'QCT', '2120394', '8E8868', 'GASKET', 1, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010005', 'QCT', '2120394', '9G3695', 'PLUG-SEAL', 2, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010006', 'QCT', '2120394', '9M1974', 'WASHER-HARD', 4, 'E', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043748161010007', 'QCT', '2120394', '6Y4539', 'COVER', 1, 'F', 1, '2025-03-27 10:49:08', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010000', 'B Segment', '3266549', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010001', 'B Segment', '3266549', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010002', 'B Segment', '3266549', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010003', 'B Segment', '3266549', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010004', 'B Segment', '3266549', '4D0514', 'PLUG-PTF ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010005', 'B Segment', '3266549', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010006', 'B Segment', '3266549', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010007', 'B Segment', '3266549', '4J5351', 'SEAL-O-RING ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010008', 'B Segment', '3266549', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010009', 'B Segment', '3266549', '4T1108', 'PLUG ', 1, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010010', 'B Segment', '3266549', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010011', 'B Segment', '3266549', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010012', 'B Segment', '3266549', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010013', 'B Segment', '3266549', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010014', 'B Segment', '3266549', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010015', 'B Segment', '3266549', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010016', 'B Segment', '3266549', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010017', 'B Segment', '3266549', '4T1108', 'PLUG ', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010018', 'B Segment', '3266549', '4T5072', 'RING-BACKUP ', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010019', 'B Segment', '3266549', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010020', 'B Segment', '3266549', '2608590', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010021', 'B Segment', '3266549', '7M8485', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010022', 'B Segment', '3266549', '9S4181', 'PLUG-LD STOR ', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010023', 'B Segment', '3266549', '4J7533', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010024', 'B Segment', '3266549', '9S4180', 'PLUG-LD STOR ', 1, 'C', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010025', 'B Segment', '3266549', '2077434', 'RETAINER ', 1, 'D', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010026', 'B Segment', '3266549', '8T4145', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010027', 'B Segment', '3266549', '9X8256', 'WASHER ', 2, 'D', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010028', 'B Segment', '3266549', '3529956', 'RETAINER ', 2, 'D', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010029', 'B Segment', '3266549', '3529954', 'SPRING ', 2, 'D', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010030', 'B Segment', '3266549', '2077434', 'RETAINER ', 1, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010031', 'B Segment', '3266549', '8T4145', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010032', 'B Segment', '3266549', '9X8256', 'WASHER ', 2, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010033', 'B Segment', '3266549', '3266548', 'PLATE-IDENT ', 1, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010034', 'B Segment', '3266549', '1503065', 'ADAPTER AS-ELBOW', 1, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010035', 'B Segment', '3266549', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010036', 'B Segment', '3266549', '7W7381', 'FITTING-OUTLET ', 2, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010037', 'B Segment', '3266549', '6V3965', 'ADAPTER-STR ', 2, 'E', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010038', 'B Segment', '3266549', '2147568', 'SEAL-O-RING-STOR', 2, 'F', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010039', 'B Segment', '3266549', '6V0852', 'CAP-DUST ', 2, 'F', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010040', 'B Segment', '3266549', '2427955', 'HOUSING AS ', 1, 'G', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010041', 'B Segment', '3266549', '3617213', 'CARTRIDGE AS ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010042', 'B Segment', '3266549', '3161438', 'CARTRIDGE AS ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010043', 'B Segment', '3266549', '3128629', 'COIL AS ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010044', 'B Segment', '3266549', '1919247', 'WASHER ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010045', 'B Segment', '3266549', '1982914', 'NUT-HEXAGON ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010046', 'B Segment', '3266549', '1879630', 'SEAL-O-RING ', 1, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010047', 'B Segment', '3266549', '1H1023', 'SEAL-O RING ', 2, 'H', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010048', 'B Segment', '3266549', '3328826', 'HOUSING AS ', 1, 'I', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010049', 'B Segment', '3266549', '3617213', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010050', 'B Segment', '3266549', '3161438', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010051', 'B Segment', '3266549', '3128629', 'COIL AS ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010052', 'B Segment', '3266549', '1919247', 'WASHER ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010053', 'B Segment', '3266549', '1982914', 'NUT-HEXAGON ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010054', 'B Segment', '3266549', '1879630', 'SEAL-O-RING ', 1, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743043973273010055', 'B Segment', '3266549', '1H1023', 'SEAL-O RING ', 2, 'J', 6, '2025-03-27 10:52:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217410010000', 'WL-ZL50', '3340892', '1415497', 'SPRING', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010000', 'WL-ZL50', '3340892', '1415498', 'SPRING', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010001', 'WL-ZL50', '3340892', '1422864', 'RETAINER', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010002', 'WL-ZL50', '3340892', '5S6980', 'RING-RETAININ', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010003', 'WL-ZL50', '3340892', '1883365', 'SPRING', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010004', 'WL-ZL50', '3340892', '1744321', 'SPOOL-CONTROL', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010005', 'WL-ZL50', '3340892', '1734012', 'SPRING', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010006', 'WL-ZL50', '3340892', '3161438', 'CARTRIDGE AS', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010007', 'WL-ZL50', '3340892', '3265212', 'COIL AS', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010008', 'WL-ZL50', '3340892', '1919247', 'WASHER-SOFT', 6, 'A', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010009', 'WL-ZL50', '3340892', '1982914', 'NUT-HEXAGON', 6, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010010', 'WL-ZL50', '3340892', '3603679', 'PLUG-HD STOR', 18, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010011', 'WL-ZL50', '3340892', '3J1907', 'SEAL-O-RING-STOR', 18, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010012', 'WL-ZL50', '3340892', '3676001', 'PLUG AS-HD STOR', 6, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010013', 'WL-ZL50', '3340892', '6K0806', 'STRAP-CABLE', 6, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010014', 'WL-ZL50', '3340892', '2071617', 'PLATE-IDENT', 6, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010015', 'WL-ZL50', '3340892', '4D3107', 'SEAL O RING', 8, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010016', 'WL-ZL50', '3340892', '1H1023', 'SEAL-O RING', 12, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010017', 'WL-ZL50', '3340892', '8T6870', 'BOLT-HEX HEAD', 8, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010018', 'WL-ZL50', '3340892', '7J7423', 'VALVE', 5, 'B', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010019', 'WL-ZL50', '3340892', '7S8491', 'SPRING', 5, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010020', 'WL-ZL50', '3340892', '3G2683', 'PLUG-O-RING', 5, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010021', 'WL-ZL50', '3340892', '1U0322', 'BEARING-SLEEVE', 5, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010022', 'WL-ZL50', '3340892', '2S4078', 'SEAL-O-RING', 5, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010023', 'WL-ZL50', '3340892', '3603690', 'PLUG-HD STOR', 3, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010024', 'WL-ZL50', '3340892', '3J7354', 'SEAL-O-RING-STOR', 3, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010025', 'WL-ZL50', '3340892', '4J0522', 'SEAL-O-RING', 2, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010026', 'WL-ZL50', '3340892', '4J0523', 'SEAL-O-RING', 1, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010027', 'WL-ZL50', '3340892', '5P5874', 'SEAL-O-RING', 6, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010028', 'WL-ZL50', '3340892', '7X2551', 'BOLT-HEX HEAD', 5, 'C', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010029', 'WL-ZL50', '3340892', '5P1076', 'WASHER-HARD', 5, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010030', 'WL-ZL50', '3340892', '3G4135', 'PLUG-O-RING', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010031', 'WL-ZL50', '3340892', '7M8485', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010032', 'WL-ZL50', '3340892', '6E5950', 'VALVE GRP RELIEF', 3, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010033', 'WL-ZL50', '3340892', '6E6129', 'PLUG MAIN RELIEF', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010034', 'WL-ZL50', '3340892', '7J9933', 'SEAL-O RING', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010035', 'WL-ZL50', '3340892', '3K0360', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010036', 'WL-ZL50', '3340892', '3603681', 'PLUG-HD STOR', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010037', 'WL-ZL50', '3340892', '2M9780', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010038', 'WL-ZL50', '3340892', '1920895', 'VALVE GRP-RELIEF', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010039', 'WL-ZL50', '3340892', '3603679', 'PLUG-HD STOR', 5, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010040', 'WL-ZL50', '3340892', '3J1907', 'SEAL-O-RING-STOR', 5, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010041', 'WL-ZL50', '3340892', '4T7581', 'VALVE GRP RELIEF', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010042', 'WL-ZL50', '3340892', '1P3703', 'SEAL-RECTANGULAR', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010043', 'WL-ZL50', '3340892', '1P3704', 'SEAL-RECTANGULAR', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010044', 'WL-ZL50', '3340892', '4J0522', 'SEAL-O-RING', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010045', 'WL-ZL50', '3340892', '5H4020', 'FLANGE-COVER', 1, 'E', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010046', 'WL-ZL50', '3340892', '1973295', 'FLANGE', 2, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010047', 'WL-ZL50', '3340892', '7X2550', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010048', 'WL-ZL50', '3340892', '8T7971', 'WASHER-HARD', 4, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010049', 'WL-ZL50', '3340892', '3676002', 'PLUG AS-HD STOR', 4, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010050', 'WL-ZL50', '3340892', '7X2538', 'BOLT-HEX HEAD', 4, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010051', 'WL-ZL50', '3340892', '9S8005', 'PLUG-LD STOR', 1, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010052', 'WL-ZL50', '3340892', '3K0360', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010053', 'WL-ZL50', '3340892', '3340870', 'PLATE-IDENT', 1, 'F', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010054', 'WL-ZL50', '3340892', '8J4398', 'COVER', 4, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010055', 'WL-ZL50', '3340892', '3J5554', 'GASKET', 5, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010056', 'WL-ZL50', '3340892', '8T4179', 'BOLT-HEX HEAD', 13, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010057', 'WL-ZL50', '3340892', '3J5553', 'GASKET', 1, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010058', 'WL-ZL50', '3340892', '8J5893', 'COVER', 1, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010059', 'WL-ZL50', '3340892', '8X6166', 'COVER', 1, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010060', 'WL-ZL50', '3340892', '8T4139', 'BOLT-HEX HEAD', 1, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010061', 'WL-ZL50', '3340892', '4D2886', 'CLIP', 2, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010062', 'WL-ZL50', '3340892', '5P0048', 'COVER', 1, 'G', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010063', 'WL-ZL50', '3340892', '1P3704', 'SEAL-RECTANGULAR', 1, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010064', 'WL-ZL50', '3340892', '1P5767', 'FLANGE-SPLIT', 2, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010065', 'WL-ZL50', '3340892', '8T4194', 'BOLT-HEX HEAD', 4, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010066', 'WL-ZL50', '3340892', '8T4223', 'WASHER-HARD', 4, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010067', 'WL-ZL50', '3340892', '1552269', 'PLUG AS-CONN', 6, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010068', 'WL-ZL50', '3340892', '1620095', 'MANIFOLD', 1, 'H', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010069', 'WL-ZL50', '3340892', '1633395', 'STEM-TILT', 1, 'I', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010070', 'WL-ZL50', '3340892', '3395399', 'STEM-TILT', 1, 'I', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044217411010071', 'WL-ZL50', '3340892', '1502329', 'STEM-TILT', 1, 'I', 1, '2025-03-27 10:56:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010000', 'B Segment', '3612415', '4T4207', '钢铁制塞堵', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010001', 'B Segment', '3612415', '1T0936', '钢铁制塞堵', 2, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010002', 'B Segment', '3612415', '3603678', '钢铁制塞堵', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010003', 'B Segment', '3612415', '2147567', '橡胶密封圈', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010004', 'B Segment', '3612415', '3676001', '钢铁制塞堵组件', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010005', 'B Segment', '3612415', '3676002', '钢铁制塞堵组件', 2, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010006', 'B Segment', '3612415', '6E5066', '滤网', 2, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010007', 'B Segment', '3612415', '2608590', '换向阀', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010008', 'B Segment', '3612415', '7M8485', '橡胶密封圈', 1, 'A', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010009', 'B Segment', '3612415', '1008010', '阀芯', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010010', 'B Segment', '3612415', '1008011', '钢铁制塞堵', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010011', 'B Segment', '3612415', '2S2596', '钢铁弹簧', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010012', 'B Segment', '3612415', '7J0204', '橡胶密封圈', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010013', 'B Segment', '3612415', '1537551', '阀用止动块', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010014', 'B Segment', '3612415', '4214353', '钢铁弹簧', 1, 'B', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010015', 'B Segment', '3612415', '1537067', '阀用止动挡圈', 1, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010016', 'B Segment', '3612415', '1H1023', '橡胶密封圈', 3, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010017', 'B Segment', '3612415', '3J9015', '橡胶密封圈', 3, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010018', 'B Segment', '3612415', '6V9606', '钢铁螺栓', 2, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010019', 'B Segment', '3612415', '3612426', '钢铁弹簧', 1, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010020', 'B Segment', '3612415', '5F9144', '橡胶密封圈', 1, 'C', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010021', 'B Segment', '3612415', '8T4198', '钢铁制螺栓', 2, 'D', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010022', 'B Segment', '3612415', '1482557', '阀用塞堵', 1, 'D', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010023', 'B Segment', '3612415', '2040814', '钢铁螺钉', 2, 'D', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010024', 'B Segment', '3612415', '3J1907', '橡胶密封圈', 2, 'D', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010025', 'B Segment', '3612415', '3603692', '钢铁制塞堵', 2, 'D', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010026', 'B Segment', '3612415', '4363448', '阀座', 2, 'E', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010027', 'B Segment', '3612415', '3612429', '液压传动阀', 1, 'E', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010028', 'B Segment', '3612415', '4363447', '阀座', 1, 'E', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044385088010029', 'B Segment', '3612415', '3706923', '安全阀', 2, 'E', 1, '2025-03-27 10:59:45', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010000', 'B Segment', '3623314', '1008010', 'VALVE ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010001', 'B Segment', '3623314', '2S2596', 'SPRING ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010002', 'B Segment', '3623314', '1008011', 'PLUG ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010003', 'B Segment', '3623314', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010004', 'B Segment', '3623314', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010005', 'B Segment', '3623314', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010006', 'B Segment', '3623314', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010007', 'B Segment', '3623314', '4T1108', 'PLUG ', 1, 'A', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010008', 'B Segment', '3623314', '4J5351', 'SEAL-O-RING ', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010009', 'B Segment', '3623314', '7J9933', 'SEAL-O RING ', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010010', 'B Segment', '3623314', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010011', 'B Segment', '3623314', '4T5072', 'RING-BACKUP ', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010012', 'B Segment', '3623314', '4T5073', 'RING-BACKUP ', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010013', 'B Segment', '3623314', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010014', 'B Segment', '3623314', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010015', 'B Segment', '3623314', '4T1108', 'PLUG ', 1, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010016', 'B Segment', '3623314', '2608590', 'VALVE GP-SHTL -B', 1, 'B', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010017', 'B Segment', '3623314', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010018', 'B Segment', '3623314', '1216649', 'VALVE GP-RELIEF ', 1, 'D', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010019', 'B Segment', '3623314', '1239624', 'SPRING ', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010020', 'B Segment', '3623314', '0858091/HE', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010021', 'B Segment', '3623314', '9X2027', 'WASHER-HARD ', 2, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010022', 'B Segment', '3623314', '4J7533', 'SEAL-O-RING-STOR', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010023', 'B Segment', '3623314', '9S4180', 'PLUG-LD STOR ', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010024', 'B Segment', '3623314', '2077434', 'RETAINER ', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010025', 'B Segment', '3623314', '3529954', 'SPRING ', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010026', 'B Segment', '3623314', '3529956', 'RETAINER ', 1, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010027', 'B Segment', '3623314', '8T4145', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010028', 'B Segment', '3623314', '2077434', 'RETAINER ', 1, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010029', 'B Segment', '3623314', '3529954', 'SPRING ', 1, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010030', 'B Segment', '3623314', '3529956', 'RETAINER ', 1, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010031', 'B Segment', '3623314', '8T4145', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010032', 'B Segment', '3623314', '9X8256', 'WASHER ', 4, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010033', 'B Segment', '3623314', '3623331', 'PLATE-IDENT ', 1, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010034', 'B Segment', '3623314', '1503065', 'ADAPTER AS-ELBOW', 1, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010035', 'B Segment', '3623314', '6V3965', 'ADAPTER-STR ', 2, 'F', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010036', 'B Segment', '3623314', '2147568', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010037', 'B Segment', '3623314', '6V0852', 'CAP-DUST ', 2, 'G', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010038', 'B Segment', '3623314', '2427955', 'HOUSING AS ', 2, 'I', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010039', 'B Segment', '3623314', '3617213', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010040', 'B Segment', '3623314', '3161438', 'CARTRIDGE AS ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010041', 'B Segment', '3623314', '3128629', 'COIL AS ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010042', 'B Segment', '3623314', '1919247', 'WASHER ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010043', 'B Segment', '3623314', '1982914', 'NUT-HEXAGON ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010044', 'B Segment', '3623314', '1879630', 'SEAL-O-RING ', 1, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010045', 'B Segment', '3623314', '1H1023', 'SEAL-O RING ', 2, 'J', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010046', 'B Segment', '3623314', '3617213', 'CARTRIDGE AS ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010047', 'B Segment', '3623314', '3161438', 'CARTRIDGE AS ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010048', 'B Segment', '3623314', '3128629', 'COIL AS ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010049', 'B Segment', '3623314', '1919247', 'WASHER ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010050', 'B Segment', '3623314', '1982914', 'NUT-HEXAGON ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010051', 'B Segment', '3623314', '1879630', 'SEAL-O-RING ', 1, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044527395010052', 'B Segment', '3623314', '1H1023', 'SEAL-O RING ', 2, 'L', 6, '2025-03-27 11:02:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010000', 'B Segment', '3649542', '4T5896', '止回阀', 1, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010001', 'B Segment', '3649542', '8J6815', '钢铁制塞堵', 1, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010002', 'B Segment', '3649542', '3J1907', '橡胶密封圈', 3, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010003', 'B Segment', '3649542', '9S4191', '钢铁制塞堵', 3, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010004', 'B Segment', '3649542', '3J7354', '橡胶密封圈', 2, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010005', 'B Segment', '3649542', '9S4182', '钢铁制塞堵', 2, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010006', 'B Segment', '3649542', '6V0400', '钢铁制法兰', 4, 'A', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010007', 'B Segment', '3649542', '6V8178', '钢铁制垫圈', 8, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010008', 'B Segment', '3649542', '8T4184', '钢铁制螺栓', 8, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010009', 'B Segment', '3649542', '1P3703', '橡胶密封圈', 2, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010010', 'B Segment', '3649542', '5P0047', '钢铁安装盖', 2, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010011', 'B Segment', '3649542', '3J7354', '橡胶密封圈', 2, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010012', 'B Segment', '3649542', '9S4182', '钢铁制塞堵', 2, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010013', 'B Segment', '3649542', '1P3702', '橡胶密封圈', 1, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010014', 'B Segment', '3649542', '6V5555', '橡胶密封圈', 15, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010015', 'B Segment', '3649542', '4J8997', '橡胶密封圈', 4, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010016', 'B Segment', '3649542', '4J0522', '橡胶密封圈', 15, 'B', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010017', 'B Segment', '3649542', '5334159', '钢铁制螺栓', 36, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010018', 'B Segment', '3649542', '5H4019', '钢铁安装盖', 8, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010019', 'B Segment', '3649542', '8T4223', '钢铁制垫圈', 6, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010020', 'B Segment', '3649542', '5H4020', 'Cover', 1, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010021', 'B Segment', '3649542', '4J0522', '橡胶密封圈', 1, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010022', 'B Segment', '3649542', '4J0520', '橡胶密封圈', 8, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010023', 'B Segment', '3649542', '7S0530', '钢铁制管夹', 1, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010024', 'B Segment', '3649542', '6V8188', '钢铁制螺母', 6, 'C', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010025', 'B Segment', '3649542', '9T2856', '车辆用调节连杆', 3, 'D', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010026', 'B Segment', '3649542', '3523968', 'CLIP-LADDER', 4, 'E', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010027', 'B Segment', '3649542', '9X2038', 'WASHER-HARD', 4, 'E', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010028', 'B Segment', '3649542', '4C8359', '钢铁制环头螺栓', 1, 'E', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010029', 'B Segment', '3649542', '1P4578', '钢铁制法兰', 2, 'E', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010030', 'B Segment', '3649542', '1047574', '安全阀', 1, 'F', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044610752010031', 'B Segment', '3649542', '8C3206', '钢铁制法兰', 16, 'H', 1, '2025-03-27 11:03:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010000', 'B Segment', '3939137', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010001', 'B Segment', '3939137', '9S9334', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010002', 'B Segment', '3939137', '4T4207', 'PLUG-NPTF ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010003', 'B Segment', '3939137', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010004', 'B Segment', '3939137', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010005', 'B Segment', '3939137', '4T1108', 'PLUG ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010006', 'B Segment', '3939137', '4K1388', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010007', 'B Segment', '3939137', '4T5073', 'RING-BACKUP ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010008', 'B Segment', '3939137', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010009', 'B Segment', '3939137', '4J5351', 'SEAL-O-RING ', 2, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010010', 'B Segment', '3939137', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010011', 'B Segment', '3939137', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010012', 'B Segment', '3939137', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010013', 'B Segment', '3939137', '4T1108', 'PLUG ', 1, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010014', 'B Segment', '3939137', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010015', 'B Segment', '3939137', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010016', 'B Segment', '3939137', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010017', 'B Segment', '3939137', '4T5072', 'RING-BACKUP ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010018', 'B Segment', '3939137', '3939143', 'PLATE-IDENT ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010019', 'B Segment', '3939137', '4T4511', 'SLEEVE ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010020', 'B Segment', '3939137', '3664972', 'RING-BACKUP ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010021', 'B Segment', '3939137', '6V5556', 'SEAL-O RING ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010022', 'B Segment', '3939137', '4T1701', 'SPRING ', 1, 'C', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010023', 'B Segment', '3939137', '4T1649', 'HOUSING ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010024', 'B Segment', '3939137', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010025', 'B Segment', '3939137', '8T4185', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010026', 'B Segment', '3939137', '4J7533', 'SEAL-O-RING-STOR', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010027', 'B Segment', '3939137', '9S4180', 'PLUG-LD STOR ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010028', 'B Segment', '3939137', '3529956', 'RETAINER ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010029', 'B Segment', '3939137', '3529954', 'SPRING ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010030', 'B Segment', '3939137', '2077434', 'RETAINER ', 1, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010031', 'B Segment', '3939137', '8T4145', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010032', 'B Segment', '3939137', '9X8256', 'WASHER ', 4, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010033', 'B Segment', '3939137', '3529956', 'RETAINER ', 1, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010034', 'B Segment', '3939137', '3529954', 'SPRING ', 1, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690828010035', 'B Segment', '3939137', '2077434', 'RETAINER ', 1, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010000', 'B Segment', '3939137', '8T4145', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010001', 'B Segment', '3939137', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010002', 'B Segment', '3939137', '9S8004', 'PLUG-LD STOR ', 2, 'E', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010003', 'B Segment', '3939137', '1919247', 'WASHER ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010004', 'B Segment', '3939137', '1982914', 'NUT-HEXAGON ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010005', 'B Segment', '3939137', '3128629', 'COIL AS ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010006', 'B Segment', '3939137', '3161438', 'CARTRIDGE AS ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010007', 'B Segment', '3939137', '3617213', 'CARTRIDGE AS ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010008', 'B Segment', '3939137', '1879630', 'SEAL-O-RING ', 1, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010009', 'B Segment', '3939137', '1H1023', 'SEAL-O RING ', 2, 'F', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010010', 'B Segment', '3939137', '2608590', 'VALVE GP-SHTL -B', 1, 'H', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010011', 'B Segment', '3939137', '2427955', 'HOUSING AS ', 2, 'I', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010012', 'B Segment', '3939137', '1919247', 'WASHER ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010013', 'B Segment', '3939137', '1982914', 'NUT-HEXAGON ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010014', 'B Segment', '3939137', '3128629', 'COIL AS ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010015', 'B Segment', '3939137', '3161438', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010016', 'B Segment', '3939137', '3617213', 'CARTRIDGE AS ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010017', 'B Segment', '3939137', '1879630', 'SEAL-O-RING ', 1, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044690829010018', 'B Segment', '3939137', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-03-27 11:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010000', 'Steering', '4560776', '9S4183', '堵头', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010001', 'Steering', '4560776', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010002', 'Steering', '4560776', '9S4185', '堵头', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010003', 'Steering', '4560776', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010004', 'Steering', '4560776', '9S8006', '堵头', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010005', 'Steering', '4560776', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010006', 'Steering', '4560776', '7J1089', '堵头', 2, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010007', 'Steering', '4560776', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010008', 'Steering', '4560776', '5H3193', '穿销', 4, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010009', 'Steering', '4560776', '9S8002', '堵头', 11, 'A', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010010', 'Steering', '4560776', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010011', 'Steering', '4560776', '6E5289', '堵头', 2, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010012', 'Steering', '4560776', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010013', 'Steering', '4560776', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010014', 'Steering', '4560776', '9S4185', '堵头', 1, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010015', 'Steering', '4560776', '9J9821', '底座阀', 4, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010016', 'Steering', '4560776', '4B9782', '钢珠', 5, 'B', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010017', 'Steering', '4560776', '2S2596', '弹簧', 4, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010018', 'Steering', '4560776', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010019', 'Steering', '4560776', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010020', 'Steering', '4560776', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010021', 'Steering', '4560776', '8T4196', '螺栓', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010022', 'Steering', '4560776', '8T6466', '螺栓', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010023', 'Steering', '4560776', '6E5291', '弹簧', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010024', 'Steering', '4560776', '6T6052', '截流套', 1, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010025', 'Steering', '4560776', '6V9830', '盖帽', 2, 'C', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010026', 'Steering', '4560776', '6J6506', '垫片', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010027', 'Steering', '4560776', '1268473', '弹簧', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010028', 'Steering', '4560776', '7J4321', '固定器', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010029', 'Steering', '4560776', '9M1974', '垫圈', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010030', 'Steering', '4560776', '8T5005', '螺栓', 4, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010031', 'Steering', '4560776', '4564626', '铭牌', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010032', 'Steering', '4560776', '1070269', '螺栓', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010033', 'Steering', '4560776', '9T8672', '固定器', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010034', 'Steering', '4560776', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010035', 'Steering', '4560776', '4564633', '溢流阀', 1, 'E', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010036', 'Steering', '4560776', '4564624', '溢流阀', 1, 'E', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010037', 'Steering', '4560776', '9T7220', '盖板', 1, 'E', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010038', 'Steering', '4560776', '8C3206', '法兰', 4, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010039', 'Steering', '4560776', '5H4019', '盖板', 2, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010040', 'Steering', '4560776', '4J0520', '密封圈', 2, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010041', 'Steering', '4560776', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010042', 'Steering', '4560776', '8T4121', '垫圈', 8, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010043', 'Steering', '4560776', '8T4196', '螺栓', 8, 'F终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743044938122010044', 'Steering', '4560776', '6065745', '盖板', 1, 'G终装', 2, '2025-03-27 11:08:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010000', 'Steering', '9T7420', '9S4183', '堵头', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010001', 'Steering', '9T7420', '3D2824', 'O型圈', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010002', 'Steering', '9T7420', '9S4185', '堵头', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010003', 'Steering', '9T7420', '3K0360', 'O型圈', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010004', 'Steering', '9T7420', '9S8006', '堵头', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010005', 'Steering', '9T7420', '2M9780', 'O型圈', 1, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010006', 'Steering', '9T7420', '7J1089', '堵头', 2, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010007', 'Steering', '9T7420', '3J1907', 'O型圈', 2, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010008', 'Steering', '9T7420', '5H3193', '穿销', 4, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010009', 'Steering', '9T7420', '9S8002', '堵头', 10, 'A', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010010', 'Steering', '9T7420', '3J7354', 'O型圈', 11, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010011', 'Steering', '9T7420', '6E5289', '堵头', 2, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010012', 'Steering', '9T7420', '3K0360', 'O型圈', 3, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010013', 'Steering', '9T7420', '6V8398', 'O型圈', 2, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010014', 'Steering', '9T7420', '9S4185', '堵头', 1, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010015', 'Steering', '9T7420', '9S8002', '堵头', 1, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010016', 'Steering', '9T7420', '9J9821', '底座阀', 4, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010017', 'Steering', '9T7420', '4B9782', '钢珠', 5, 'B', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010018', 'Steering', '9T7420', '2S2596', '弹簧', 4, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010019', 'Steering', '9T7420', '8J6815', '节流螺丝', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010020', 'Steering', '9T7420', '8F9206', 'O型圈', 7, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010021', 'Steering', '9T7420', '5J2974', 'O型圈', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010022', 'Steering', '9T7420', '8T4196', '螺栓', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010023', 'Steering', '9T7420', '8T6466', '螺栓', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010024', 'Steering', '9T7420', '6E5291', '弹簧', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010025', 'Steering', '9T7420', '6E2508', '截流套', 1, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010026', 'Steering', '9T7420', '6V9830', '盖帽', 2, 'C', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010027', 'Steering', '9T7420', '6J6506', '垫片', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010028', 'Steering', '9T7420', '1268473', '弹簧', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010029', 'Steering', '9T7420', '7J4321', '固定器', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010030', 'Steering', '9T7420', '9M1974', '垫圈', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010031', 'Steering', '9T7420', '6V5195', '螺栓', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010032', 'Steering', '9T7420', '8T5005', '螺栓', 4, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010033', 'Steering', '9T7420', '1078234', '铭牌', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010034', 'Steering', '9T7420', '9T8672', '固定器', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010035', 'Steering', '9T7420', '4J0520', 'O型圈', 1, 'D', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010036', 'Steering', '9T7420', '6E3447', '溢流阀', 1, 'E', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010037', 'Steering', '9T7420', '9T7419', '溢流阀', 1, 'E', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010038', 'Steering', '9T7420', '9T7220', '盖板', 1, 'E', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010039', 'Steering', '9T7420', '8C3206', '法兰', 8, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010040', 'Steering', '9T7420', '5H4019', '盖板', 4, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010041', 'Steering', '9T7420', '4J0520', '密封圈', 4, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010042', 'Steering', '9T7420', '7S0530', '吊环', 1, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010043', 'Steering', '9T7420', '8T4121', '垫圈', 16, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045050879010044', 'Steering', '9T7420', '8T4196', '螺栓', 16, 'F终装', 2, '2025-03-27 11:10:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010000', 'TRS', '6063779', '3E4352', 'WASHER-HARD ', 2, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010001', 'TRS', '6063779', '3J6956', 'SPRING ', 1, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010002', 'TRS', '6063779', '4D1322', 'RING-RETAINING ', 1, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010003', 'TRS', '6063779', '6Y2584', 'RETAINER ', 1, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010004', 'TRS', '6063779', '8C5176', 'SEAL-O-RING ', 2, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010005', 'TRS', '6063779', '8T9535', 'BOLT-HEX SKT HD ', 2, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010006', 'TRS', '6063779', '9L9068', 'DOWEL ', 2, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010007', 'TRS', '6063779', '9P9150', 'WASHER ', 4, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010008', 'TRS', '6063779', '1421767', 'POPPET ', 1, 'A', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010009', 'TRS', '6063779', '4J7533', 'SEAL-O-RING-STOR', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010010', 'TRS', '6063779', '6Y0871', 'SPRING ', 2, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010011', 'TRS', '6063779', '8E1139', 'SPRING ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010012', 'TRS', '6063779', '8E1142', 'SLUG ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010013', 'TRS', '6063779', '8E3675', 'SPOOL ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010014', 'TRS', '6063779', '9U9328', 'SPRING ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010015', 'TRS', '6063779', '9W6096', 'SLUG ', 6, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010016', 'TRS', '6063779', '9W6097', 'SPOOL-SELECTOR ', 6, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010017', 'TRS', '6063779', '9W8279', 'PISTON ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010018', 'TRS', '6063779', '1760258', 'PLUG ', 1, 'B', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010019', 'TRS', '6063779', '9L9068', 'DOWEL ', 4, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010020', 'TRS', '6063779', '4F4097', 'SEAL-O RING ', 2, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010021', 'TRS', '6063779', '4J2506', 'SEAL-O RING ', 2, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010022', 'TRS', '6063779', '6Y2522', 'SPRING ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010023', 'TRS', '6063779', '7T8810', 'PLUNGER ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010024', 'TRS', '6063779', '8E9571', 'WASHER-HARD ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010025', 'TRS', '6063779', '8T4776', 'BOLT-HEX SKT HD ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010026', 'TRS', '6063779', '7T8797', 'SPACER ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010027', 'TRS', '6063779', '8E1143', 'SLUG ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010028', 'TRS', '6063779', '8E3674', 'SPOOL ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010029', 'TRS', '6063779', '8J2283', 'RING-RETAINING ', 1, 'C', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010030', 'TRS', '6063779', '6Y7582', 'PISTON ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010031', 'TRS', '6063779', '6Y7621', 'SPOOL ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010032', 'TRS', '6063779', '8E4958', 'SPOOL ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010033', 'TRS', '6063779', '8E4959', 'SLUG ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010034', 'TRS', '6063779', '8E5522', 'PLATE-IDENT ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010035', 'TRS', '6063779', '8P0346', 'SPRING ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010036', 'TRS', '6063779', '9L9188', 'SPRING-VALVE ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010037', 'TRS', '6063779', '2P5755', 'SPRING ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010038', 'TRS', '6063779', '8E0987', 'SPOOL ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010039', 'TRS', '6063779', '6072348', 'PLATE-IDENT ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010040', 'TRS', '6063779', '6072350', 'PLATE-IDENT ', 1, 'D', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010041', 'TRS', '6063779', '3K0360', 'SEAL-O-RING-STOR', 1, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010042', 'TRS', '6063779', '9S8006', 'PLUG-LD STOR ', 2, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010043', 'TRS', '6063779', '9S8005', 'PLUG-INTL HEX ', 1, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010044', 'TRS', '6063779', '2M9780', 'SEAL-O-RING-STOR', 6, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159926010045', 'TRS', '6063779', '4J7533', 'SEAL-O-RING-STOR', 1, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010000', 'TRS', '6063779', '6Y4638', 'PLUG-LD STOR ', 2, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010001', 'TRS', '6063779', '7M8485', 'SEAL-O-RING-STOR', 2, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010002', 'TRS', '6063779', '7T7679', 'PLUG-STR THD ', 4, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010003', 'TRS', '6063779', '8E6051', 'PLUG-ORIFICE ', 1, 'E', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010004', 'TRS', '6063779', '3J1907', 'SEAL-O-RING-STOR', 4, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010005', 'TRS', '6063779', '6V3965', 'ADAPTER-STR ', 3, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010006', 'TRS', '6063779', '3K0360', 'SEAL-O-RING-STOR', 2, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010007', 'TRS', '6063779', '9S8004', 'PLUG-INTL HEX ', 1, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010008', 'TRS', '6063779', '9S8005', 'PLUG-INTL HEX ', 2, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010009', 'TRS', '6063779', '7M8485', 'SEAL-O-RING-STOR', 1, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010010', 'TRS', '6063779', '8E2035', 'PLUG-0-RING ', 1, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010011', 'TRS', '6063779', '6V0852', 'CAP-DUST ', 3, 'F', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045159927010012', 'TRS', '6063779', '1861526', 'VALVE GP-SOL ', 6, 'G', 2, '2025-03-27 11:12:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010000', 'EH-Steering', '5218492', '6024220', 'VALVEGP-CHECK-E', 1, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010001', 'EH-Steering', '5218492', '2828827', 'PLUG', 2, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010002', 'EH-Steering', '5218492', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010003', 'EH-Steering', '5218492', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010004', 'EH-Steering', '5218492', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010005', 'EH-Steering', '5218492', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010006', 'EH-Steering', '5218492', '2976291', 'PLUGAS', 9, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010007', 'EH-Steering', '5218492', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010008', 'EH-Steering', '5218492', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010009', 'EH-Steering', '5218492', '1919247', 'WASHER', 4, 'B', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010010', 'EH-Steering', '5218492', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010011', 'EH-Steering', '5218492', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010012', 'EH-Steering', '5218492', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010013', 'EH-Steering', '5218492', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010014', 'EH-Steering', '5218492', '4168195', 'VALVEGP-SOL', 1, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010015', 'EH-Steering', '5218492', '4973504', 'VALVEGP-PRLF-A', 3, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010016', 'EH-Steering', '5218492', '2608590', 'VALVE GP-SHUTTLE', 1, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010017', 'EH-Steering', '5218492', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010018', 'EH-Steering', '5218492', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010019', 'EH-Steering', '5218492', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010020', 'EH-Steering', '5218492', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010021', 'EH-Steering', '5218492', '0951582/HE', 'SEAL-O-RING', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010022', 'EH-Steering', '5218492', '4612544', 'SENSOR AS-SPOOL', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010023', 'EH-Steering', '5218492', '6V8653', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010024', 'EH-Steering', '5218492', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010025', 'EH-Steering', '5218492', '3278527', 'SPRING', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010026', 'EH-Steering', '5218492', '1749194', 'BOLT-FLANGE HEAD', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010027', 'EH-Steering', '5218492', '3410825', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010028', 'EH-Steering', '5218492', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010029', 'EH-Steering', '5218492', '8T2396', 'BOLT-SOCKETHD', 2, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010030', 'EH-Steering', '5218492', '9X8256', 'WASHER ', 2, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010031', 'EH-Steering', '5218492', '3J1907', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010032', 'EH-Steering', '5218492', '9S8004', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010033', 'EH-Steering', '5218492', '3676002', 'PLUG AS-HD', 1, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010034', 'EH-Steering', '5218492', '2304013', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010035', 'EH-Steering', '5218492', '8T8737', 'PLUG-SEAL', 5, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010036', 'EH-Steering', '5218492', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010037', 'EH-Steering', '5218492', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010038', 'EH-Steering', '5218492', '2965987', 'PLUG', 2, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010039', 'EH-Steering', '5218492', '3331701', 'PLUG', 1, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010040', 'EH-Steering', '5218492', '3J1907', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010041', 'EH-Steering', '5218492', '6V8397', 'SEAL-O-RING-ORFS', 2, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010042', 'EH-Steering', '5218492', '6V8398', 'SEAL-O-RING-ORFS', 1, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010043', 'EH-Steering', '5218492', '2446625', 'ADAPTER-SPL', 1, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010044', 'EH-Steering', '5218492', '6V9829', 'CAP-ORFS', 2, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010045', 'EH-Steering', '5218492', '6V9830', 'CAP-ORFS', 1, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010046', 'EH-Steering', '5218492', '4J0520', 'SEAL-O-RING', 2, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010047', 'EH-Steering', '5218492', '8T6466', 'BOLT-HEX HEAD', 8, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010048', 'EH-Steering', '5218492', '8T4121', 'WASHER-HARD', 8, 'F', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010049', 'EH-Steering', '5218492', '7S0530', 'CLIP', 1, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010050', 'EH-Steering', '5218492', '3267680', 'PLUG', 4, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010051', 'EH-Steering', '5218492', '7J3554', 'COVER', 2, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010052', 'EH-Steering', '5218492', '8T4137', 'BOLT-HEX HEAD', 4, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010053', 'EH-Steering', '5218492', '2D0094', 'GASKET', 2, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045275285010054', 'EH-Steering', '5218492', '5218454', 'PLATE-IDENT', 1, 'G', 1, '2025-03-27 11:14:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010000', 'WTS', '5241514', '9S8009', '堵头', 2, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010001', 'WTS', '5241514', '4K1388', '密封O型圈', 3, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010002', 'WTS', '5241514', '6V3510', '堵头/适配器', 1, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010003', 'WTS', '5241514', '3603692', '堵头', 1, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010004', 'WTS', '5241514', '3J1907', '密封O型圈', 1, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010005', 'WTS', '5241514', '3676003', '堵头', 2, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010006', 'WTS', '5241514', '3676002', '堵头', 1, 'A', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010007', 'WTS', '5241514', '3603679', '堵头', 2, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010008', 'WTS', '5241514', '3J1907', '密封O型圈', 5, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010009', 'WTS', '5241514', '6V8076', '直角过度接头', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010010', 'WTS', '5241514', '6V3965', '测压接头', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010011', 'WTS', '5241514', '6V0852', '保护套', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010012', 'WTS', '5241514', '9S4184', '堵头', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010013', 'WTS', '5241514', '3D2824', '密封O型圈', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010014', 'WTS', '5241514', '3603692', '堵头', 1, 'B', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010015', 'WTS', '5241514', '5241515', '标牌', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010016', 'WTS', '5241514', '9T2134', '阀体', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010017', 'WTS', '5241514', '6V8398', '密封', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010018', 'WTS', '5241514', '7G6741', '垫圈', 3, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010019', 'WTS', '5241514', '4T1862', '堵头', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010020', 'WTS', '5241514', '3D2824', '密封O型圈', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010021', 'WTS', '5241514', '4K1388', '密封O型圈', 1, 'C', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010022', 'WTS', '5241514', '9J4848', '阀芯', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010023', 'WTS', '5241514', '6V9830', '端口封盖', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010024', 'WTS', '5241514', '3G3126', '弹簧', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010025', 'WTS', '5241514', '3P9498', '节流螺钉', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010026', 'WTS', '5241514', '1T0689', '垫圈', 2, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010027', 'WTS', '5241514', '2L9056', '垫圈', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010028', 'WTS', '5241514', '1612829', '弹簧', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010029', 'WTS', '5241514', '7J5926', '弹簧座', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010030', 'WTS', '5241514', '4T5967', '弹簧', 1, 'D', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010031', 'WTS', '5241514', '5099491', '阀', 1, 'E', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010032', 'WTS', '5241514', '5171078', '阀', 1, 'E', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010033', 'WTS', '5241514', '2808912', '螺栓', 2, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010034', 'WTS', '5241514', '6V5839', '垫片', 2, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010035', 'WTS', '5241514', '1808722', '密封O型圈', 1, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010036', 'WTS', '5241514', '7Y5219/HE', '密封O型圈', 1, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010037', 'WTS', '5241514', '7J5928', '阀体', 1, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010038', 'WTS', '5241514', '7J5934', '活塞/阀芯', 1, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010039', 'WTS', '5241514', '1J8497', '阀芯', 1, 'F', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010040', 'WTS', '5241514', '1K4066', '弹簧', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010041', 'WTS', '5241514', '1053478', '螺栓', 2, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010042', 'WTS', '5241514', '4J8997', '密封圈', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010043', 'WTS', '5241514', '8C3085', '密封圈', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010044', 'WTS', '5241514', '4J0519', '密封O型圈', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010045', 'WTS', '5241514', '1808722', '密封O型圈', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010046', 'WTS', '5241514', '4J9535', '密封O型圈', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010047', 'WTS', '5241514', '8T0372', '螺钉', 2, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010048', 'WTS', '5241514', '5J1987', '弹簧', 1, 'G', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010049', 'WTS', '5241514', '1P4576', '法兰', 6, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010050', 'WTS', '5241514', '5H4018', '盖子', 3, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010051', 'WTS', '5241514', '5F1678', 'O型圈', 3, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010052', 'WTS', '5241514', '7S0530', '吊环', 1, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010053', 'WTS', '5241514', '3603690', '堵头', 1, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010054', 'WTS', '5241514', '3J7354', 'O型圈', 1, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010055', 'WTS', '5241514', '8T4196', '垫片', 12, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743045392283010056', 'WTS', '5241514', '8T4121', '螺栓', 12, 'H', 3, '2025-03-27 11:16:32', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010000', 'Fenix', '4812462', '4J8997', 'SEAL-O-RING ', 6, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010001', 'Fenix', '4812462', '6V5555', 'SEAL-O RING ', 6, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010002', 'Fenix', '4812462', '8T7930', 'BOLT-HEX HEAD ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010003', 'Fenix', '4812462', '8T4223', 'WASHER-HARD ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010004', 'Fenix', '4812462', '2828827', 'PLUG-EXPANSION ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010005', 'Fenix', '4812462', '2458472/X', 'PLUG-EXPANSION ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010006', 'Fenix', '4812462', '1483483', 'PLUG ', 2, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010007', 'Fenix', '4812462', '4D0514', 'PLUG-PTF ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010008', 'Fenix', '4812462', '3J7354', 'SEAL-O-RING-STOR', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010009', 'Fenix', '4812462', '9S8002', 'PLUG-LD STOR ', 3, 'A', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010010', 'Fenix', '4812462', '9T8685', 'VALVE ', 3, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010011', 'Fenix', '4812462', '2N7029', 'SPRING-CONT PIN ', 3, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010012', 'Fenix', '4812462', '3D2824', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010013', 'Fenix', '4812462', '3788543', 'PLUG ', 3, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010014', 'Fenix', '4812462', '4812476', 'VALVE GP-D RLF-C', 3, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010015', 'Fenix', '4812462', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010016', 'Fenix', '4812462', '3603692', 'PLUG-HD STOR ', 1, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010017', 'Fenix', '4812462', '3338242', 'VALVE GP-SOL ', 1, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010018', 'Fenix', '4812462', '4841390', 'PLUG AS ', 1, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010019', 'Fenix', '4812462', '5127785', 'VALVE GP-D RLF-C', 1, 'B', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010020', 'Fenix', '4812462', '5127787', 'VALVE GP-D RLF-C', 1, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010021', 'Fenix', '4812462', '7J9933', 'SEAL-O RING ', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010022', 'Fenix', '4812462', '2608590', 'VALVE GP-SHTL -B', 2, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010023', 'Fenix', '4812462', '4829841', 'RING-BACKUP ', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010024', 'Fenix', '4812462', '4K1388', 'SEAL-O-RING-STOR', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010025', 'Fenix', '4812462', '4681138', 'PLUG-RETAINER ', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010026', 'Fenix', '4812462', '5105247', 'HOUSING ', 1, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010027', 'Fenix', '4812462', '2Y2347', 'SEAL-O-RING ', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010028', 'Fenix', '4812462', '1H1023', 'SEAL-O RING ', 3, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010029', 'Fenix', '4812462', '4908810', 'HOUSING ', 2, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010030', 'Fenix', '4812462', '3D2824', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010031', 'Fenix', '4812462', '9S4183', 'PLUG-HD STOR ', 1, 'C', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010032', 'Fenix', '4812462', '4681142', 'RETAINER ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010033', 'Fenix', '4812462', '4681134', 'SPRING ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010034', 'Fenix', '4812462', '4681133', 'SPRING ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010035', 'Fenix', '4812462', '4681143', 'RETAINER ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010036', 'Fenix', '4812462', '4681144', 'RETAINER ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010037', 'Fenix', '4812462', '2098296', 'BOLT-HEX SOCKET ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010038', 'Fenix', '4812462', '4681141', 'RETAINER ', 4, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010039', 'Fenix', '4812462', '4681135', 'SPRING ', 2, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010040', 'Fenix', '4812462', '4681145', 'BOLT-FLAT ', 2, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010041', 'Fenix', '4812462', '4681340', 'HOUSING ', 1, 'D', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010042', 'Fenix', '4812462', '3848758', 'BOLT-HEX HEAD ', 2, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010043', 'Fenix', '4812462', '9X8256', 'WASHER ', 6, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010044', 'Fenix', '4812462', '4681339', 'HOUSING ', 2, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010045', 'Fenix', '4812462', '3P1979', 'SEAL-O-RING ', 2, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010046', 'Fenix', '4812462', '1323877/EY', 'BOLT-HEX HEAD ', 4, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010047', 'Fenix', '4812462', '7X5315', 'COUPLING-QDISC ', 6, 'E', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010048', 'Fenix', '4812462', '1483483', 'PLUG ', 3, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010049', 'Fenix', '4812462', '7X2535', 'BOLT-HEX HEAD ', 6, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010050', 'Fenix', '4812462', '9X8256', 'WASHER ', 6, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010051', 'Fenix', '4812462', '7X5308', 'CAP-DUST ', 6, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010052', 'Fenix', '4812462', '6005898', 'PLATE-IDENT ', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010053', 'Fenix', '4812462', '5421918', 'PLATE-IDENT ', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010054', 'Fenix', '4812462', '5421919', 'PLATE-IDENT ', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010055', 'Fenix', '4812462', '5106937', 'PLATE-IDENT ', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010056', 'Fenix', '4812462', '3J1907', 'SEAL-O-RING-STOR', 2, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010057', 'Fenix', '4812462', '3603692', 'PLUG-HD STOR ', 2, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010058', 'Fenix', '4812462', '3K0360', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010059', 'Fenix', '4812462', '9S4185', 'PLUG-LD STOR ', 1, 'F', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010060', 'Fenix', '4812462', '4689932', 'MANIFOLD GP-CONT', 3, 'G', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010061', 'Fenix', '4812462', '4805267', 'CLIP-LIFT ', 2, 'H', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010062', 'Fenix', '4812462', '4J0520', 'SEAL-O-RING ', 6, 'H', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010063', 'Fenix', '4812462', '5H4019', 'COVER ', 6, 'H', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010064', 'Fenix', '4812462', '8C3206', 'FLANGE-SPLIT ', 12, 'H', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010065', 'Fenix', '4812462', '5334159', 'BOLT-HEX HEAD ', 24, 'H', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010066', 'Fenix', '4812462', '4J0522', 'SEAL-O-RING ', 1, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010067', 'Fenix', '4812462', '5H4020', 'FLANGE-COVER ', 1, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010068', 'Fenix', '4812462', '1P4578', 'FLANGE-SPLIT ', 2, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010069', 'Fenix', '4812462', '5334159', 'BOLT-HEX HEAD ', 4, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010070', 'Fenix', '4812462', '1P3703', 'SEAL-RECTANGULAR', 1, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010071', 'Fenix', '4812462', '5P0047', 'COVER ', 1, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010072', 'Fenix', '4812462', '6V0400', 'FLANGE-SPLIT ', 2, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010073', 'Fenix', '4812462', '8T4194', 'BOLT-HEX HEAD ', 4, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010074', 'Fenix', '4812462', '8T4223', 'WASHER-HARD ', 4, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010075', 'Fenix', '4812462', '2965987', 'PLUG ', 4, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010076', 'Fenix', '4812462', '2660531', 'CAP-CONNECTOR ', 1, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010077', 'Fenix', '4812462', '5542333/HE', 'CAP-PROTECTION ', 6, 'I', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010078', 'Fenix', '4812462', '5421261', 'STEM-APRON ', 1, 'J', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010079', 'Fenix', '4812462', '5702566', 'STEM-EJECTOR ', 1, 'J', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052120204010080', 'Fenix', '4812462', '5421266', 'STEM-BOWL ', 1, 'J', 1, '2025-03-27 13:08:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010000', 'QCT', '5173289', '1P3709', 'SEAL-RECTANGULAR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010001', 'QCT', '5173289', '1U0322', 'BEARING-SLEEVE', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010002', 'QCT', '5173289', '3G2683', 'PLUG-O-RING', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010003', 'QCT', '5173289', '2S4078', 'SEAL-O-RING', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010004', 'QCT', '5173289', '4J9780', 'PLUG-NPTF(ORIFICE)', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010005', 'QCT', '5173289', '7J7423', 'VALVE', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010006', 'QCT', '5173289', '7S8491', 'SPRING', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010007', 'QCT', '5173289', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010008', 'QCT', '5173289', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010009', 'QCT', '5173289', '4J7533', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010010', 'QCT', '5173289', '9S8001', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010011', 'QCT', '5173289', '9S8002', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010012', 'QCT', '5173289', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010013', 'QCT', '5173289', '5H6005', 'SEAL-O RING', 2, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010014', 'QCT', '5173289', '3676001', 'PLUG AS-HD STOR', 3, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010015', 'QCT', '5173289', '6V8676', 'SEAL-O-RING', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010016', 'QCT', '5173289', '0304606', 'SEAL O RING', 1, 'A', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010017', 'QCT', '5173289', '2R1256', 'RING-RETAINING', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010018', 'QCT', '5173289', '3D4603', 'PLUG-PIPE', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010019', 'QCT', '5173289', '4H5232', 'PIN-SPRING', 3, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010020', 'QCT', '5173289', '4J0519', 'SEAL-O-RING', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010021', 'QCT', '5173289', '6E1297', 'SCREEN', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010022', 'QCT', '5173289', '6J3405', 'SEAT', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010023', 'QCT', '5173289', '1138263', 'PISTON', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010024', 'QCT', '5173289', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010025', 'QCT', '5173289', '9S4191', 'PLUG-LD STOR', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010026', 'QCT', '5173289', '6J3380', 'SPRING', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010027', 'QCT', '5173289', '6K6307', 'SEAL-O-RING', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010028', 'QCT', '5173289', '1266104', 'PLUG-STOR', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010029', 'QCT', '5173289', '3886987', 'SHIM', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010030', 'QCT', '5173289', '5149364', 'VALVE', 1, 'B', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010031', 'QCT', '5173289', '1P6744', 'SPRING', 1, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010032', 'QCT', '5173289', '4J0519', 'SEAL-O-RING', 1, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010033', 'QCT', '5173289', '4J2506', 'SEAL-O RING', 2, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010034', 'QCT', '5173289', '5J4664', 'SPRING', 1, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010035', 'QCT', '5173289', '7D8048', 'SEAL-O RING', 2, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010036', 'QCT', '5173289', '7X0326', 'BOLT', 2, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010037', 'QCT', '5173289', '8J2306', 'VALVE ', 1, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010038', 'QCT', '5173289', '3K0360', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010039', 'QCT', '5173289', '9S8005', 'PLUG-LD STOR', 2, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010040', 'QCT', '5173289', '3676002', 'PLUG AS-HD STOR', 1, 'C', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010041', 'QCT', '5173289', '6V4432', 'BOLT', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010042', 'QCT', '5173289', '7X0293', 'BOLT', 2, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010043', 'QCT', '5173289', '7X0301', 'BOLT', 2, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010044', 'QCT', '5173289', '7X0339', 'BOLT', 2, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010045', 'QCT', '5173289', '8T4223', 'WASHER-HARD', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010046', 'QCT', '5173289', '9P8217', 'WASHER', 4, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010047', 'QCT', '5173289', '4168724', 'VALVE GP-D RLF-A', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010048', 'QCT', '5173289', '4224594', 'VALVE GP-RELIEF', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010049', 'QCT', '5173289', '5174401', 'PLATE-IDENT', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010050', 'QCT', '5173289', '4D2886', 'Clip', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010051', 'QCT', '5173289', '3E3882', 'huan', 1, 'D', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010052', 'QCT', '5173289', '2D6648', 'RING-RETAINING', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010053', 'QCT', '5173289', '4386138', 'RETAINER', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010054', 'QCT', '5173289', '1185086', 'SPRING', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010055', 'QCT', '5173289', '1185087', 'SPRING', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010056', 'QCT', '5173289', '1212051', 'SPRING', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010057', 'QCT', '5173289', '2176414', 'SPOOL-CONTROL', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010058', 'QCT', '5173289', '6V3965', 'ADAPTER-STR', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010059', 'QCT', '5173289', '2147568', 'SEAL-O-RING-STOR', 2, 'E', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010060', 'QCT', '5173289', '3C8388/S', 'PIN-ROLL', 4, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010061', 'QCT', '5173289', '8T3998', 'BOLT-HEAD', 8, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010062', 'QCT', '5173289', '0304605', 'SEAL-O RING', 2, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010063', 'QCT', '5173289', '1552251', 'PLATE', 2, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010064', 'QCT', '5173289', '1771405', 'SPRING-STABLIZIN', 2, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010065', 'QCT', '5173289', '3161438', 'CARTRIDGE AS', 2, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010066', 'QCT', '5173289', '3265212', 'COIL AS', 2, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010067', 'QCT', '5173289', '3603679', 'Plug', 4, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010068', 'QCT', '5173289', '3J1907', 'SEAL-O-RING-STOR', 4, 'F', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010069', 'QCT', '5173289', '5H6005', 'SEAL-O RING', 4, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010070', 'QCT', '5173289', '1P3709', 'SEAL-RECTANGULAR', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010071', 'QCT', '5173289', '6K0806', 'STRAP-CABLE', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010072', 'QCT', '5173289', '6V0852', 'CAP-DUST', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010073', 'QCT', '5173289', '1919247', 'WASHER', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010074', 'QCT', '5173289', '1982914', 'NUT-HEXAGON', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010075', 'QCT', '5173289', '2177195', 'PLATE-IDENT', 2, 'G', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010076', 'QCT', '5173289', '2J2668', 'COVER-SHIPPING', 4, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010077', 'QCT', '5173289', '2J5608', 'COVER', 1, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010078', 'QCT', '5173289', '4J0524', 'SEAL-O-RING', 4, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010079', 'QCT', '5173289', '4J0527', 'SEAL-O-RING', 1, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010080', 'QCT', '5173289', '5P2566', 'BOLT-HEX HEAD', 20, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010081', 'QCT', '5173289', '8T4223', 'WASHER-HARD', 20, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010082', 'QCT', '5173289', '2660531', 'CAP-CONNECTOR', 2, 'I', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010083', 'QCT', '5173289', '1P4579', 'FLANGE-SPLIT', 8, 'J', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743052374520010084', 'QCT', '5173289', '1P4582', 'FLANGE-SPLIT', 2, 'J', 1, '2025-03-27 13:12:55', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010000', 'B Stack', '5195778', '5334159', '钢铁制螺栓', 40, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010001', 'B Stack', '5195778', '1P3703', '橡胶密封圈', 1, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010002', 'B Stack', '5195778', '5P0047', '钢铁安装盖', 1, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010003', 'B Stack', '5195778', '6V0400', '钢铁制法兰', 2, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010004', 'B Stack', '5195778', '8T4184', '钢铁制螺栓', 4, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010005', 'B Stack', '5195778', '8T4223', '钢铁制垫圈', 4, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010006', 'B Stack', '5195778', '3J1907', '橡胶密封圈', 1, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010007', 'B Stack', '5195778', '9S4191', '钢铁制塞堵', 1, 'A', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010008', 'B Stack', '5195778', '9T3541', '安全阀', 1, 'B', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010009', 'B Stack', '5195778', '3J1907', '橡胶密封圈', 2, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010010', 'B Stack', '5195778', '3603692', '钢铁制塞堵', 1, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010011', 'B Stack', '5195778', '8C3206', '钢铁制法兰', 18, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010012', 'B Stack', '5195778', '8T4121', '钢铁制垫圈', 8, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853558010013', 'B Stack', '5195778', '4J0520', '橡胶密封圈', 9, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010000', 'B Stack', '5195778', '5H4019', '钢铁安装盖', 9, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010001', 'B Stack', '5195778', '9S4191', '钢铁制塞堵', 1, 'D', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010002', 'B Stack', '5195778', '1P3702', '橡胶密封圈', 1, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010003', 'B Stack', '5195778', '4J0522', '橡胶密封圈', 18, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010004', 'B Stack', '5195778', '6V5555', '橡胶密封圈', 18, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010005', 'B Stack', '5195778', '4J8997', '橡胶密封圈', 5, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010006', 'B Stack', '5195778', '8T4182', '钢铁制螺栓', 8, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010007', 'B Stack', '5195778', '8T9403', '钢铁制法兰', 4, 'E', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010008', 'B Stack', '5195778', '1P3702', '橡胶密封圈', 2, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010009', 'B Stack', '5195778', '5P0046', '钢铁安装盖', 2, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010010', 'B Stack', '5195778', '6V8188', '钢铁制螺母', 3, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010011', 'B Stack', '5195778', '8T4223', '钢铁制垫圈', 3, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010012', 'B Stack', '5195778', '1P4578', '钢铁制法兰', 2, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010013', 'B Stack', '5195778', '4J0522', '橡胶密封圈', 1, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010014', 'B Stack', '5195778', '5H4020', '钢铁安装盖', 1, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010015', 'B Stack', '5195778', '7S0530', '钢铁制管夹', 2, 'F', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010016', 'B Stack', '5195778', '4K1388', '橡胶密封圈', 1, 'H', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010017', 'B Stack', '5195778', '9S4188', '钢铁制塞堵', 1, 'H', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853559010018', 'B Stack', '5195778', '3J7354', '橡胶密封圈', 3, 'H', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743053853560010000', 'B Stack', '5195778', '9S4182', '钢铁制塞堵', 3, 'H', 6, '2025-03-27 13:37:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010000', 'EH-Steering', '5218493', '6024220', 'VALVEGP-CHECK-E', 1, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010001', 'EH-Steering', '5218493', '2828827', 'PLUG', 2, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010002', 'EH-Steering', '5218493', '2458472/X', 'PLUG-EXPANSION', 2, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010003', 'EH-Steering', '5218493', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010004', 'EH-Steering', '5218493', '9S8006', 'PLUG-LD STOR', 1, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010005', 'EH-Steering', '5218493', '4J5309', 'SEAL-O RING', 2, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010006', 'EH-Steering', '5218493', '2976291', 'PLUGAS', 9, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010007', 'EH-Steering', '5218493', '3341673', 'BOLT-HEXSKTHD', 4, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010008', 'EH-Steering', '5218493', '3133966', 'VALVEGP-SHUTTLE', 2, 'A', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010009', 'EH-Steering', '5218493', '1919247', 'WASHER', 4, 'B', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010010', 'EH-Steering', '5218493', '1982914', 'NUT-HEXAGON', 4, 'B', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010011', 'EH-Steering', '5218493', '3128629', 'COIL AS', 4, 'B', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010012', 'EH-Steering', '5218493', '3161438', 'CARTRIDGE AS', 4, 'B', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010013', 'EH-Steering', '5218493', '3617213', 'Cartridge As', 4, 'B', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010014', 'EH-Steering', '5218493', '4168195', 'VALVEGP-SOL', 1, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010015', 'EH-Steering', '5218493', '4973504', 'VALVEGP-PRLF-A', 3, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010016', 'EH-Steering', '5218493', '2608590', 'VALVE GP-SHUTTLE', 1, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010017', 'EH-Steering', '5218493', '6V5597', 'SEAL-O RING', 2, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010018', 'EH-Steering', '5218493', '1012862', 'DOWEL', 2, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010019', 'EH-Steering', '5218493', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010020', 'EH-Steering', '5218493', '3497431', 'HOUSING-SENSOR', 1, 'C', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010021', 'EH-Steering', '5218493', '0951582/HE', 'SEAL-O-RING', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010022', 'EH-Steering', '5218493', '4612544', 'SENSOR AS-SPOOL', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010023', 'EH-Steering', '5218493', '6V8653', 'BOLT-SOCKET HD', 2, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010024', 'EH-Steering', '5218493', '3294603', 'RETAINER', 2, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010025', 'EH-Steering', '5218493', '3278527', 'SPRING', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010026', 'EH-Steering', '5218493', '1749194', 'BOLT-FLANGE HEAD', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010027', 'EH-Steering', '5218493', '3410825', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010028', 'EH-Steering', '5218493', '4989726', 'HOUSING-SPRING', 1, 'D', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010029', 'EH-Steering', '5218493', '8T2396', 'BOLT-SOCKETHD', 2, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010030', 'EH-Steering', '5218493', '9X8256', 'WASHER ', 2, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010031', 'EH-Steering', '5218493', '3J1907', 'SEAL-O-RING-STOR', 1, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010032', 'EH-Steering', '5218493', '9S8004', 'PLUG-LD STOR', 1, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010033', 'EH-Steering', '5218493', '3676002', 'PLUG AS-HD', 1, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010034', 'EH-Steering', '5218493', '2304013', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010035', 'EH-Steering', '5218493', '8T8737', 'PLUG-SEAL', 3, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010036', 'EH-Steering', '5218493', '2304011', 'PLUG AS-CONN', 1, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010037', 'EH-Steering', '5218493', '8T8737', 'PLUG-SEAL', 2, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010038', 'EH-Steering', '5218493', '2660531', 'CAP-CONNECTOR', 4, 'E', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010039', 'EH-Steering', '5218493', '2965987', 'PLUG', 2, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010040', 'EH-Steering', '5218493', '3331701', 'PLUG', 1, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010041', 'EH-Steering', '5218493', '3J1907', 'SEAL-O-RING-STOR', 1, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010042', 'EH-Steering', '5218493', '6V8397', 'SEAL-O-RING-ORFS', 2, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010043', 'EH-Steering', '5218493', '6V8398', 'SEAL-O-RING-ORFS', 1, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010044', 'EH-Steering', '5218493', '2446625', 'ADAPTER-SPL', 1, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010045', 'EH-Steering', '5218493', '6V9829', 'CAP-ORFS', 2, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010046', 'EH-Steering', '5218493', '6V9830', 'CAP-ORFS', 1, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010047', 'EH-Steering', '5218493', '4J0520', 'SEAL-O-RING', 2, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010048', 'EH-Steering', '5218493', '8T6466', 'BOLT-HEX HEAD', 8, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010049', 'EH-Steering', '5218493', '8T4121', 'WASHER-HARD', 8, 'F', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010050', 'EH-Steering', '5218493', '7S0530', 'CLIP', 1, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010051', 'EH-Steering', '5218493', '3267680', 'PLUG', 4, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010052', 'EH-Steering', '5218493', '7J3554', 'COVER', 2, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010053', 'EH-Steering', '5218493', '2D0094', 'GASKET', 2, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010054', 'EH-Steering', '5218493', '8T4137', 'BOLT-HEX HEAD', 4, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054438535010055', 'EH-Steering', '5218493', '5218455', 'PLATE-IDENT', 1, 'G', 1, '2025-03-27 13:47:19', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879966010000', 'Fenix', '5426077', '4J8997', 'SEAL-O-RING ', 9, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879966010001', 'Fenix', '5426077', '6V5555', 'SEAL-O RING ', 9, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010000', 'Fenix', '5426077', '4735264', 'BOLT ', 3, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010001', 'Fenix', '5426077', '8T4223', 'WASHER-HARD ', 3, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010002', 'Fenix', '5426077', '2828827', 'PLUG-EXPANSION ', 4, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010003', 'Fenix', '5426077', '2458472/X', 'PLUG-EXPANSION ', 3, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010004', 'Fenix', '5426077', '1483483', 'PLUG ', 4, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010005', 'Fenix', '5426077', '9J8126', 'PLUG-NPTF ', 4, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010006', 'Fenix', '5426077', '3J7354', 'SEAL-O-RING-STOR', 4, 'A', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010007', 'Fenix', '5426077', '9S8002', 'PLUG-LD STOR ', 4, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010008', 'Fenix', '5426077', '2608590', 'VALVE GP-SHTL -B', 3, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010009', 'Fenix', '5426077', '4812471', '2', 4, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010010', 'Fenix', '5426077', '4812473', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010011', 'Fenix', '5426077', '4841390', 'PLUG AS ', 3, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010012', 'Fenix', '5426077', '9T8685', 'VALVE ', 4, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010013', 'Fenix', '5426077', '2N7029', 'SPRING-CONT PIN ', 4, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879967010014', 'Fenix', '5426077', '3788543', 'PLUG ', 4, 'B', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879969010000', 'Fenix', '5426077', '3D2824', 'SEAL-O-RING-STOR', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879969010001', 'Fenix', '5426077', '3J1907', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879969010002', 'Fenix', '5426077', '3603692', 'PLUG-HD STOR ', 2, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879970010000', 'Fenix', '5426077', '4681136', 'SPRING ', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010000', 'Fenix', '5426077', '7J9933', 'SEAL-O RING ', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010001', 'Fenix', '5426077', '4K1388', 'SEAL-O-RING-STOR', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010002', 'Fenix', '5426077', '4829841', 'RING-BACKUP ', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010003', 'Fenix', '5426077', '5Y2425/G', 'WASHER-SOFT ', 8, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010004', 'Fenix', '5426077', '6293326', 'VALVE ', 4, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010005', 'Fenix', '5426077', '4681138', 'PLUG-RETAINER ', 3, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010006', 'Fenix', '5426077', '4681139', 'PLUG-RETAINER ', 1, 'C', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879971010007', 'Fenix', '5426077', '5112163', 'VALVE GP-RLF -A', 1, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010000', 'Fenix', '5426077', '5J1391', 'SPRING ', 3, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010001', 'Fenix', '5426077', '4T0993', 'RETAINER ', 10, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010002', 'Fenix', '5426077', '4T1021', 'RETAINER ', 6, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010003', 'Fenix', '5426077', '1879630', 'SEAL-O-RING ', 2, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010004', 'Fenix', '5426077', '5078902', 'HOUSING ', 1, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010005', 'Fenix', '5426077', '4908811', 'HOUSING ', 1, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010006', 'Fenix', '5426077', '3J7694', 'SPRING ', 1, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010007', 'Fenix', '5426077', '1H1023', 'SEAL-O RING ', 2, 'D', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010008', 'Fenix', '5426077', '4T2691', 'VALVE', 4, 'E', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010009', 'Fenix', '5426077', '8T4224', 'WASHER-HARD ', 8, 'F', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010010', 'Fenix', '5426077', '7X2539', 'BOLT-HEX HEAD ', 4, 'F', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010011', 'Fenix', '5426077', '7X2538', 'BOLT-HEX HEAD ', 4, 'F', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010012', 'Fenix', '5426077', '4T1850', 'HOUSING ', 3, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010013', 'Fenix', '5426077', '2D0598', 'SEAL-O RING ', 3, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010014', 'Fenix', '5426077', '1483483', 'PLUG ', 3, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010015', 'Fenix', '5426077', '9T4697', '橡胶护套', 4, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010016', 'Fenix', '5426077', '9T4685', '垫片', 12, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010017', 'Fenix', '5426077', '4T0998', '橡胶护套', 3, 'G', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010018', 'Fenix', '5426077', '6429806', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010019', 'Fenix', '5426077', '6429805', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010020', 'Fenix', '5426077', '6429804', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010021', 'Fenix', '5426077', '8T4224', 'WASHER-HARD ', 6, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010022', 'Fenix', '5426077', '6E4139', 'VALVE GP-D RLF-B', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010023', 'Fenix', '5426077', '7J0204', 'SEAL-O-RING ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010024', 'Fenix', '5426077', '5078901', 'BOLT ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010025', 'Fenix', '5426077', '4T1855', 'DETENT ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010026', 'Fenix', '5426077', '4T1849', 'HOUSING ', 1, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010027', 'Fenix', '5426077', '0993649', 'BOLT-HEX HEAD ', 6, 'H', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010028', 'Fenix', '5426077', '2D0598', 'SEAL-O RING ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010029', 'Fenix', '5426077', '1089402', 'SPRING ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010030', 'Fenix', '5426077', '2D6642', 'BALL ', 6, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010031', 'Fenix', '5426077', '4L7711', 'SEAL-O RING ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010032', 'Fenix', '5426077', '4T1851', 'RETAINER ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010033', 'Fenix', '5426077', '4T1852', 'RETAINER ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010034', 'Fenix', '5426077', '1082989', 'BOLT-HEX HEAD ', 2, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010035', 'Fenix', '5426077', '6429803', 'PLATE-IDENT ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010036', 'Fenix', '5426077', '8T4224', 'WASHER-HARD ', 2, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010037', 'Fenix', '5426077', '6V0852', 'CAP-DUST ', 1, 'I', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010038', 'Fenix', '5426077', '1061791', 'SWITCH GP ', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010039', 'Fenix', '5426077', '8T0151', 'ADAPTER-STR ', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010040', 'Fenix', '5426077', '3J1907', 'SEAL-O-RING-STOR', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010041', 'Fenix', '5426077', '6V3965', 'ADAPTER-STR ', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010042', 'Fenix', '5426077', '2147568', 'SEAL-O-RING-STOR', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010043', 'Fenix', '5426077', '5112253', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010044', 'Fenix', '5426077', '4J0520', 'SEAL-O-RING ', 8, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010045', 'Fenix', '5426077', '5H4019', 'COVER ', 8, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010046', 'Fenix', '5426077', '3K0360', 'SEAL-O-RING-STOR', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010047', 'Fenix', '5426077', '9S4185', 'PLUG-LD STOR ', 1, 'J', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010048', 'Fenix', '5426077', '5334159', 'Bolt AS', 32, 'K', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010049', 'Fenix', '5426077', '4805267', 'CLIP-LIFT ', 2, 'K', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010050', 'Fenix', '5426077', '8C3206', 'FLANGE-SPLIT ', 16, 'K', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010051', 'Fenix', '5426077', '5426076', 'PLATE-IDENT ', 1, 'K', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010052', 'Fenix', '5426077', '5334159', 'Bolt AS', 8, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010053', 'Fenix', '5426077', '4J0520', 'SEAL-O-RING ', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010054', 'Fenix', '5426077', '5H4019', 'COVER ', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010055', 'Fenix', '5426077', '8C3206', 'FLANGE-SPLIT ', 2, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010056', 'Fenix', '5426077', '4J0522', 'SEAL-O-RING ', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010057', 'Fenix', '5426077', '5H4020', 'FLANGE-COVER ', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010058', 'Fenix', '5426077', '1P4578', 'FLANGE-SPLIT ', 2, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010059', 'Fenix', '5426077', '2965987', 'PLUG ', 2, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010060', 'Fenix', '5426077', '8T4195', 'BOLT-HEX HEAD ', 2, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010061', 'Fenix', '5426077', '2660531', 'CAP-CONNECTOR', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010062', 'Fenix', '5426077', '8T4121', 'WASHER-HARD ', 3, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010063', 'Fenix', '5426077', '8T4136', 'BOLT-HEX HEAD ', 1, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010064', 'Fenix', '5426077', '8T4139', 'BOLT-HEX HEAD ', 3, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010065', 'Fenix', '5426077', '8T4223', 'WASHER-HARD ', 3, 'L', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010066', 'Fenix', '5426077', '5806445', '阀芯', 1, 'M', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010067', 'Fenix', '5426077', '5806446', '阀芯', 1, 'M', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010068', 'Fenix', '5426077', '5806447', '阀芯', 1, 'M', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743054879972010069', 'Fenix', '5426077', '5806448', '阀芯', 1, 'M', 1, '2025-03-27 13:54:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010000', 'EH-Steering', '5215592', '6024220', 'VALVE GP-CHECK-E', 1, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010001', 'EH-Steering', '5215592', '2828827', 'PLUG ', 2, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010002', 'EH-Steering', '5215592', '2458472/X', 'PLUG-EXPANSION ', 2, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010003', 'EH-Steering', '5215592', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010004', 'EH-Steering', '5215592', '9S8006', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010005', 'EH-Steering', '5215592', '4J5309', 'SEAL-O RING ', 2, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010006', 'EH-Steering', '5215592', '2976291', 'PLUG ', 7, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010007', 'EH-Steering', '5215592', '3341673', 'BOLT-HEX SKT HD ', 4, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010008', 'EH-Steering', '5215592', '3133966', 'VALVE GP-SHUTTLE', 2, 'A', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010009', 'EH-Steering', '5215592', '1919247', 'WASHER ', 2, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010010', 'EH-Steering', '5215592', '1982914', 'NUT-HEXAGON ', 2, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010011', 'EH-Steering', '5215592', '3128629', 'COIL AS ', 2, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010012', 'EH-Steering', '5215592', '3161438', 'CARTRIDGE AS ', 2, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010013', 'EH-Steering', '5215592', '3617213', 'CARTRIDGE AS ', 2, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010014', 'EH-Steering', '5215592', '4168195', 'VALVE GP-SOL ', 1, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010015', 'EH-Steering', '5215592', '5215588', 'VALVE GP-P RLF-A', 3, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010016', 'EH-Steering', '5215592', '2608590', 'VALVE GP-SHTL -B', 1, 'B', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010017', 'EH-Steering', '5215592', '6V5597', 'SEAL-O RING ', 2, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010018', 'EH-Steering', '5215592', '1012862', 'DOWEL ', 2, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010019', 'EH-Steering', '5215592', '6V8653', 'BOLT-SOCKET HD ', 4, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010020', 'EH-Steering', '5215592', '3497431', 'HOUSING-SENSOR ', 1, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010021', 'EH-Steering', '5215592', '0951582/HE', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010022', 'EH-Steering', '5215592', '4612544', 'SENSOR AS-SPOOL ', 1, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010023', 'EH-Steering', '5215592', '3294603', 'RETAINER ', 2, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010024', 'EH-Steering', '5215592', '3278527', 'SPRING ', 1, 'C', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010025', 'EH-Steering', '5215592', '1749194', 'BOLT-HEX FLG HD ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010026', 'EH-Steering', '5215592', '3410825', 'PROBE AS-SPOOL ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010027', 'EH-Steering', '5215592', '8T2396', 'BOLT-SOCKET HD ', 2, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010028', 'EH-Steering', '5215592', '9X8256', 'WASHER ', 2, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010029', 'EH-Steering', '5215592', '4989726', 'HOUSING-SPRING ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010030', 'EH-Steering', '5215592', '3J1907', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010031', 'EH-Steering', '5215592', '9S8004', 'PLUG-LD STOR ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010032', 'EH-Steering', '5215592', '5215607', 'PLATE-IDENT ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010033', 'EH-Steering', '5215592', '3676002', 'PLUG AS-HD', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010034', 'EH-Steering', '5215592', '2304013', 'PLUG AS-CONN ', 1, 'D', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010035', 'EH-Steering', '5215592', '8T8737', 'PLUG-SEAL ', 5, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010036', 'EH-Steering', '5215592', '2304011', 'PLUG AS-CONN ', 1, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010037', 'EH-Steering', '5215592', '2660531', 'CAP-CONNECTOR ', 2, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010038', 'EH-Steering', '5215592', '3331701', 'PLUG ', 3, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010039', 'EH-Steering', '5215592', '2965987', 'PLUG ', 2, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010040', 'EH-Steering', '5215592', '7J3554', 'COVER ', 4, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010041', 'EH-Steering', '5215592', '8T4137', 'BOLT-HEX HEAD ', 8, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010042', 'EH-Steering', '5215592', '2D0094', 'GASKET ', 4, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055000201010043', 'EH-Steering', '5215592', '7S0530', 'CLIP ', 1, 'E', 1, '2025-03-27 13:56:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010000', 'Fenix', '5872375', '4J8997', 'SEAL-O-RING ', 15, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010001', 'Fenix', '5872375', '6V5555', 'SEAL-O RING ', 15, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010002', 'Fenix', '5872375', '6V8149', 'NUT-HEX ', 3, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010003', 'Fenix', '5872375', '8T0106', 'BOLT ', 3, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010004', 'Fenix', '5872375', '8T4223', 'WASHER-HARD ', 6, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010005', 'Fenix', '5872375', '2828827', 'PLUG-EXPANSION ', 2, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010006', 'Fenix', '5872375', '1483483', 'PLUG ', 4, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010007', 'Fenix', '5872375', '4D0514', 'PLUG-PTF ', 4, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010008', 'Fenix', '5872375', '9J8126', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010009', 'Fenix', '5872375', '9S8002', 'PLUG-LD STOR ', 5, 'A', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010010', 'Fenix', '5872375', '3J7354', 'SEAL-O-RING-STOR', 5, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010011', 'Fenix', '5872375', '9T8685', 'VALVE ', 5, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010012', 'Fenix', '5872375', '2N7029', 'SPRING-CONT PIN ', 5, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010013', 'Fenix', '5872375', '3788543', 'PLUG ', 5, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010014', 'Fenix', '5872375', '3D2824', 'SEAL-O-RING-STOR', 5, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010015', 'Fenix', '5872375', '4841390', 'PLUG AS ', 3, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010016', 'Fenix', '5872375', '4812471', 'VALVE GP-CHECK ', 1, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010017', 'Fenix', '5872375', '4812473', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010018', 'Fenix', '5872375', '5127785', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010019', 'Fenix', '5872375', '4812471', 'VALVE GP-CHECK ', 4, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010020', 'Fenix', '5872375', '1483483', 'PLUG ', 5, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010021', 'Fenix', '5872375', '2828827', 'PLUG-EXPANSION ', 6, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010022', 'Fenix', '5872375', '2608590', 'VALVE GP-SHTL -B', 3, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010023', 'Fenix', '5872375', '9S8002', 'PLUG-LD STOR ', 1, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010024', 'Fenix', '5872375', '3J7354', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010025', 'Fenix', '5872375', '4681138', 'PLUG-RETAINER ', 4, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010026', 'Fenix', '5872375', '4K1388', 'SEAL-O-RING-STOR', 5, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010027', 'Fenix', '5872375', '4829841', 'RING-BACKUP ', 5, 'C', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010028', 'Fenix', '5872375', '7J9933', 'SEAL-O RING ', 5, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010029', 'Fenix', '5872375', '2S2596', 'SPRING ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010030', 'Fenix', '5872375', '1008010', 'VALVE ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010031', 'Fenix', '5872375', '7M8485', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010032', 'Fenix', '5872375', '1008011', 'PLUG ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010033', 'Fenix', '5872375', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010034', 'Fenix', '5872375', '6V3965', 'ADAPTER-STR ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010035', 'Fenix', '5872375', '6V0852', 'CAP-DUST ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010036', 'Fenix', '5872375', '5Y2425', 'WASHER-SOFT ', 2, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010037', 'Fenix', '5872375', '4681136', 'SPRING ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010038', 'Fenix', '5872375', '5010642', 'VALVE GP-RLF -A', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010039', 'Fenix', '5872375', '4681139', 'PLUG-RETAINER ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010040', 'Fenix', '5872375', '6293326', 'VALVE ', 1, 'D', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010041', 'Fenix', '5872375', '4681142', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010042', 'Fenix', '5872375', '4681134', 'SPRING ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010043', 'Fenix', '5872375', '4681133', 'SPRING ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010044', 'Fenix', '5872375', '4681143', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010045', 'Fenix', '5872375', '4681144', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010046', 'Fenix', '5872375', '2098296', 'BOLT-HEX SOCKET ', 1, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010047', 'Fenix', '5872375', '4681141', 'RETAINER ', 8, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010048', 'Fenix', '5872375', '4681135', 'SPRING ', 4, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010049', 'Fenix', '5872375', '4681145', 'BOLT-FLAT ', 4, 'E', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010050', 'Fenix', '5872375', '4908810', 'HOUSING ', 2, 'F', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010051', 'Fenix', '5872375', '2Y2347', 'SEAL-O-RING ', 2, 'F', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010052', 'Fenix', '5872375', '1H1023', 'SEAL-O RING ', 2, 'F', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010053', 'Fenix', '5872375', '4681340', 'HOUSING ', 1, 'F', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010054', 'Fenix', '5872375', '4681339', 'HOUSING ', 4, 'F', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010055', 'Fenix', '5872375', '7X0465', 'BOLT-HEX HEAD ', 2, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010056', 'Fenix', '5872375', '9X8256', 'WASHER ', 20, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010057', 'Fenix', '5872375', '3P1979', 'SEAL-O-RING ', 5, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010058', 'Fenix', '5872375', '7X2535', 'BOLT-HEX HEAD ', 10, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010059', 'Fenix', '5872375', '7X5315', 'COUPLING-QDISC ', 5, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010060', 'Fenix', '5872375', '7X7888', 'BOLT-HEX HEAD ', 4, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010061', 'Fenix', '5872375', '1323877', 'BOLT-HEX HEAD ', 4, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010062', 'Fenix', '5872375', '1483483', 'PLUG ', 5, 'G', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010063', 'Fenix', '5872375', '4689932', 'MANIFOLD GP-CONT', 5, 'H', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010064', 'Fenix', '5872375', '3338242', 'VALVE GP-SOL ', 1, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010065', 'Fenix', '5872375', '5668578', 'VALVE GP-D RLF-B', 1, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010066', 'Fenix', '5872375', '3603692', 'PLUG-HD STOR ', 7, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010067', 'Fenix', '5872375', '3J1907', 'SEAL-O-RING-STOR', 7, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010068', 'Fenix', '5872375', '6V3965', 'ADAPTER-STR ', 1, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010069', 'Fenix', '5872375', '2147568', 'SEAL-O-RING-STOR', 1, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010070', 'Fenix', '5872375', '6V0852', 'CAP-DUST ', 1, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010071', 'Fenix', '5872375', '7X5315', 'COUPLING-QDISC ', 5, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010072', 'Fenix', '5872375', '7X5308', 'CAP-DUST ', 10, 'I', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010073', 'Fenix', '5872375', '9S4185', 'PLUG-LD STOR ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010074', 'Fenix', '5872375', '3K0360', 'SEAL-O-RING ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010075', 'Fenix', '5872375', '5872367', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010076', 'Fenix', '5872375', '4993694', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010077', 'Fenix', '5872375', '4993695', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010078', 'Fenix', '5872375', '4993696', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010079', 'Fenix', '5872375', '5702554', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010080', 'Fenix', '5872375', '5872368', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010081', 'Fenix', '5872375', '5872373', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010082', 'Fenix', '5872375', '5H4019', 'COVER ', 10, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010083', 'Fenix', '5872375', '4J0520', 'SEAL-O-RING ', 10, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010084', 'Fenix', '5872375', '4805267', 'CLIP-LIFT ', 2, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010085', 'Fenix', '5872375', '8T4191', 'BOLT-HEX HEAD ', 2, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010086', 'Fenix', '5872375', '8T4121', 'WASHER-HARD ', 2, 'J', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010087', 'Fenix', '5872375', '8C3206', 'FLANGE-SPLIT ', 20, 'K', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010088', 'Fenix', '5872375', '5542333', 'CAP-CONNECTOR ', 10, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010089', 'Fenix', '5872375', '2660531', 'CAP-CONNECTOR ', 1, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010090', 'Fenix', '5872375', '2965987', 'PLUG ', 6, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010091', 'Fenix', '5872375', '1P4579', 'FLANGE-SPLIT ', 2, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010092', 'Fenix', '5872375', '2J2668', 'FLANGE-COVER ', 1, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010093', 'Fenix', '5872375', '4J0524', 'SEAL-O-RING ', 1, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010094', 'Fenix', '5872375', '8T4223', 'WASHER-HARD ', 4, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010095', 'Fenix', '5872375', '8T4183', 'BOLT-HEX HEAD ', 4, 'L', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010096', 'Fenix', '5872375', '6V0400', 'FLANGE-SPLIT ', 4, 'M', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010097', 'Fenix', '5872375', '8T4194', 'BOLT-HEX HEAD ', 8, 'M', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010098', 'Fenix', '5872375', '8T4223', 'WASHER-HARD ', 8, 'M', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010099', 'Fenix', '5872375', '1P3703', 'SEAL-RECTANGULAR', 2, 'M', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010100', 'Fenix', '5872375', '5P0047', 'COVER ', 2, 'M', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010101', 'Fenix', '5872375', '4735263', 'STUD-STR THREAD ', 3, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010102', 'Fenix', '5872375', '4674761', 'STEM-LIFT ', 1, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010103', 'Fenix', '5872375', '4674762', 'STEM-TILT ', 1, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010104', 'Fenix', '5872375', '4674763', 'STEM-RIPPER LIFT', 1, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010105', 'Fenix', '5872375', '4674764', 'STEM-LIFT ', 1, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055490677010106', 'Fenix', '5872375', '4812466', 'STEM-RIPPER TIP ', 1, 'N', 1, '2025-03-27 14:04:51', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010000', 'Fenix', '6223020', '4J8997', 'SEAL-O-RING ', 5, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010001', 'Fenix', '6223020', '6V5555', 'SEAL-O RING ', 15, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010002', 'Fenix', '6223020', '6V8149', 'NUT-HEX ', 3, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010003', 'Fenix', '6223020', '4823555', 'BOLT ', 3, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010004', 'Fenix', '6223020', '8T4223', 'WASHER-HARD ', 6, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010005', 'Fenix', '6223020', '2828827', 'PLUG-EXPANSION ', 1, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010006', 'Fenix', '6223020', '1483483', 'PLUG ', 4, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983192010007', 'Fenix', '6223020', '4D0514', 'PLUG-PTF ', 4, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010000', 'Fenix', '6223020', '9J8126', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010001', 'Fenix', '6223020', '9S8002', 'PLUG-LD STOR ', 5, 'A', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010002', 'Fenix', '6223020', '3J7354', 'SEAL-O-RING-STOR', 5, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010003', 'Fenix', '6223020', '9T8685', 'VALVE ', 1, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010004', 'Fenix', '6223020', '2N7029', 'SPRING-CONT PIN ', 5, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010005', 'Fenix', '6223020', '3788543', 'PLUG ', 5, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010006', 'Fenix', '6223020', '3D2824', 'SEAL-O-RING-STOR', 5, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010007', 'Fenix', '6223020', '4841390', 'PLUG AS ', 3, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010008', 'Fenix', '6223020', '4812471', 'VALVE GP-CHECK ', 1, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010009', 'Fenix', '6223020', '4812473', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010010', 'Fenix', '6223020', '5127785', 'VALVE GP-P RLF-B', 1, 'B', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010011', 'Fenix', '6223020', '4812471', 'VALVE GP-CHECK ', 4, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010012', 'Fenix', '6223020', '1483483', 'PLUG ', 5, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010013', 'Fenix', '6223020', '2828827', 'PLUG-EXPANSION ', 11, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010014', 'Fenix', '6223020', '2608590', 'VALVE GP-SHTL -B', 3, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010015', 'Fenix', '6223020', '9S8002', 'PLUG-LD STOR ', 1, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010016', 'Fenix', '6223020', '3J7354', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010017', 'Fenix', '6223020', '4681138', 'PLUG-RETAINER ', 4, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983193010018', 'Fenix', '6223020', '4K1388', 'SEAL-O-RING-STOR', 5, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010000', 'Fenix', '6223020', '4829841', 'RING-BACKUP ', 5, 'C', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010001', 'Fenix', '6223020', '7J9933', 'SEAL-O RING ', 4, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010002', 'Fenix', '6223020', '2N7029', 'SPRING ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010003', 'Fenix', '6223020', '6152334', 'VALVE ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010004', 'Fenix', '6223020', '3D2824', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010005', 'Fenix', '6223020', '3788543', 'PLUG ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010006', 'Fenix', '6223020', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010007', 'Fenix', '6223020', '6V3965', 'ADAPTER-STR ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010008', 'Fenix', '6223020', '6V0852', 'CAP-DUST ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010009', 'Fenix', '6223020', '6293326', 'VALVE ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010010', 'Fenix', '6223020', '4681139', 'PLUG-RETAINER ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010011', 'Fenix', '6223020', '5Y2425', 'WASHER-SOFT ', 2, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010012', 'Fenix', '6223020', '4681136', 'SPRING ', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010013', 'Fenix', '6223020', '5010642', 'VALVE GP-RLF -A', 1, 'D', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010014', 'Fenix', '6223020', '4681142', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010015', 'Fenix', '6223020', '4681134', 'SPRING ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010016', 'Fenix', '6223020', '4681133', 'SPRING ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010017', 'Fenix', '6223020', '4681143', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010018', 'Fenix', '6223020', '4681144', 'RETAINER ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983194010019', 'Fenix', '6223020', '2098296', 'BOLT-HEX SOCKET ', 1, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010000', 'Fenix', '6223020', '4681141', 'RETAINER ', 8, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010001', 'Fenix', '6223020', '4681135', 'SPRING ', 4, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010002', 'Fenix', '6223020', '4681145', 'BOLT-FLAT ', 4, 'E', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010003', 'Fenix', '6223020', '4908810', 'HOUSING ', 2, 'F', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010004', 'Fenix', '6223020', '2Y2347', 'SEAL-O-RING ', 2, 'F', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010005', 'Fenix', '6223020', '1H1023', 'SEAL-O RING ', 2, 'F', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010006', 'Fenix', '6223020', '4681340', 'HOUSING ', 1, 'F', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010007', 'Fenix', '6223020', '4681339', 'HOUSING ', 4, 'F', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010008', 'Fenix', '6223020', '7X0465', 'BOLT-HEX HEAD ', 2, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010009', 'Fenix', '6223020', '3P1979', 'SEAL-O-RING ', 5, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010010', 'Fenix', '6223020', '7X7888', 'BOLT-HEX HEAD ', 4, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010011', 'Fenix', '6223020', '1323877/EY', 'BOLT-HEX HEAD ', 4, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010012', 'Fenix', '6223020', '1483483', 'PLUG ', 5, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010013', 'Fenix', '6223020', '7X2535', 'BOLT-HEX HEAD ', 10, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010014', 'Fenix', '6223020', '9X8256', 'WASHER ', 20, 'G', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010015', 'Fenix', '6223020', '4689932', 'MANIFOLD GP-CONT', 5, 'H', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983195010016', 'Fenix', '6223020', '7X5315', 'COUPLING-QDISC ', 10, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010000', 'Fenix', '6223020', '7X5308', 'CAP-DUST ', 10, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010001', 'Fenix', '6223020', '3338242', 'VALVE GP-SOL ', 1, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010002', 'Fenix', '6223020', '5668578', 'VALVE GP-D RLF-B', 1, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010003', 'Fenix', '6223020', '3603692', 'PLUG-HD STOR ', 7, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010004', 'Fenix', '6223020', '3J1907', 'SEAL-O-RING-STOR', 7, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010005', 'Fenix', '6223020', '6V3965', 'ADAPTER-STR ', 1, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010006', 'Fenix', '6223020', '2147568', 'SEAL-O-RING-STOR', 1, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010007', 'Fenix', '6223020', '6V0852', 'CAP-DUST ', 1, 'I', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010008', 'Fenix', '6223020', '9S4185', 'PLUG-LD STOR ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010009', 'Fenix', '6223020', '3K0360', 'SEAL-O-RING ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010010', 'Fenix', '6223020', '6223005', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010011', 'Fenix', '6223020', '6223006', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010012', 'Fenix', '6223020', '6223007', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010013', 'Fenix', '6223020', '6223008', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010014', 'Fenix', '6223020', '6223009', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010015', 'Fenix', '6223020', '6418296', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010016', 'Fenix', '6223020', '6223022', 'PLATE-IDENT ', 1, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010017', 'Fenix', '6223020', '5H4019', 'COVER ', 10, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010018', 'Fenix', '6223020', '4J0520', 'SEAL-O-RING ', 10, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983196010019', 'Fenix', '6223020', '4805267', 'CLIP-LIFT ', 2, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010000', 'Fenix', '6223020', '8T4191', 'BOLT-HEX HEAD ', 2, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010001', 'Fenix', '6223020', '8T4121', 'WASHER-HARD ', 2, 'J', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010002', 'Fenix', '6223020', '8C3206', 'FLANGE-SPLIT ', 20, 'K', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010003', 'Fenix', '6223020', '5334159', 'BOLT-AS ', 40, 'K', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010004', 'Fenix', '6223020', '5542333/HE', 'CAP-CONNECTOR ', 10, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010005', 'Fenix', '6223020', '2660531', 'CAP-CONNECTOR ', 1, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010006', 'Fenix', '6223020', '2965987', 'PLUG ', 6, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010007', 'Fenix', '6223020', '1P4579', 'FLANGE-SPLIT ', 2, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010008', 'Fenix', '6223020', '2J2668', 'FLANGE-COVER ', 1, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010009', 'Fenix', '6223020', '4J0524', 'SEAL-O-RING ', 1, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010010', 'Fenix', '6223020', '8T4223', 'WASHER-HARD ', 4, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010011', 'Fenix', '6223020', '8T4183', 'BOLT-HEX HEAD ', 4, 'L', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010012', 'Fenix', '6223020', '6V0400', 'FLANGE-SPLIT ', 4, 'M', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010013', 'Fenix', '6223020', '8T4194', 'BOLT-HEX HEAD ', 8, 'M', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010014', 'Fenix', '6223020', '8T4223', 'WASHER-HARD ', 8, 'M', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010015', 'Fenix', '6223020', '1P3703', 'SEAL-RECTANGULAR', 2, 'M', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010016', 'Fenix', '6223020', '5P0047', 'COVER ', 2, 'M', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010017', 'Fenix', '6223020', '4735263', 'STUD-STR THREAD ', 3, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010018', 'Fenix', '6223020', '4J5573', 'SEAL-O-RING ', 10, 'O', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010019', 'Fenix', '6223020', '6152334', 'VALVE ', 4, 'O', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983197010020', 'Fenix', '6223020', '3613549', 'SEAL', 1, 'O', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983198010000', 'Fenix', '6223020', '6152335', 'STEM-LIFT ', 1, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983198010001', 'Fenix', '6223020', '6293327', 'STEM-TILT ', 1, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983198010002', 'Fenix', '6223020', '6152336', 'STEM-RIPPER LIFT', 1, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983198010003', 'Fenix', '6223020', '6152339', 'STEM-LIFT ', 1, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743055983198010004', 'Fenix', '6223020', '6152337', 'STEM-RIPPER TIP ', 1, 'N', 1, '2025-03-27 14:13:03', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010000', 'B Segment', '9T8991', '9J8126', '节流阀', 1, 'A', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010001', 'B Segment', '9T8991', '7X0277', '螺钉', 2, 'A', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010002', 'B Segment', '9T8991', '8T4224', '垫片', 2, 'A', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010003', 'B Segment', '9T8991', '4T1860', '阀', 1, 'A', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010004', 'B Segment', '9T8991', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010005', 'B Segment', '9T8991', '4T1701', '弹簧', 1, 'B', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010006', 'B Segment', '9T8991', '8T2501', '螺钉', 2, 'B', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010007', 'B Segment', '9T8991', '4T1649', '端盖', 1, 'B', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010008', 'B Segment', '9T8991', '4T5795', '支承座', 2, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010009', 'B Segment', '9T8991', '9T4684', '端盖', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010010', 'B Segment', '9T8991', '9T4697', '防护圈', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010011', 'B Segment', '9T8991', '6V5391', '密封O型圈', 2, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010012', 'B Segment', '9T8991', '4T5945', '密封环', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010013', 'B Segment', '9T8991', '9T4683', '端盖', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010014', 'B Segment', '9T8991', '6E2007', '换向杆', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010015', 'B Segment', '9T8991', '5P5874', '密封O型圈', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010016', 'B Segment', '9T8991', '9H6761', '密封O型圈', 1, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192836010017', 'B Segment', '9T8991', '6L5897', '螺钉', 2, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010000', 'B Segment', '9T8991', '9T4685', '垫片', 3, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010001', 'B Segment', '9T8991', '8T0334', '垫片', 2, 'D', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010002', 'B Segment', '9T8991', '4T0993', '支承座', 2, 'E', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010003', 'B Segment', '9T8991', '9T2927', '支承座', 2, 'E', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010004', 'B Segment', '9T8991', '9T6394', '弹簧', 1, 'E', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010005', 'B Segment', '9T8991', '9T2092', '止爪', 1, 'E', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010006', 'B Segment', '9T8991', '9T2125', '支承座', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010007', 'B Segment', '9T8991', '2D6642', '钢球', 6, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010008', 'B Segment', '9T8991', '4T1851', '支撑座', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010009', 'B Segment', '9T8991', '4L7711', '密封O型圈', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010010', 'B Segment', '9T8991', '9T3976', '保持器', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010011', 'B Segment', '9T8991', '2D0598', '密封O型圈', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010012', 'B Segment', '9T8991', '9T0953', '弹簧', 1, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010013', 'B Segment', '9T8991', '5P2955', '螺钉', 2, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010014', 'B Segment', '9T8991', '8T4224', '垫片', 2, 'F', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010015', 'B Segment', '9T8991', '1425596', '铭牌', 1, 'G', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010016', 'B Segment', '9T8991', '4T1854', '端盖', 1, 'G', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010017', 'B Segment', '9T8991', '4T2692', '端盖', 1, 'H', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010018', 'B Segment', '9T8991', '1008012', '阀体', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010019', 'B Segment', '9T8991', '1008010', '阀', 2, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010020', 'B Segment', '9T8991', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010021', 'B Segment', '9T8991', '3603690', '堵头', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010022', 'B Segment', '9T8991', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010023', 'B Segment', '9T8991', '4J7533', '密封O型圈', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010024', 'B Segment', '9T8991', '9S8001', '堵头', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010025', 'B Segment', '9T8991', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010026', 'B Segment', '9T8991', '3670001', '堵头', 1, '预装配1', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010027', 'B Segment', '9T8991', '1008011', '堵头', 1, '预装配2', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010028', 'B Segment', '9T8991', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010029', 'B Segment', '9T8991', '2S2596', '弹簧', 2, '预装配2', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010030', 'B Segment', '9T8991', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010031', 'B Segment', '9T8991', '6V5556', '密封O型圈', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010032', 'B Segment', '9T8991', '4T5074', '密封环', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010033', 'B Segment', '9T8991', '4T4511', '导套', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010034', 'B Segment', '9T8991', '9T2093', '螺钉', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010035', 'B Segment', '9T8991', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010036', 'B Segment', '9T8991', '4J5351', '密封O型圈', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010037', 'B Segment', '9T8991', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148192837010038', 'B Segment', '9T8991', '4T5072', '密封环', 1, '预装配3', 6, '2025-03-28 15:49:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211457010000', 'B Segment', '2714969', '9J8126', '节流阀', 1, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010000', 'B Segment', '2714969', '4T1860', '阀', 1, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010001', 'B Segment', '2714969', '2739632', '铭牌', 1, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010002', 'B Segment', '2714969', '1027365', '螺钉', 2, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010003', 'B Segment', '2714969', '3676002', '堵头', 1, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010004', 'B Segment', '2714969', '3676001', '堵头', 1, 'A', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010005', 'B Segment', '2714969', '1216650', '溢流阀', 1, 'B', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010006', 'B Segment', '2714969', '9X2027', '垫片', 2, 'B', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010007', 'B Segment', '2714969', '0858091', '螺钉', 2, 'B', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010008', 'B Segment', '2714969', '1239624', '弹簧', 1, 'C', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010009', 'B Segment', '2714969', '1730514', '端盖', 1, 'C', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010010', 'B Segment', '2714969', '6V5192', '螺钉', 2, 'C', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010011', 'B Segment', '2714969', '5M2057', '密封O型圈', 2, 'C', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010012', 'B Segment', '2714969', '4T4631', '弹簧', 1, 'D', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010013', 'B Segment', '2714969', '1536976', '弹簧', 1, 'D', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010014', 'B Segment', '2714969', '1537067', '弹簧座', 1, 'D', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010015', 'B Segment', '2714969', '1537551', '弹簧座', 1, 'D', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010016', 'B Segment', '2714969', '5K0227', '密封O型圈', 1, 'E', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010017', 'B Segment', '2714969', '1730511', '端盖', 1, 'F', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010018', 'B Segment', '2714969', '4T5073', '密封环', 2, '预装配1', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010019', 'B Segment', '2714969', '4T1108', '堵头', 1, '预装配1', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010020', 'B Segment', '2714969', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010021', 'B Segment', '2714969', '4J7533', '密封O型圈', 1, '预装配1', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010022', 'B Segment', '2714969', '9S8001', '堵头', 1, '预装配1', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010023', 'B Segment', '2714969', '1008011', '堵头', 1, '预装配2', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010024', 'B Segment', '2714969', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010025', 'B Segment', '2714969', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010026', 'B Segment', '2714969', '1008010', '阀', 1, '预装配2', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010027', 'B Segment', '2714969', '4T1108', '堵头', 1, '预装配2', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010028', 'B Segment', '2714969', '1612684', '螺钉', 1, '预装配3', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010029', 'B Segment', '2714969', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010030', 'B Segment', '2714969', '4J5351', '密封O型圈', 2, '预装配3', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010031', 'B Segment', '2714969', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148211458010032', 'B Segment', '2714969', '4T5072', '密封环', 2, '预装配3', 6, '2025-03-28 15:50:11', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010000', 'B Segment', '6E1359', '9J8126', '节流阀', 1, 'A', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010001', 'B Segment', '6E1359', '7X0277', '螺钉', 2, 'A', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010002', 'B Segment', '6E1359', '8T4224', '垫片', 2, 'A', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010003', 'B Segment', '6E1359', '4T1860', '阀', 1, 'A', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010004', 'B Segment', '6E1359', '5M2057', '密封O型圈', 1, 'B', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010005', 'B Segment', '6E1359', '4T1701', '弹簧', 1, 'B', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010006', 'B Segment', '6E1359', '8T2501', '螺钉', 2, 'B', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010007', 'B Segment', '6E1359', '4T1649', '端盖', 1, 'B', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010008', 'B Segment', '6E1359', '4T5795', '支承座', 2, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010009', 'B Segment', '6E1359', '9T4684', '端盖', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010010', 'B Segment', '6E1359', '9T4697', '防护圈', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010011', 'B Segment', '6E1359', '6V5391', '密封O型圈', 2, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010012', 'B Segment', '6E1359', '4T5945', '密封环', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010013', 'B Segment', '6E1359', '9T4683', '端盖', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010014', 'B Segment', '6E1359', '4T0998', '换向杆', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010015', 'B Segment', '6E1359', '5P5874', '密封O型圈', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010016', 'B Segment', '6E1359', '9H6761', '密封O型圈', 1, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010017', 'B Segment', '6E1359', '6L5897', '螺钉', 2, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010018', 'B Segment', '6E1359', '9T4685', '垫片', 3, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010019', 'B Segment', '6E1359', '8T0334', '垫片', 2, 'D', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010020', 'B Segment', '6E1359', '4T1021', '支承座', 2, 'E', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227272010021', 'B Segment', '6E1359', '5J1391', '弹簧', 1, 'E', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010000', 'B Segment', '6E1359', '4T0993', '支承座', 2, 'E', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010001', 'B Segment', '6E1359', '2D0598', '密封O型圈', 1, 'F', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010002', 'B Segment', '6E1359', '4T1850', '端盖', 1, 'F', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010003', 'B Segment', '6E1359', '1425580', '铭牌', 1, 'F', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010004', 'B Segment', '6E1359', '8C3121', '螺钉', 2, 'F', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010005', 'B Segment', '6E1359', '8T4224', '垫片', 2, 'F', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010006', 'B Segment', '6E1359', '4T2692', '端盖', 1, 'G', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010007', 'B Segment', '6E1359', '9S4182', '堵头', 1, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010008', 'B Segment', '6E1359', '9S8001', '堵头', 2, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010009', 'B Segment', '6E1359', '4T5073', '塑料密封圈', 2, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010010', 'B Segment', '6E1359', '3J7354', 'O型圈', 1, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010011', 'B Segment', '6E1359', '4J7533', '橡胶密封圈', 2, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010012', 'B Segment', '6E1359', '7J9933', 'SEAL-O RING', 2, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010013', 'B Segment', '6E1359', '4T1108', '轴套', 1, '预装配1', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010014', 'B Segment', '6E1359', '1008010', 'SLEEVE', 1, '预装配2', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010015', 'B Segment', '6E1359', '7M8485', 'SEAL-O-RING-STOR', 1, '预装配2', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010016', 'B Segment', '6E1359', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010017', 'B Segment', '6E1359', '1008011', '螺堵', 1, '预装配2', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010018', 'B Segment', '6E1359', '4T1108', '螺堵', 1, '预装配2', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010019', 'B Segment', '6E1359', '4J5351', '橡胶密封圈', 2, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010020', 'B Segment', '6E1359', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010021', 'B Segment', '6E1359', '6V5556', 'SEAL-O RING ', 1, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010022', 'B Segment', '6E1359', '4T5072', '塑料密封圈', 2, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010023', 'B Segment', '6E1359', '4T4511', 'SLEEVE', 1, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010024', 'B Segment', '6E1359', '4T5074', '塑料密封圈', 1, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010025', 'B Segment', '6E1359', '1N5999', '螺堵', 1, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148227273010026', 'B Segment', '6E1359', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-03-28 15:50:27', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010000', 'B Segment', '2350404', '9J8126', '节流阀', 1, 'A', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010001', 'B Segment', '2350404', '4T1860', '阀', 1, 'A', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010002', 'B Segment', '2350404', '2350390', '铭牌', 1, 'A', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010003', 'B Segment', '2350404', '1027365', '螺钉', 2, 'A', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010004', 'B Segment', '2350404', '1216649', '溢流阀', 1, 'B', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010005', 'B Segment', '2350404', '9X2027', '垫片', 2, 'B', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010006', 'B Segment', '2350404', '0858091', '螺钉', 2, 'B', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010007', 'B Segment', '2350404', '1239624', '弹簧', 1, 'C', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010008', 'B Segment', '2350404', '1730514', '端盖', 1, 'C', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010009', 'B Segment', '2350404', '6V5192', '螺钉', 2, 'C', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010010', 'B Segment', '2350404', '5M2057', '密封O型圈', 2, 'C', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010011', 'B Segment', '2350404', '4T4631', '弹簧', 1, 'D', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010012', 'B Segment', '2350404', '1536976', '弹簧', 1, 'D', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010013', 'B Segment', '2350404', '1537067', '弹簧座', 1, 'D', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010014', 'B Segment', '2350404', '1537551', '弹簧座', 1, 'D', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010015', 'B Segment', '2350404', '5K0227', '密封O型圈', 1, 'E', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010016', 'B Segment', '2350404', '1730511', '端盖', 1, 'F', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010017', 'B Segment', '2350404', '9S8001', '堵头', 1, '预装配1', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010018', 'B Segment', '2350404', '4T5073', '塑料密封圈', 2, '预装配1', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010019', 'B Segment', '2350404', '4J7533', '橡胶密封圈', 1, '预装配1', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010020', 'B Segment', '2350404', '7J9933', 'SEAL-O RING', 2, '预装配1', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010021', 'B Segment', '2350404', '4T1108', 'VALVE ', 1, '预装配1', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010022', 'B Segment', '2350404', '1008010', 'VALVE ', 1, '预装配2', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010023', 'B Segment', '2350404', '7M8485', 'SEAL-O-RING-STOR', 1, '预装配2', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010024', 'B Segment', '2350404', '2S2596', '弹簧', 1, '预装配2', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010025', 'B Segment', '2350404', '1008011', 'PLUG', 1, '预装配2', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010026', 'B Segment', '2350404', '4T1108', 'VALVE ', 1, '预装配2', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010027', 'B Segment', '2350404', '4J5351', '橡胶密封圈', 2, '预装配3', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010028', 'B Segment', '2350404', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010029', 'B Segment', '2350404', '4T5072', '塑料密封圈', 2, '预装配3', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010030', 'B Segment', '2350404', '7J0204', 'O型圈', 1, '预装配3', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148244071010031', 'B Segment', '2350404', '1612684', '螺堵', 1, '预装配3', 6, '2025-03-28 15:50:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010000', 'Fenix', '5426075', '4J8997', 'SEAL-O-RING ', 9, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010001', 'Fenix', '5426075', '6V5555', 'SEAL-O RING ', 9, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010002', 'Fenix', '5426075', '4735264', 'BOLT ', 3, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010003', 'Fenix', '5426075', '8T4223', 'WASHER-HARD ', 3, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010004', 'Fenix', '5426075', '2828827', 'PLUG-EXPANSION ', 4, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010005', 'Fenix', '5426075', '2458472/X', 'PLUG-EXPANSION ', 4, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010006', 'Fenix', '5426075', '1483483', 'PLUG ', 4, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010007', 'Fenix', '5426075', '9J8126', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335391010008', 'Fenix', '5426075', '4D0514', 'PLUG-NPTF ', 2, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010000', 'Fenix', '5426075', '3J7354', 'SEAL-O-RING-STOR', 3, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010001', 'Fenix', '5426075', '9S8002', 'PLUG-LD STOR ', 3, 'A', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010002', 'Fenix', '5426075', '1014845', 'PLUG-NPTF ', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010003', 'Fenix', '5426075', '8T0151', 'ADAPTER-STR ', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010004', 'Fenix', '5426075', '3J1907', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010005', 'Fenix', '5426075', '9F2247', 'PLUG-NPTF ', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010006', 'Fenix', '5426075', '1J9671', 'SEAL-O-RING-STOR', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010007', 'Fenix', '5426075', '9S8003', 'PLUG-LD STOR ', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010008', 'Fenix', '5426075', '9T8685', 'VALVE ', 4, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010009', 'Fenix', '5426075', '2N7029', 'SPRING-CONT PIN ', 4, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010010', 'Fenix', '5426075', '3788543', 'PLUG ', 4, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010011', 'Fenix', '5426075', '3D2824', 'SEAL-O-RING-STOR', 4, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010012', 'Fenix', '5426075', '4812471', 'VALVE GP-CHECK ', 2, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010013', 'Fenix', '5426075', '4841390', 'PLUG AS ', 2, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010014', 'Fenix', '5426075', '3338242', 'VALVE GP-SOL ', 1, 'B', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010015', 'Fenix', '5426075', '6V3965', 'ADAPTER-STR ', 2, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010016', 'Fenix', '5426075', '2147568', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010017', 'Fenix', '5426075', '6V0852', 'CAP-DUST ', 2, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010018', 'Fenix', '5426075', '4841390', 'PLUG AS ', 1, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010019', 'Fenix', '5426075', '4812471', 'VALVE GP-CHECK ', 2, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010020', 'Fenix', '5426075', '4812473', 'VALVE GP-P RLF-B', 1, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010021', 'Fenix', '5426075', '2608590', 'VALVE GP-SHTL -B', 3, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010022', 'Fenix', '5426075', '4681138', 'PLUG-RETAINER ', 2, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010023', 'Fenix', '5426075', '5872371', 'PLUG-RETAINER ', 1, 'C', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010024', 'Fenix', '5426075', '5Y2425/G', 'WASHER-SOFT ', 2, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010025', 'Fenix', '5426075', '4681139', 'PLUG-RETAINER ', 1, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010026', 'Fenix', '5426075', '4681136', 'SPRING ', 1, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010027', 'Fenix', '5426075', '6293326', 'VALVE ', 1, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010028', 'Fenix', '5426075', '5112163', 'VALVE GP-RLF -A', 1, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010029', 'Fenix', '5426075', '6E4139 ', 'VALVE GP-D RLF-B', 1, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010030', 'Fenix', '5426075', '7J9933', 'SEAL-O RING ', 4, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010031', 'Fenix', '5426075', '4829841', 'RING-BACKUP ', 4, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010032', 'Fenix', '5426075', '4K1388', 'SEAL-O-RING-STOR', 4, 'D', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010033', 'Fenix', '5426075', '4681142', 'RETAINER ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010034', 'Fenix', '5426075', '4681134', 'SPRING ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010035', 'Fenix', '5426075', '4681133', 'SPRING ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010036', 'Fenix', '5426075', '4681143', 'RETAINER ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010037', 'Fenix', '5426075', '4681144', 'RETAINER ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010038', 'Fenix', '5426075', '2098296', 'BOLT-HEX SOCKET ', 1, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010039', 'Fenix', '5426075', '4681141', 'RETAINER ', 6, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010040', 'Fenix', '5426075', '4681135', 'SPRING ', 3, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010041', 'Fenix', '5426075', '4681145', 'BOLT-FLAT ', 3, 'E', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010042', 'Fenix', '5426075', '4681340', 'HOUSING ', 1, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010043', 'Fenix', '5426075', '7X0465', 'BOLT-HEX HEAD ', 2, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010044', 'Fenix', '5426075', '3P1979', 'SEAL-O-RING ', 4, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010045', 'Fenix', '5426075', '4681339', 'HOUSING ', 3, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010046', 'Fenix', '5426075', '7X7888', 'BOLT-HEX HEAD ', 6, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010047', 'Fenix', '5426075', '9X8256', 'WASHER ', 8, 'F', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010048', 'Fenix', '5426075', '4689932', 'MANIFOLD GP-CONT', 3, 'G', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010049', 'Fenix', '5426075', '7X2535', 'BOLT-HEX HEAD ', 6, 'G', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010050', 'Fenix', '5426075', '9X8256', 'WASHER ', 6, 'G', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010051', 'Fenix', '5426075', '1483483', 'PLUG ', 4, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010052', 'Fenix', '5426075', '7X5308', 'CAP-DUST ', 4, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010053', 'Fenix', '5426075', '5806452', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010054', 'Fenix', '5426075', '6429811', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335393010055', 'Fenix', '5426075', '7X5315', 'COUPLING-QDISC ', 4, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010000', 'Fenix', '5426075', '5129465', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010001', 'Fenix', '5426075', '5129466', 'PLATE-IDENT ', 1, 'H', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010002', 'Fenix', '5426075', '7X5308', 'CAP-DUST ', 4, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010003', 'Fenix', '5426075', '4689932', 'MANIFOLD GP-CONT', 1, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010004', 'Fenix', '5426075', '7X2535', 'BOLT-HEX HEAD ', 2, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010005', 'Fenix', '5426075', '9X8256', 'WASHER ', 2, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010006', 'Fenix', '5426075', '7X5315', 'COUPLING-QDISC ', 4, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010007', 'Fenix', '5426075', '3J1907', 'SEAL-O-RING-STOR', 3, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010008', 'Fenix', '5426075', '3603692', 'PLUG-HD STOR ', 3, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010009', 'Fenix', '5426075', '3K0360', 'SEAL-O-RING-STOR', 1, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010010', 'Fenix', '5426075', '9S4185', 'PLUG-LD STOR ', 1, 'I', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010011', 'Fenix', '5426075', '4805267', 'CLIP-LIFT ', 2, 'J', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010012', 'Fenix', '5426075', '4J0520', 'SEAL-O-RING ', 8, 'J', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010013', 'Fenix', '5426075', '5H4019', 'COVER ', 8, 'J', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010014', 'Fenix', '5426075', '8C3206', 'FLANGE-SPLIT ', 16, 'J', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010015', 'Fenix', '5426075', '5334159', 'Bolt AS', 32, 'J', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010016', 'Fenix', '5426075', '4J0520', 'SEAL-O-RING ', 1, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010017', 'Fenix', '5426075', '5334159', 'Bolt AS', 8, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010018', 'Fenix', '5426075', '5H4019', 'COVER ', 1, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010019', 'Fenix', '5426075', '8C3206', 'FLANGE-SPLIT ', 2, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010020', 'Fenix', '5426075', '4J0522', 'SEAL-O-RING ', 1, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010021', 'Fenix', '5426075', '5H4020', 'FLANGE-COVER ', 1, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010022', 'Fenix', '5426075', '1P4578', 'FLANGE-SPLIT ', 2, 'K', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010023', 'Fenix', '5426075', '2660531', 'CAP-CONNECTOR ', 1, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010024', 'Fenix', '5426075', '2965987', 'PLUG ', 4, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010025', 'Fenix', '5426075', '5542333/HE', 'CAP-CONNECTOR ', 8, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010026', 'Fenix', '5426075', '8T4195', 'BOLT-HEX HEAD ', 2, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010027', 'Fenix', '5426075', '8T4121', 'WASHER-HARD ', 3, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010028', 'Fenix', '5426075', '8T4136', 'BOLT-HEX HEAD ', 1, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010029', 'Fenix', '5426075', '8T4139', 'BOLT-HEX HEAD ', 3, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010030', 'Fenix', '5426075', '8T4223', 'WASHER-HARD ', 3, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010031', 'Fenix', '5426075', '5426074', 'PLATE-IDENT ', 1, 'L', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010032', 'Fenix', '5426075', '4681129', 'STEM-TILT ', 1, 'M', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010033', 'Fenix', '5426075', '4681130', 'STEM-RIPPER TIP ', 1, 'M', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010034', 'Fenix', '5426075', '4681131', 'STEM-RIPPER LIFT', 1, 'M', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743148335394010035', 'Fenix', '5426075', '5806451', 'STEM-LIFT ', 1, 'M', 1, '2025-03-28 15:52:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010000', 'MTV', '6128271', '4B9782', 'BALL', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010001', 'MTV', '6128271', '5S7906', 'STOP', 1, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010002', 'MTV', '6128271', '1J5799', 'PIN-SPRING', 1, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010003', 'MTV', '6128271', '8T6757', 'PLUG-NPTF', 3, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010004', 'MTV', '6128271', '3T9560', 'SPOOL', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010005', 'MTV', '6128271', '4B9880', 'BALL', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010006', 'MTV', '6128271', '3T9836', 'SPRING', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010007', 'MTV', '6128271', '1S1636', 'RETAINER', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046128010008', 'MTV', '6128271', '1S1638', 'RING-RETAINING', 2, 'A', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010000', 'MTV', '6128271', '5M2504', 'SLUG', 2, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010001', 'MTV', '6128271', '9G9226', 'SPRING', 2, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010002', 'MTV', '6128271', '1F8359', 'BALL', 1, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010003', 'MTV', '6128271', '1F8419', 'WASHER-VALVE', 1, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010004', 'MTV', '6128271', '9G9227', 'SPRING', 1, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010005', 'MTV', '6128271', '4H1349', 'DOWEL', 1, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010006', 'MTV', '6128271', '5P5846', 'SEAL-O-RING', 1, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010007', 'MTV', '6128271', '8M4988', 'SEAL-O RING', 6, 'B', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010008', 'MTV', '6128271', '0S1618', 'BOLT', 10, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010009', 'MTV', '6128271', '9M1974', 'WASHER-HARD', 10, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010010', 'MTV', '6128271', '9G9203', 'PLUG-STOP', 2, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010011', 'MTV', '6128271', '3J1907', 'SEAL-O-RING-STOR', 2, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010012', 'MTV', '6128271', '2L1699', 'PIN-SPRING', 1, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010013', 'MTV', '6128271', '9G9205', 'PISTON-LOAD', 1, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010014', 'MTV', '6128271', '8M5248', 'SEAL-O-RING', 1, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010015', 'MTV', '6128271', '1160118/HE', 'CLIP', 1, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010016', 'MTV', '6128271', '2577440', 'PLUG AS', 1, 'C', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010017', 'MTV', '6128271', '6V7418', 'PLUG-NPTF', 2, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010018', 'MTV', '6128271', '2K9111', 'PIN SPRING', 1, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010019', 'MTV', '6128271', '8M4436', 'SEAL-O-RING', 2, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010020', 'MTV', '6128271', '6T7532', 'SCREEN AS', 1, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010021', 'MTV', '6128271', '0S1590', 'BOLT', 2, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010022', 'MTV', '6128271', '5M2894', 'WASHER-HARD', 2, 'D', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010023', 'MTV', '6128271', '1726240', 'COVER', 1, 'D1', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010024', 'MTV', '6128271', '9G9201', 'SEAT', 1, 'D2', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010025', 'MTV', '6128271', '1726236', 'RETAINER', 1, 'D2', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010026', 'MTV', '6128271', '7S0530', 'CLIP', 1, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010027', 'MTV', '6128271', '6V3965', 'ADAPTER - STR', 2, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010028', 'MTV', '6128271', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010029', 'MTV', '6128271', '6V0852', 'CAP-DUST', 2, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010030', 'MTV', '6128271', '8M8282', 'SEAL-O RING', 5, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010031', 'MTV', '6128271', '0S1619', 'BOLT', 2, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010032', 'MTV', '6128271', '5M2894', 'WASHER-HARD', 2, 'E', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010033', 'MTV', '6128271', '3E8575', 'VALVE GP SOL', 1, 'F', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010034', 'MTV', '6128271', '6128272', 'VALVE GP-SOLENOID', 1, 'G', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010035', 'MTV', '6128271', '0L1143', 'BOLT', 2, 'G', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010036', 'MTV', '6128271', '5M2894', 'WASHER-HARD', 2, 'G', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010037', 'MTV', '6128271', '1160118/HE', 'CLIP', 1, 'G', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010038', 'MTV', '6128271', '6134697', 'PLATE-IDENTIFICATION', 1, 'G', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010039', 'MTV', '6128271', '5498842', 'PLUG', 4, 'H', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010040', 'MTV', '6128271', '1P1669', 'PLUG-SEALING', 1, 'I', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010041', 'MTV', '6128271', '3K0360', 'SEAL-O-RING-STOR', 1, 'I', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010042', 'MTV', '6128271', '1552267', 'PLUG AS-CONN', 1, 'I', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010043', 'MTV', '6128271', '1552272', 'PLUG AS-CONN', 1, 'I', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396046129010044', 'MTV', '6128271', '8T8737', 'PLUG-SEAL', 7, 'I', 6, '2025-03-31 12:40:46', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010000', 'MTV', '2549238', '5H8985', 'PIN-SPRING ', 1, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010001', 'MTV', '2549238', '8E8439', 'DOWEL ', 1, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010002', 'MTV', '2549238', '9S8001', 'PLUG-LD STOR ', 7, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010003', 'MTV', '2549238', '2385078', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010004', 'MTV', '2549238', '4B9880', 'BALL ', 2, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010005', 'MTV', '2549238', '8P7386', 'SPOOL ', 1, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010006', 'MTV', '2549238', '4M2381', 'SPRING ', 2, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010007', 'MTV', '2549238', '1S1636', 'RETAINER ', 2, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010008', 'MTV', '2549238', '1S1638', 'RING-RETAINING ', 2, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010009', 'MTV', '2549238', '6Y8049', 'SPOOL ', 1, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010010', 'MTV', '2549238', '5M2504', 'SLUG ', 2, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010011', 'MTV', '2549238', '2551197', 'PLATE-IDENT ', 1, 'A', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010012', 'MTV', '2549238', '9S8008', 'PLUG-LD STOR ', 3, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010013', 'MTV', '2549238', '2385082', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010014', 'MTV', '2549238', '9W7410', 'SPRING ', 1, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010015', 'MTV', '2549238', '6V3683', 'SEAL-O-RING ', 1, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010016', 'MTV', '2549238', '5J2721', 'SHIM ', 2, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010017', 'MTV', '2549238', '6J3993', 'SHIM ', 2, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010018', 'MTV', '2549238', '5J1036', 'SHIM ', 2, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010019', 'MTV', '2549238', '9M1974', 'WASHER-HARD ', 1, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010020', 'MTV', '2549238', '0S1618', 'BOLT ', 2, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010021', 'MTV', '2549238', '1305300', 'CLIP ', 1, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010022', 'MTV', '2549238', '9S8004', 'PLUG-LD STOR ', 3, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010023', 'MTV', '2549238', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010024', 'MTV', '2549238', '9P0683', 'SPRING ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010025', 'MTV', '2549238', '8L2777', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010026', 'MTV', '2549238', '3706346', 'ORIFICE AS ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010027', 'MTV', '2549238', '9D7884', 'SPRING ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010028', 'MTV', '2549238', '6Y4541', 'PISTON-SELECTOR ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010029', 'MTV', '2549238', '6Y4542', 'PISTON-LOAD ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010030', 'MTV', '2549238', '9J1330', 'SHIM ', 2, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010031', 'MTV', '2549238', '2S0675', 'SPACER ', 2, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010032', 'MTV', '2549238', '8J4452', 'SHIM ', 2, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010033', 'MTV', '2549238', '6Y7267', 'SPRING ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010034', 'MTV', '2549238', '8E6144', 'SPRING ', 1, 'C', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010035', 'MTV', '2549238', '8E4592', 'STOP ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010036', 'MTV', '2549238', '5L9018', 'BOLT-SOCKET HEAD', 2, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010037', 'MTV', '2549238', '0617540', 'SEAL-O-RING ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010038', 'MTV', '2549238', '2B2695', 'BOLT ', 2, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010039', 'MTV', '2549238', '6Y4538', 'COVER ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010040', 'MTV', '2549238', '9W6964', 'VALVE AS-EXHAUST', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010041', 'MTV', '2549238', '9S8003', 'PLUG-LD STOR ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010042', 'MTV', '2549238', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010043', 'MTV', '2549238', '3023813', 'VALVE GP-SOL ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010044', 'MTV', '2549238', '6V3965', 'ADAPTER-STR ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010045', 'MTV', '2549238', '6V0484', 'ADAPTER-ELBOW ', 1, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010046', 'MTV', '2549238', '2147568', 'SEAL-O-RING-STOR', 2, 'D', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010047', 'MTV', '2549238', '8E8867', 'COVER ', 1, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010048', 'MTV', '2549238', '8E8868', 'GASKET ', 1, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010049', 'MTV', '2549238', '9M1974', 'WASHER-HARD ', 4, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010050', 'MTV', '2549238', '0S1618', 'BOLT ', 4, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010051', 'MTV', '2549238', '8T8737', 'PLUG-SEAL ', 2, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010052', 'MTV', '2549238', '1552269', 'PLUG AS-CONN ', 1, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010053', 'MTV', '2549238', '6V0852', 'CAP-DUST ', 1, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010054', 'MTV', '2549238', '5M2894', 'WASHER-HARD ', 3, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010055', 'MTV', '2549238', '5F4899', 'BOLT ', 3, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010056', 'MTV', '2549238', '6V6353', 'SEAL-O-RING ', 1, 'E', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396112438010057', 'MTV', '2549238', '6Y4539', 'COVER ', 1, 'F', 1, '2025-03-31 12:41:52', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010000', 'MTV', '2224744', '4B9782', 'BALL', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010001', 'MTV', '2224744', '5S7906', 'STOP', 1, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010002', 'MTV', '2224744', '1J5799', 'PIN-SPRING', 1, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010003', 'MTV', '2224744', '8T6757', 'PLUG-NPTF', 3, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010004', 'MTV', '2224744', '3T9560', 'SPOOL', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010005', 'MTV', '2224744', '4B9880', 'BALL', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010006', 'MTV', '2224744', '3T9836', 'SPRING', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010007', 'MTV', '2224744', '1S1636', 'RETAINER', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010008', 'MTV', '2224744', '1S1638', 'RING-RETAINING', 2, 'A', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010009', 'MTV', '2224744', '5M2504', 'SLUG', 2, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010010', 'MTV', '2224744', '9G9226', 'SPRING', 2, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010011', 'MTV', '2224744', '1F8359', 'BALL', 1, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010012', 'MTV', '2224744', '1F8419', 'WASHER-VALVE', 1, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010013', 'MTV', '2224744', '9G9227', 'SPRING', 1, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010014', 'MTV', '2224744', '4H1349', 'DOWEL', 1, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010015', 'MTV', '2224744', '5P5846', 'SEAL-O-RING', 1, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010016', 'MTV', '2224744', '8M4988', 'SEAL-O RING', 6, 'B', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010017', 'MTV', '2224744', '0S1618', 'BOLT', 10, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010018', 'MTV', '2224744', '9M1974', 'WASHER-HARD', 10, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010019', 'MTV', '2224744', '9G9203', 'PLUG-STOP', 2, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010020', 'MTV', '2224744', '3J1907', 'SEAL-O-RING-STOR', 2, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010021', 'MTV', '2224744', '2L1699', 'PIN-SPRING', 1, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010022', 'MTV', '2224744', '9G9205', 'PISTON-LOAD', 1, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010023', 'MTV', '2224744', '8M5248', 'SEAL-O-RING', 1, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010024', 'MTV', '2224744', '1160118/HE', 'CLIP', 1, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010025', 'MTV', '2224744', '2577440', 'PLUG AS', 1, 'C', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010026', 'MTV', '2224744', '6V7418', 'PLUG-NPTF', 2, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010027', 'MTV', '2224744', '2K9111', 'PIN SPRING', 1, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010028', 'MTV', '2224744', '8M4436', 'SEAL-O-RING', 2, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010029', 'MTV', '2224744', '6T7532', 'SCREEN AS', 1, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010030', 'MTV', '2224744', '0S1590', 'BOLT', 2, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010031', 'MTV', '2224744', '5M2894', 'WASHER-HARD', 2, 'D', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010032', 'MTV', '2224744', '1726240', 'COVER', 1, 'D1', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010033', 'MTV', '2224744', '1726236', 'RETAINER', 1, 'D2', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010034', 'MTV', '2224744', '9G9201', 'SEAT', 1, 'D2', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010035', 'MTV', '2224744', '7S0530', 'CLIP', 1, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010036', 'MTV', '2224744', '6V3965', 'ADAPTER - STR', 2, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010037', 'MTV', '2224744', '3J1907', 'SEAL-O-RING-STOR', 2, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010038', 'MTV', '2224744', '6V0852', 'CAP-DUST', 2, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010039', 'MTV', '2224744', '8M8282', 'SEAL-O RING', 5, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010040', 'MTV', '2224744', '0S1619', 'BOLT', 2, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010041', 'MTV', '2224744', '5M2894', 'WASHER-HARD', 2, 'E', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010042', 'MTV', '2224744', '3E8575', 'VALVE GP SOL', 1, 'F', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010043', 'MTV', '2224744', '2224741', 'VALVE GP-SOLENOID', 1, 'G', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010044', 'MTV', '2224744', '0L1143', 'BOLT', 2, 'G', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010045', 'MTV', '2224744', '5M2894', 'WASHER-HARD', 2, 'G', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010046', 'MTV', '2224744', '1160118/HE', 'CLIP', 1, 'G', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010047', 'MTV', '2224744', '4738146', 'PLATE-IDENTIFICATION', 1, 'G', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010048', 'MTV', '2224744', '5498842', 'PLUG', 4, 'H', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010049', 'MTV', '2224744', '1P1669', 'PLUG-SEALING', 1, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010050', 'MTV', '2224744', '3K0360', 'SEAL-O-RING-STOR', 1, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010051', 'MTV', '2224744', '1552267', 'PLUG AS-CONN', 1, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010052', 'MTV', '2224744', '1552272', 'PLUG AS-CONN', 1, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010053', 'MTV', '2224744', '8T8737', 'PLUG-SEAL', 7, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396286718010054', 'MTV', '2224744', '7B3028', 'SCREW-DRIVE', 1, 'I', 6, '2025-03-31 12:44:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010000', 'MTV', '6I9514', '5H8985', 'PIN-SPRING', 1, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010001', 'MTV', '6I9514', '8E8439', 'DOWEL', 1, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010002', 'MTV', '6I9514', '9S8001', 'PLUG-LD STOR', 7, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010003', 'MTV', '6I9514', '2385078', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010004', 'MTV', '6I9514', '4B9880', 'BALL', 2, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010005', 'MTV', '6I9514', '8P7386', 'SPOOL', 1, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010006', 'MTV', '6I9514', '4M2381', 'SPRING', 2, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010007', 'MTV', '6I9514', '1S1636', 'RETAINER', 2, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010008', 'MTV', '6I9514', '1S1638', 'RING-RETAINING', 2, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010009', 'MTV', '6I9514', '6Y8049', 'SPOOL', 1, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010010', 'MTV', '6I9514', '5M2504', 'SLUG', 2, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010011', 'MTV', '6I9514', '2215311', 'PLATE-IDENT', 1, 'A', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010012', 'MTV', '6I9514', '9S8008', 'PLUG-LD STOR', 3, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010013', 'MTV', '6I9514', '2385082', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010014', 'MTV', '6I9514', '9W7410', 'SPRING', 1, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010015', 'MTV', '6I9514', '6V3683', 'SEAL-O-RING', 1, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010016', 'MTV', '6I9514', '5J2721', 'SHIM', 2, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010017', 'MTV', '6I9514', '6J3993', 'SHIM', 2, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010018', 'MTV', '6I9514', '5J1036', 'SHIM', 2, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010019', 'MTV', '6I9514', '9M1974', 'WASHER-HARD', 1, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010020', 'MTV', '6I9514', '0S1618', 'BOLT', 2, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010021', 'MTV', '6I9514', '9G9150', 'CLIP', 1, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010022', 'MTV', '6I9514', '9S8004', 'PLUG-LD STOR', 3, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010023', 'MTV', '6I9514', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010024', 'MTV', '6I9514', '9P0683', 'SPRING', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010025', 'MTV', '6I9514', '8L2777', 'SEAL-O-RING', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010026', 'MTV', '6I9514', '3706345', 'ORIFICE AS.', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010027', 'MTV', '6I9514', '9D7884', 'SPRING', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010028', 'MTV', '6I9514', '6Y4541', 'PISTON-SELECTOR', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010029', 'MTV', '6I9514', '6Y4542', 'PISTON-LOAD', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010030', 'MTV', '6I9514', '9J1330', 'SHIM', 2, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010031', 'MTV', '6I9514', '2S0675', 'SPACER', 2, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010032', 'MTV', '6I9514', '8J4452', 'SHIM', 2, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010033', 'MTV', '6I9514', '8E0758', 'SPRING', 1, 'C', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010034', 'MTV', '6I9514', '8E4592', 'STOP', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010035', 'MTV', '6I9514', '5L9018', 'BOLT-SOCKET HEAD', 2, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010036', 'MTV', '6I9514', '0617540', 'SEAL-O-RING', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010037', 'MTV', '6I9514', '2B2695', 'BOLT', 2, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010038', 'MTV', '6I9514', '6Y4538', 'COVER', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010039', 'MTV', '6I9514', '9W6964', 'VALVE AS-EXHAUST', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010040', 'MTV', '6I9514', '9S8003', 'PLUG-LD STOR', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010041', 'MTV', '6I9514', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010042', 'MTV', '6I9514', '3023809', 'VALVE GP-SOL', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010043', 'MTV', '6I9514', '6V3965', 'ADAPTER-STR', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010044', 'MTV', '6I9514', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010045', 'MTV', '6I9514', '8E8867', 'COVER', 1, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010046', 'MTV', '6I9514', '8E8868', 'GASKET', 1, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010047', 'MTV', '6I9514', '9M1974', 'WASHER-HARD', 4, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010048', 'MTV', '6I9514', '0S1618', 'BOLT', 4, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010049', 'MTV', '6I9514', '9G3695', 'PLUG-SEALING', 2, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010050', 'MTV', '6I9514', '7N9738', 'HOUSING-RECP', 1, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010051', 'MTV', '6I9514', '6V0852', 'CAP-DUST', 1, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010052', 'MTV', '6I9514', '5M2894', 'WASHER-HARD', 3, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010053', 'MTV', '6I9514', '5F4899', 'BOLT', 3, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010054', 'MTV', '6I9514', '6V6353', 'SEAL-O-RING', 1, 'E', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396568444010055', 'MTV', '6I9514', '6Y4539', 'COVER', 1, 'F', 1, '2025-03-31 12:49:28', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010000', 'MTV', '3844615', '5H8985', 'PIN-SPRING ', 1, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010001', 'MTV', '3844615', '8E8439', 'DOWEL ', 1, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010002', 'MTV', '3844615', '9S8001', 'PLUG-LD STOR ', 7, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010003', 'MTV', '3844615', '2385078', 'SEAL-O-RING-STOR', 7, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010004', 'MTV', '3844615', '4B9880', 'BALL ', 2, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010005', 'MTV', '3844615', '8P7386', 'SPOOL ', 1, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010006', 'MTV', '3844615', '4M2381', 'SPRING ', 2, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010007', 'MTV', '3844615', '1S1636', 'RETAINER ', 2, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010008', 'MTV', '3844615', '1S1638', 'RING-RETAINING ', 2, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010009', 'MTV', '3844615', '6Y8049', 'SPOOL ', 1, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010010', 'MTV', '3844615', '5M2504', 'SLUG ', 2, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010011', 'MTV', '3844615', '3850021', 'PLATE-IDENT ', 1, 'A', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010012', 'MTV', '3844615', '9S8008', 'PLUG-LD STOR ', 3, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010013', 'MTV', '3844615', '2385082', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010014', 'MTV', '3844615', '9W7410', 'SPRING ', 1, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010015', 'MTV', '3844615', '6V3683', 'SEAL-O-RING ', 1, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010016', 'MTV', '3844615', '5J2721', 'SHIM ', 2, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010017', 'MTV', '3844615', '6J3993', 'SHIM ', 2, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010018', 'MTV', '3844615', '5J1036', 'SHIM ', 2, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010019', 'MTV', '3844615', '9M1974', 'WASHER-HARD ', 1, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010020', 'MTV', '3844615', '0S1618', 'BOLT ', 2, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010021', 'MTV', '3844615', '1305300', 'CLIP ', 1, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010022', 'MTV', '3844615', '9S8004', 'PLUG-LD STOR ', 3, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010023', 'MTV', '3844615', '2147568', 'SEAL-O-RING-STOR', 3, 'B', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010024', 'MTV', '3844615', '9P0683', 'SPRING ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010025', 'MTV', '3844615', '8L2777', 'SEAL-O-RING ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010026', 'MTV', '3844615', '3706345', 'ORIFICE AS ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010027', 'MTV', '3844615', '9D7884', 'SPRING ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010028', 'MTV', '3844615', '6Y4541', 'PISTON-SELECTOR ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010029', 'MTV', '3844615', '6Y4542', 'PISTON-LOAD ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010030', 'MTV', '3844615', '9J1330', 'SHIM ', 2, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010031', 'MTV', '3844615', '2S0675', 'SPACER ', 2, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010032', 'MTV', '3844615', '8J4452', 'SHIM ', 2, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010033', 'MTV', '3844615', '8E0758', 'SPRING ', 1, 'C', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010034', 'MTV', '3844615', '8E4592', 'STOP ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010035', 'MTV', '3844615', '5L9018', 'BOLT-SOCKET HEAD', 2, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010036', 'MTV', '3844615', '0617540', 'SEAL-O-RING ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010037', 'MTV', '3844615', '2B2695', 'BOLT ', 2, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010038', 'MTV', '3844615', '6Y4538', 'COVER ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010039', 'MTV', '3844615', '9W6964', 'VALVE AS-EXHAUST', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010040', 'MTV', '3844615', '9S8003', 'PLUG-LD STOR ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010041', 'MTV', '3844615', '2147567', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010042', 'MTV', '3844615', '3023813', 'VALVE GP-SOL ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010043', 'MTV', '3844615', '6V3965', 'ADAPTER-STR ', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010044', 'MTV', '3844615', '2147568', 'SEAL-O-RING-STOR', 1, 'D', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010045', 'MTV', '3844615', '8E8867', 'COVER ', 1, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010046', 'MTV', '3844615', '8E8868', 'GASKET ', 1, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010047', 'MTV', '3844615', '9M1974', 'WASHER-HARD ', 4, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010048', 'MTV', '3844615', '0S1618', 'BOLT ', 4, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010049', 'MTV', '3844615', '8T8737', 'PLUG-SEAL ', 2, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010050', 'MTV', '3844615', '1552269', 'PLUG AS-CONN ', 1, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010051', 'MTV', '3844615', '6V0852', 'CAP-DUST ', 1, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010052', 'MTV', '3844615', '5M2894', 'WASHER-HARD ', 3, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010053', 'MTV', '3844615', '5F4899', 'BOLT ', 3, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010054', 'MTV', '3844615', '6V6353', 'SEAL-O-RING ', 1, 'E', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396657251010055', 'MTV', '3844615', '6Y4539', 'COVER ', 1, 'F', 1, '2025-03-31 12:50:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010000', 'B Segment', '3706919', '9J8126', '钢铁制塞堵', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010001', 'B Segment', '3706919', '3676002', '钢铁制塞堵组件', 2, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010002', 'B Segment', '3706919', '4J7533', '橡胶密封圈', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010003', 'B Segment', '3706919', '9S8001', '钢铁制塞堵', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010004', 'B Segment', '3706919', '4K1388', '橡胶密封圈', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010005', 'B Segment', '3706919', '3603696', '钢铁制塞堵', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010006', 'B Segment', '3706919', '3676001', '钢铁制塞堵组件', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010007', 'B Segment', '3706919', '4T5072', '塑料密封圈', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010008', 'B Segment', '3706919', '4T5073', '塑料密封圈', 1, 'A', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010009', 'B Segment', '3706919', '7J9933', '橡胶密封圈', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010010', 'B Segment', '3706919', '1008010', '阀芯', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010011', 'B Segment', '3706919', '1008011', '钢铁制塞堵', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010012', 'B Segment', '3706919', '7M8485', '橡胶密封圈', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010013', 'B Segment', '3706919', '2S2596', '钢铁弹簧', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010014', 'B Segment', '3706919', '2077434', '阀用止动块', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010015', 'B Segment', '3706919', '9S4180', '钢铁制塞堵', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010016', 'B Segment', '3706919', '4J7533', '橡胶密封圈', 1, 'B', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010017', 'B Segment', '3706919', '3529954', '钢铁弹簧', 1, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010018', 'B Segment', '3706919', '3529956', '阀用止动块', 1, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010019', 'B Segment', '3706919', '1H1023', '橡胶密封圈', 2, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010020', 'B Segment', '3706919', '1879630', '橡胶密封圈', 2, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010021', 'B Segment', '3706919', '4T5074', '塑料密封圈', 1, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010022', 'B Segment', '3706919', '5M2057', '橡胶密封圈', 1, 'C', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010023', 'B Segment', '3706919', '6V5556', '橡胶密封圈', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010024', 'B Segment', '3706919', '3612422', '阀用间隔套', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010025', 'B Segment', '3706919', '3706936', '钢铁弹簧', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010026', 'B Segment', '3706919', '8T4185', '螺栓8T-4185', 2, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010027', 'B Segment', '3706919', '1919247', '钢铁制垫圈', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010028', 'B Segment', '3706919', '1982914', '钢铁制螺母', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010029', 'B Segment', '3706919', '3161438', '插装阀组件', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010030', 'B Segment', '3706919', '3617213', '插装阀组件', 1, 'D', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010031', 'B Segment', '3706919', '8T5066', '钢铁螺栓', 2, 'E', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010032', 'B Segment', '3706919', '3J1907', '橡胶密封圈', 1, 'E', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010033', 'B Segment', '3706919', '3603692', '钢铁制塞堵', 1, 'E', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010034', 'B Segment', '3706919', '4K1388', '橡胶密封圈', 1, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010035', 'B Segment', '3706919', '4J5351', '橡胶密封圈', 1, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010036', 'B Segment', '3706919', '7X7888', '钢铁螺栓', 2, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010037', 'B Segment', '3706919', '4363449', '阀座', 1, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010038', 'B Segment', '3706919', '3706916', '阀座', 1, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396685611010039', 'B Segment', '3706919', '3128629', '电磁线圈', 1, 'F', 1, '2025-03-31 12:51:26', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010000', 'B Segment', '1199620', '9T3004', 'VALVE ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010001', 'B Segment', '1199620', '9T7677', 'RETAINER ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010002', 'B Segment', '1199620', '9T3005', 'SPRING ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010003', 'B Segment', '1199620', '7D9749', 'SEAL-O RING ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010004', 'B Segment', '1199620', '9T7678', 'COVER ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010005', 'B Segment', '1199620', '1541580', 'WASHER-HARD ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010006', 'B Segment', '1199620', '8D7815', 'SCREW-BUTTON HD ', 2, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010007', 'B Segment', '1199620', '2M9780', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396759953010008', 'B Segment', '1199620', '9S8006', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-31 12:52:40', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743396778601010000', 'Cover As', '6T7533', '2K9111', 'PIN-SPRING', 1, 'A', 1, '2025-03-31 12:52:59', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010000', 'WTS', '6005905', '5668578', 'VALVE GP-RELIEF ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010001', 'WTS', '6005905', '4J0527', 'SEAL-O-RING ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010002', 'WTS', '6005905', '2J5608', 'FLANGE-COVER ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010003', 'WTS', '6005905', '1P4582', 'FLANGE-SPLIT ', 2, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010004', 'WTS', '6005905', '8T4184', 'BOLT-HEX HEAD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010005', 'WTS', '6005905', '8T4223', 'WASHER-HARD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010006', 'WTS', '6005905', '4J0527', 'SEAL-O-RING ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010007', 'WTS', '6005905', '2J5608', 'FLANGE-COVER ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010008', 'WTS', '6005905', '1P4582', 'FLANGE-SPLIT ', 2, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010009', 'WTS', '6005905', '8T4184', 'BOLT-HEX HEAD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010010', 'WTS', '6005905', '8T4223', 'WASHER-HARD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010011', 'WTS', '6005905', '4J0527', 'SEAL-O-RING ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010012', 'WTS', '6005905', '2J5608', 'FLANGE-COVER ', 1, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010013', 'WTS', '6005905', '1P4582', 'FLANGE-SPLIT ', 2, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010014', 'WTS', '6005905', '8T4184', 'BOLT-HEX HEAD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010015', 'WTS', '6005905', '8T4223', 'WASHER-HARD ', 4, 'A', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010016', 'WTS', '6005905', '1P3705', 'SEAL-RECTANGULAR', 1, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010017', 'WTS', '6005905', '5P0049', 'COVER ', 1, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010018', 'WTS', '6005905', '5P8077', 'FLANGE-SPLIT ', 2, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010019', 'WTS', '6005905', '8T4140', 'BOLT-HEX HEAD ', 4, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010020', 'WTS', '6005905', '8T4122', 'WASHER-HARD ', 4, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010021', 'WTS', '6005905', '6005903', 'PLATE-IDENT ', 1, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010022', 'WTS', '6005905', '1P3705', 'SEAL-RECTANGULAR', 1, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010023', 'WTS', '6005905', '5P0049', 'COVER ', 1, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010024', 'WTS', '6005905', '5P8077', 'FLANGE-SPLIT ', 2, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010025', 'WTS', '6005905', '8T4140', 'BOLT-HEX HEAD ', 4, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743398502519010026', 'WTS', '6005905', '8T4122', 'WASHER-HARD ', 4, 'B', 1, '2025-03-31 13:21:43', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470050010000', 'B Segment', '3773677', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010000', 'B Segment', '3773677', '1008010', '阀芯', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010001', 'B Segment', '3773677', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010002', 'B Segment', '3773677', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010003', 'B Segment', '3773677', '4D0514', '阀用塞堵', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010004', 'B Segment', '3773677', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010005', 'B Segment', '3773677', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010006', 'B Segment', '3773677', '4T5073', '塑料密封圈', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010007', 'B Segment', '3773677', '1008012', '阀体', 1, 'A', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010008', 'B Segment', '3773677', '1750453', '阀芯', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010009', 'B Segment', '3773677', '4K1388', '橡胶密封圈', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010010', 'B Segment', '3773677', '7J9933', '橡胶密封圈', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010011', 'B Segment', '3773677', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010012', 'B Segment', '3773677', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010013', 'B Segment', '3773677', '2608590', '换向阀', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010014', 'B Segment', '3773677', '7M8485', '橡胶密封圈', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010015', 'B Segment', '3773677', '9S4181', '钢铁制塞堵', 1, 'B', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010016', 'B Segment', '3773677', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010017', 'B Segment', '3773677', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010018', 'B Segment', '3773677', '3128629', '电磁线圈', 2, 'D', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010019', 'B Segment', '3773677', '2077434', '阀用止动块', 2, 'E', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010020', 'B Segment', '3773677', '9S4180', '钢铁制塞堵', 1, 'E', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010021', 'B Segment', '3773677', '4J7533', '橡胶密封圈', 1, 'E', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010022', 'B Segment', '3773677', '3161438', '插装阀组件', 2, 'E', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010023', 'B Segment', '3773677', '3617213', '插装阀组件', 2, 'E', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010024', 'B Segment', '3773677', '2427955', '阀座', 2, 'F', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010025', 'B Segment', '3773677', '1879630', '橡胶密封圈', 2, 'G', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010026', 'B Segment', '3773677', '1H1023', '橡胶密封圈', 6, 'G', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010027', 'B Segment', '3773677', '2Y2347', '橡胶密封圈', 1, 'G', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010028', 'B Segment', '3773677', '3J1907', '橡胶密封圈', 2, 'G', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010029', 'B Segment', '3773677', '9S8004', '钢铁制塞堵', 2, 'G', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010030', 'B Segment', '3773677', '3885295', '阀座', 1, 'H', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010031', 'B Segment', '3773677', '3529954', '钢铁弹簧', 2, 'I', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010032', 'B Segment', '3773677', '3529956', '阀用止动块', 2, 'I', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743406470051010033', 'B Segment', '3773677', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-03-31 15:34:30', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010000', 'B Segment', '3773676', '2S2596', '钢铁弹簧', 3, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010001', 'B Segment', '3773676', '1008010', '阀芯', 1, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010002', 'B Segment', '3773676', '1750453', '阀芯', 2, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010003', 'B Segment', '3773676', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010004', 'B Segment', '3773676', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010005', 'B Segment', '3773676', '4D0514', '阀用塞堵', 1, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010006', 'B Segment', '3773676', '9S8002', '钢铁制塞堵', 2, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010007', 'B Segment', '3773676', '3J7354', '橡胶密封圈', 2, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010008', 'B Segment', '3773676', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010009', 'B Segment', '3773676', '1008012', '阀体', 2, 'B', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010010', 'B Segment', '3773676', '4T5073', '塑料密封圈', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010011', 'B Segment', '3773676', '7J9933', '橡胶密封圈', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010012', 'B Segment', '3773676', '4J7533', '橡胶密封圈', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010013', 'B Segment', '3773676', '9S8001', '钢铁制塞堵', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010014', 'B Segment', '3773676', '7M8485', '橡胶密封圈', 1, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010015', 'B Segment', '3773676', '9S4181', '钢铁制塞堵', 1, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010016', 'B Segment', '3773676', '1919247', '钢铁制垫圈', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010017', 'B Segment', '3773676', '1982914', '钢铁制螺母', 2, 'C', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010018', 'B Segment', '3773676', '3128629', '电磁线圈', 2, 'D', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010019', 'B Segment', '3773676', '2427955', '阀座', 2, 'E', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010020', 'B Segment', '3773676', '3161438', '插装阀组件', 2, 'F', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010021', 'B Segment', '3773676', '3617213', '插装阀组件', 2, 'F', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010022', 'B Segment', '3773676', '2077434', '阀用止动块', 2, 'F', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010023', 'B Segment', '3773676', '9S4180', '钢铁制塞堵', 1, 'F', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010024', 'B Segment', '3773676', '4J7533', '橡胶密封圈', 1, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534482010025', 'B Segment', '3773676', '1879630', '橡胶密封圈', 2, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010000', 'B Segment', '3773676', '1H1023', '橡胶密封圈', 6, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010001', 'B Segment', '3773676', '2Y2347', '橡胶密封圈', 1, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010002', 'B Segment', '3773676', '3J1907', '橡胶密封圈', 2, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010003', 'B Segment', '3773676', '9S8004', '钢铁制塞堵', 2, 'G', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010004', 'B Segment', '3773676', '3885295', '阀座', 1, 'H', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010005', 'B Segment', '3773676', '3529954', '钢铁弹簧', 2, 'I', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010006', 'B Segment', '3773676', '3529956', '阀用止动块', 2, 'I', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743407534483010007', 'B Segment', '3773676', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-03-31 15:52:14', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010000', 'B Segment', '4204712', '1235798', 'SEAT', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010001', 'B Segment', '4204712', '1249957', 'PIN', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010002', 'B Segment', '4204712', '1235799', 'SEAT', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010003', 'B Segment', '4204712', '4342475', 'VALVE GP-D RLF-A', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010004', 'B Segment', '4204712', '2828827', 'PLUG', 2, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010005', 'B Segment', '4204712', '6V3965', 'ADAPTER-STR', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010006', 'B Segment', '4204712', '2147568', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010007', 'B Segment', '4204712', '6V0852', 'CAP-DUST', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010008', 'B Segment', '4204712', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743473807347010009', 'B Segment', '4204712', '9S8005', 'PLUG-LD STOR', 1, 'A', 1, '2025-04-01 10:16:47', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010000', 'B Segment', '3872116', '9T1573', '安全阀', 1, 'A', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010001', 'B Segment', '3872116', '0963831/HE', '节流阀', 1, 'A', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010002', 'B Segment', '3872116', '3872119', '铭牌', 1, 'A', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010003', 'B Segment', '3872116', '1027365', '螺钉', 2, 'A', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010004', 'B Segment', '3872116', '3711784', '溢流阀', 1, 'B', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010005', 'B Segment', '3872116', '9X2027', '垫片', 2, 'B', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010006', 'B Segment', '3872116', '0858091', '螺钉', 2, 'B', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010007', 'B Segment', '3872116', '1239624', '弹簧', 1, 'C', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010008', 'B Segment', '3872116', '1730514', '端盖', 1, 'C', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010009', 'B Segment', '3872116', '6V5192', '螺钉', 2, 'C', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010010', 'B Segment', '3872116', '5M2057', '密封O型圈', 2, 'C', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010011', 'B Segment', '3872116', '4T4631', '弹簧', 1, 'D', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010012', 'B Segment', '3872116', '1536976', '弹簧', 1, 'D', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010013', 'B Segment', '3872116', '1537067', '弹簧座', 1, 'D', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010014', 'B Segment', '3872116', '1537551', '弹簧座', 1, 'D', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010015', 'B Segment', '3872116', '9T1573', '安全阀', 1, 'E', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010016', 'B Segment', '3872116', '5K0227', '密封O型圈', 1, 'E', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010017', 'B Segment', '3872116', '1730511', '端盖', 1, 'F', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010018', 'B Segment', '3872116', '3J1907', '密封O型圈', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010019', 'B Segment', '3872116', '9S8004', '堵头', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010020', 'B Segment', '3872116', '9S8002', '堵头', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010021', 'B Segment', '3872116', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010022', 'B Segment', '3872116', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010023', 'B Segment', '3872116', '9S8001', '堵头', 2, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010024', 'B Segment', '3872116', '1612684', '螺钉', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010025', 'B Segment', '3872116', '7J0204', '密封O型圈', 1, '预装配1', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010026', 'B Segment', '3872116', '1008011', '堵头', 1, '预装配2', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010027', 'B Segment', '3872116', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010028', 'B Segment', '3872116', '2S2596', '弹簧', 1, '预装配2', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743475680417010029', 'B Segment', '3872116', '1008010', '阀', 1, '预装配2', 6, '2025-04-01 10:48:00', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010000', 'B Segment', '5786299', '1008010', 'VALVE,VALVE GP-CONT -P', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010001', 'B Segment', '5786299', '1008011', 'PLUG,VALVE GP-CONT -P', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010002', 'B Segment', '5786299', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010003', 'B Segment', '5786299', '2S2596', 'SPRING', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010004', 'B Segment', '5786299', '4D0514', 'PLUG-PTF', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010005', 'B Segment', '5786299', '3603678', 'PLUG-HD STOR', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010006', 'B Segment', '5786299', '2147567', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010007', 'B Segment', '5786299', '1161890', 'VALVE GP-CHECK-D', 2, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010008', 'B Segment', '5786299', '3676001', 'PLUG AS-HD STOR', 1, 'A', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010009', 'B Segment', '5786299', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010010', 'B Segment', '5786299', '9S8001', 'PLUG-LD STOR', 2, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010011', 'B Segment', '5786299', '3612422', 'SLEEVE', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010012', 'B Segment', '5786299', '4T5074', 'RING-BACKU', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010013', 'B Segment', '5786299', '6V5556', 'SEAL-O RING', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010014', 'B Segment', '5786299', '4T1649', 'HOUSING', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010015', 'B Segment', '5786299', '5M2057', 'SEAL-O-RING', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010016', 'B Segment', '5786299', '8T4185', 'BOLT-HEX HEAD', 2, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010017', 'B Segment', '5786299', '4933160', 'HOUSING', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010018', 'B Segment', '5786299', '2271189', 'SCREEN - PILOT', 1, 'B', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010019', 'B Segment', '5786299', '1717978', 'PLUG-PIPE', 2, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010020', 'B Segment', '5786299', '7J0204', 'SEAL-O-RING', 1, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010021', 'B Segment', '5786299', '9S8007', 'PLUG-LD STOR', 1, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010022', 'B Segment', '5786299', '1H1023', 'SEAL-O RING', 3, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010023', 'B Segment', '5786299', '3J9015', 'SEAL-O RING', 3, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010024', 'B Segment', '5786299', '1483483', 'PLUG', 1, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010025', 'B Segment', '5786299', '0951582/HE', 'SEAL-O-RING', 1, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010026', 'B Segment', '5786299', '8T2396', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010027', 'B Segment', '5786299', '4612544', 'SENSOR AS-SPOOL', 1, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010028', 'B Segment', '5786299', '6V8653', 'BOLT-SOCKET HD', 2, 'C', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010029', 'B Segment', '5786299', '3410825', 'PROBEAS-SPOOL', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010030', 'B Segment', '5786299', '1537551', 'RETAINER', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010031', 'B Segment', '5786299', '4214353', 'SPRING', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010032', 'B Segment', '5786299', '1537067', 'RETAINER,', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010033', 'B Segment', '5786299', '1612684', 'SCREW', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010034', 'B Segment', '5786299', '7J0204', 'SEAL-O-RING', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010035', 'B Segment', '5786299', '4363447', 'HOUSING', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010036', 'B Segment', '5786299', '4363448', 'HOUSING', 1, 'D', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010037', 'B Segment', '5786299', '6E5066', 'SCREEN', 1, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010038', 'B Segment', '5786299', '5786301', 'PLATE-IDENT', 1, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010039', 'B Segment', '5786299', '6V9606', 'BOLT', 2, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010040', 'B Segment', '5786299', '3J1907', 'SEAL-O-RING-STOR', 3, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010041', 'B Segment', '5786299', '3603692', 'PLUG-HD STOR', 3, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010042', 'B Segment', '5786299', '3676002', 'PLUG AS-HD STOR', 1, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010043', 'B Segment', '5786299', '2304013', 'PLUG AS-CONN', 1, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476273479010044', 'B Segment', '5786299', '8T8737', 'PLUG-SEAL', 3, 'E', 1, '2025-04-01 10:57:53', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010000', 'B Segment', '4938509', '1008010', '阀芯', 1, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010001', 'B Segment', '4938509', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010002', 'B Segment', '4938509', '3676001', '钢铁制塞堵组件', 1, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010003', 'B Segment', '4938509', '3676002', '钢铁制塞堵组件', 2, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010004', 'B Segment', '4938509', '2S2596', '钢铁弹簧', 1, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010005', 'B Segment', '4938509', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010006', 'B Segment', '4938509', '1239624', '钢铁弹簧', 1, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010007', 'B Segment', '4938509', '2077434', '阀用止动块', 2, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010008', 'B Segment', '4938509', '3529956', '阀用止动块', 2, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010009', 'B Segment', '4938509', '4J7533', '橡胶密封圈', 1, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010010', 'B Segment', '4938509', '5M2057', '橡胶密封圈', 1, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010011', 'B Segment', '4938509', '9S4180', '钢铁制塞堵', 1, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010012', 'B Segment', '4938509', '9X2027', '钢铁制垫圈', 2, 'D', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010013', 'B Segment', '4938509', '2427955', '阀座', 2, 'E', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010014', 'B Segment', '4938509', '1879630', '橡胶密封圈', 2, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010015', 'B Segment', '4938509', '1919247', '钢铁制垫圈', 2, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010016', 'B Segment', '4938509', '1982914', '钢铁制螺母', 2, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010017', 'B Segment', '4938509', '3161438', '插装阀组件', 2, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010018', 'B Segment', '4938509', '3617213', '插装阀组件', 2, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010019', 'B Segment', '4938509', '1H1023', '橡胶密封圈', 4, 'F', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010020', 'B Segment', '4938509', '3128629', '电磁线圈', 2, 'G', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010021', 'B Segment', '4938509', '3529954', '钢铁弹簧', 2, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010022', 'B Segment', '4938509', '3603679', '钢铁制塞堵', 2, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010023', 'B Segment', '4938509', '3J1907', '橡胶密封圈', 2, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010024', 'B Segment', '4938509', '9X8256', '钢铁制垫圈', 4, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010025', 'B Segment', '4938509', '9S8001', '钢铁制塞堵', 1, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743476937017010026', 'B Segment', '4938509', '4J7533', '橡胶密封圈', 1, 'H', 6, '2025-04-01 11:08:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010000', 'B Segment', '1628040', '1008010', '阀芯', 2, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010001', 'B Segment', '1628040', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010002', 'B Segment', '1628040', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010003', 'B Segment', '1628040', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010004', 'B Segment', '1628040', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010005', 'B Segment', '1628040', '3676002', '钢铁制塞堵组件', 1, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010006', 'B Segment', '1628040', '3676001', '钢铁制塞堵组件', 1, 'A', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010007', 'B Segment', '1628040', '4J5351', '橡胶密封圈', 1, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010008', 'B Segment', '1628040', '4K1388', '橡胶密封圈', 2, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010009', 'B Segment', '1628040', '4T5072', '塑料密封圈', 1, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010010', 'B Segment', '1628040', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010011', 'B Segment', '1628040', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010012', 'B Segment', '1628040', '1008012', '阀体', 1, 'B', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010013', 'B Segment', '1628040', '4J7533', '橡胶密封圈', 1, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010014', 'B Segment', '1628040', '9S8001', '钢铁制塞堵', 1, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010015', 'B Segment', '1628040', '4T1860', '换向阀', 1, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010016', 'B Segment', '1628040', '1239624', '钢铁弹簧', 1, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010017', 'B Segment', '1628040', '5M2057', '橡胶密封圈', 2, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010018', 'B Segment', '1628040', '8T4896', '钢铁制垫圈', 2, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010019', 'B Segment', '1628040', '8T9377', '钢铁制螺栓', 2, 'C', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010020', 'B Segment', '1628040', '1216649', '安全阀', 1, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010021', 'B Segment', '1628040', '1730515', '钢铁间隔套', 1, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010022', 'B Segment', '1628040', '5K0227', '橡胶密封圈', 2, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010023', 'B Segment', '1628040', '1537549', '阀用止动块', 1, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010024', 'B Segment', '1628040', '1537553', '钢铁弹簧', 1, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010025', 'B Segment', '1628040', '1635671', '钢铁制垫圈', 1, 'D', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010026', 'B Segment', '1628040', '9S7381', '钢铁制螺栓', 2, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010027', 'B Segment', '1628040', '1537550', '阀用止动挡圈', 1, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010028', 'B Segment', '1628040', '1640938', '钢铁弹簧', 1, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010029', 'B Segment', '1628040', '1704001', '钢铁弹簧', 1, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010030', 'B Segment', '1628040', '1537067', '阀用止动挡圈', 1, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010031', 'B Segment', '1628040', '7J0204', '橡胶密封圈', 1, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743487271540010032', 'B Segment', '1628040', '2788966', '钢铁制螺栓', 2, 'E', 6, '2025-04-01 14:01:12', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010000', 'B Segment', '2698153', '3D4603', '节流阀', 1, 'A', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010001', 'B Segment', '2698153', '4T1860', '阀', 1, 'A', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010002', 'B Segment', '2698153', '1730514', '端盖', 1, 'B', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010003', 'B Segment', '2698153', '6V5192', '螺钉', 2, 'B', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010004', 'B Segment', '2698153', '5M2057', '密封O型圈', 1, 'B', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010005', 'B Segment', '2698153', '4T4631', '弹簧', 1, 'C', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010006', 'B Segment', '2698153', '1536976', '弹簧', 1, 'C', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010007', 'B Segment', '2698153', '1537067', '弹簧座', 1, 'C', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010008', 'B Segment', '2698153', '1537551', '弹簧座', 1, 'C', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010009', 'B Segment', '2698153', '1027365', '螺钉', 2, 'D', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010010', 'B Segment', '2698153', '2732152', '铭牌', 1, 'D', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010011', 'B Segment', '2698153', '5K0227', '密封O型圈', 1, 'D', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010012', 'B Segment', '2698153', '1730511', '端盖', 1, 'E', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010013', 'B Segment', '2698153', '4T5073', '密封环', 2, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010014', 'B Segment', '2698153', '4T1108', '堵头', 1, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010015', 'B Segment', '2698153', '7J9933', '密封O型圈', 2, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010016', 'B Segment', '2698153', '9S8002', '堵头', 1, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010017', 'B Segment', '2698153', '3J7354', '密封O型圈', 1, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010018', 'B Segment', '2698153', '4J7533', '密封O型圈', 2, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010019', 'B Segment', '2698153', '9S8001', '堵头', 2, '预装配1', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010020', 'B Segment', '2698153', '4T1108', '堵头', 1, '预装配2', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010021', 'B Segment', '2698153', '1008011', '堵头', 1, '预装配2', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314860010022', 'B Segment', '2698153', '7M8485', '密封O型圈', 1, '预装配2', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010000', 'B Segment', '2698153', '2S2596', '弹簧', 1, '预装配2', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010001', 'B Segment', '2698153', '1008010', '阀', 1, '预装配2', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010002', 'B Segment', '2698153', '4J5351', '密封O型圈', 2, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010003', 'B Segment', '2698153', '2918148', '密封O型圈', 1, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010004', 'B Segment', '2698153', '7M8485', '密封O型圈', 1, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010005', 'B Segment', '2698153', '9S4181', '堵头', 1, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010006', 'B Segment', '2698153', '4T5072', '密封环', 2, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010007', 'B Segment', '2698153', '1612684', '螺钉', 1, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743488314861010008', 'B Segment', '2698153', '7J0204', '密封O型圈', 1, '预装配3', 6, '2025-04-01 14:18:35', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010000', 'B Segment', '1628314', '1008010', 'VALVE,VALVE GP-CONT -P', 2, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010001', 'B Segment', '1628314', '1008011', 'PLUG,VALVE GP-CONT -P', 1, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010002', 'B Segment', '1628314', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010003', 'B Segment', '1628314', '2S2596', 'SPRING', 2, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010004', 'B Segment', '1628314', '9J8126', 'PLUG-ORIFICE', 1, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010005', 'B Segment', '1628314', '3676002', 'PLUG AS-HD STOR', 1, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010006', 'B Segment', '1628314', '4T1108', 'PLUG', 1, 'A', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010007', 'B Segment', '1628314', '4J5351', 'SEAL-O RING,RUBBER', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010008', 'B Segment', '1628314', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010009', 'B Segment', '1628314', '4T5072', 'RING-BACKUP', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010010', 'B Segment', '1628314', '4T5073', 'RING-BACKUP', 2, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010011', 'B Segment', '1628314', '7J9933', 'SEAL-O RING', 2, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010012', 'B Segment', '1628314', '1008012', 'BODY', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010013', 'B Segment', '1628314', '1809604', 'PLATE-IDENT', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010014', 'B Segment', '1628314', '3676001', 'PLUG AS-HD STOR', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010015', 'B Segment', '1628314', '4J7533', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010016', 'B Segment', '1628314', '9S8001', 'PLUG-LD STOR', 1, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010017', 'B Segment', '1628314', '4T1860', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010018', 'B Segment', '1628314', '1216647', 'VALVE GP-RELIEF', 1, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010019', 'B Segment', '1628314', '5M2057', 'SEAL-O-RING', 2, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010020', 'B Segment', '1628314', '1239624', 'SPRING', 1, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010021', 'B Segment', '1628314', '8T4896', 'WASHER-HARD', 2, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010022', 'B Segment', '1628314', '8T9377', 'BOLT', 2, 'C', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010023', 'B Segment', '1628314', '1730515', 'SPACER', 1, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010024', 'B Segment', '1628314', '5K0227', 'SEAL-O-RING', 2, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010025', 'B Segment', '1628314', '1537549', 'RETAINER', 1, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010026', 'B Segment', '1628314', '1537553', 'SPRING', 1, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010027', 'B Segment', '1628314', '1635671', 'WASHER', 1, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010028', 'B Segment', '1628314', '1730512', 'HOUSING', 1, 'D', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010029', 'B Segment', '1628314', '9S7381', 'BOLT-SOCKET HEAD', 2, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010030', 'B Segment', '1628314', '1537550', 'RETAINER', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010031', 'B Segment', '1628314', '1640938', 'SPRING', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010032', 'B Segment', '1628314', '1704001', 'SPRING', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010033', 'B Segment', '1628314', '1537067', 'RETAINER', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010034', 'B Segment', '1628314', '1612685', 'SCREW', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010035', 'B Segment', '1628314', '7J0204', 'SEAL-O-RING', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010036', 'B Segment', '1628314', '1730511', 'HOUSING', 1, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489044379010037', 'B Segment', '1628314', '2788966', 'BOLT-HEX SOCKET', 2, 'E', 6, '2025-04-01 14:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010000', 'B Segment', '1628041', '1008010', '阀芯', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010001', 'B Segment', '1628041', '2S2596', '钢铁弹簧', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010002', 'B Segment', '1628041', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010003', 'B Segment', '1628041', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010004', 'B Segment', '1628041', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010005', 'B Segment', '1628041', '3676002', '钢铁制塞堵组件', 1, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010006', 'B Segment', '1628041', '4J5351', '橡胶密封圈', 2, 'A', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010007', 'B Segment', '1628041', '4K1388', '橡胶密封圈', 2, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010008', 'B Segment', '1628041', '4T5072', '塑料密封圈', 2, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010009', 'B Segment', '1628041', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010010', 'B Segment', '1628041', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010011', 'B Segment', '1628041', '4J7533', '橡胶密封圈', 1, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010012', 'B Segment', '1628041', '9S8001', '钢铁制塞堵', 1, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010013', 'B Segment', '1628041', '3676001', '钢铁制塞堵组件', 1, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010014', 'B Segment', '1628041', '4T1860', '换向阀', 1, 'B', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010015', 'B Segment', '1628041', '1216649', '安全阀', 1, 'D', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010016', 'B Segment', '1628041', '5M2057', '橡胶密封圈', 2, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010017', 'B Segment', '1628041', '1239624', '钢铁弹簧', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010018', 'B Segment', '1628041', '8T4896', '钢铁制垫圈', 2, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010019', 'B Segment', '1628041', '8T9377', '钢铁制螺栓', 2, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010020', 'B Segment', '1628041', '7J0204', '橡胶密封圈', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010021', 'B Segment', '1628041', '1537551', '阀用止动块', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010022', 'B Segment', '1628041', '1536976', '钢铁弹簧', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010023', 'B Segment', '1628041', '4T4631', '钢铁弹簧', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010024', 'B Segment', '1628041', '1537067', '阀用止动挡圈', 1, 'E', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010025', 'B Segment', '1628041', '5K0227', '橡胶密封圈', 1, 'H', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010026', 'B Segment', '1628041', '2788966', '钢铁制螺栓', 2, 'H', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489477027010027', 'B Segment', '1628041', '1T0284', '钢铁制螺栓', 2, 'H', 6, '2025-04-01 14:37:57', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010000', 'B Segment', '3251766', '8T4196', '钢铁制螺栓', 4, 'B', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010001', 'B Segment', '3251766', '5H4019', '钢铁安装盖', 1, 'B', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010002', 'B Segment', '3251766', '8C3206', '钢铁制法兰', 2, 'B', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010003', 'B Segment', '3251766', '8T4121', '钢铁制垫圈', 4, 'B', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010004', 'B Segment', '3251766', '3J1907', '橡胶密封圈', 2, 'B', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010005', 'B Segment', '3251766', '4J0520', '橡胶密封圈', 1, 'C', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010006', 'B Segment', '3251766', '9S4191', '钢铁制塞堵', 2, 'C', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010007', 'B Segment', '3251766', '4K1388', '橡胶密封圈', 1, 'C', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743489878416010008', 'B Segment', '3251766', '9S4188', '钢铁制塞堵', 1, 'C', 6, '2025-04-01 14:44:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010000', 'B Segment', '3250383', '1008010', '阀芯', 2, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010001', 'B Segment', '3250383', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010002', 'B Segment', '3250383', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010003', 'B Segment', '3250383', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010004', 'B Segment', '3250383', '4D0514', '阀用塞堵', 1, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010005', 'B Segment', '3250383', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010006', 'B Segment', '3250383', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010007', 'B Segment', '3250383', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010008', 'B Segment', '3250383', '4J5351', '橡胶密封圈', 1, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010009', 'B Segment', '3250383', '4T5072', '塑料密封圈', 1, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010010', 'B Segment', '3250383', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010011', 'B Segment', '3250383', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010012', 'B Segment', '3250383', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010013', 'B Segment', '3250383', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010014', 'B Segment', '3250383', '2608590', '换向阀', 1, 'B', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010015', 'B Segment', '3250383', '1008012', '阀体', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010016', 'B Segment', '3250383', '7M8485', '橡胶密封圈', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010017', 'B Segment', '3250383', '9S4181', '钢铁制塞堵', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010018', 'B Segment', '3250383', '9S4180', '钢铁制塞堵', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010019', 'B Segment', '3250383', '4J7533', '橡胶密封圈', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010020', 'B Segment', '3250383', '3529956', '阀用止动块', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010021', 'B Segment', '3250383', '3529954', '钢铁弹簧', 1, 'C', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010022', 'B Segment', '3250383', '2077434', '阀用止动块', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010023', 'B Segment', '3250383', '1919247', '钢铁制垫圈', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010024', 'B Segment', '3250383', '1982914', '钢铁制螺母', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010025', 'B Segment', '3250383', '3161438', '插装阀组件', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010026', 'B Segment', '3250383', '3617213', '插装阀组件', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010027', 'B Segment', '3250383', '1879630', '橡胶密封圈', 2, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010028', 'B Segment', '3250383', '1H1023', '橡胶密封圈', 4, 'E', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010029', 'B Segment', '3250383', '3128629', '电磁线圈', 2, 'F', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010030', 'B Segment', '3250383', '3328826', '阀座', 1, 'G', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010031', 'B Segment', '3250383', '9X8256', '钢铁制垫圈', 4, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010032', 'B Segment', '3250383', '3487104', '钢铁弹簧', 1, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010033', 'B Segment', '3250383', '6V0852', '橡胶防尘盖', 2, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010034', 'B Segment', '3250383', '1503065', '钢铁制螺纹接头组件', 1, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010035', 'B Segment', '3250383', '6V3965', '取样阀', 2, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010036', 'B Segment', '3250383', '2147568', '橡胶密封圈', 2, 'H', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010037', 'B Segment', '3250383', '2427955', '阀座', 1, 'I', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010038', 'B Segment', '3250383', '3J1907', '橡胶密封圈', 2, 'J', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743491914210010039', 'B Segment', '3250383', '7W7381', '钢铁制管路接头', 2, 'J', 6, '2025-04-01 15:18:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010000', 'B Segment', '1648913', '9T3541', '安全阀', 1, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010001', 'B Segment', '1648913', '3J1907', '橡胶密封圈', 1, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010002', 'B Segment', '1648913', '9S4191', '钢铁制塞堵', 1, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010003', 'B Segment', '1648913', '1P5766', '钢铁制法兰', 2, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010004', 'B Segment', '1648913', '8C6877', '钢铁制螺栓', 4, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010005', 'B Segment', '1648913', '8T5360', '钢铁制垫圈', 4, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010006', 'B Segment', '1648913', '1P3703', '橡胶密封圈', 1, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743492007283010007', 'B Segment', '1648913', '5P0047', '钢铁安装盖', 1, 'A', 1, '2025-04-01 15:20:07', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010000', 'B Segment', '3275267', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010001', 'B Segment', '3275267', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010002', 'B Segment', '3275267', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010003', 'B Segment', '3275267', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010004', 'B Segment', '3275267', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319449010005', 'B Segment', '3275267', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010000', 'B Segment', '3275267', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010001', 'B Segment', '3275267', '4J5351', 'SEAL-O-RING ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010002', 'B Segment', '3275267', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010003', 'B Segment', '3275267', '4T1108', 'PLUG ', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010004', 'B Segment', '3275267', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010005', 'B Segment', '3275267', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010006', 'B Segment', '3275267', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010007', 'B Segment', '3275267', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010008', 'B Segment', '3275267', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010009', 'B Segment', '3275267', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010010', 'B Segment', '3275267', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010011', 'B Segment', '3275267', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010012', 'B Segment', '3275267', '4T1108', 'PLUG ', 1, 'C', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010013', 'B Segment', '3275267', '4T5072', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010014', 'B Segment', '3275267', '4T5073', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010015', 'B Segment', '3275267', '2608590', 'VALVE GP-SHTL -B', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010016', 'B Segment', '3275267', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010017', 'B Segment', '3275267', '3664972', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319450010018', 'B Segment', '3275267', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010000', 'B Segment', '3275267', '4T1701', 'SPRING ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010001', 'B Segment', '3275267', '4T1649', 'HOUSING ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010002', 'B Segment', '3275267', '5M2057', 'SEAL-O-RING ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010003', 'B Segment', '3275267', '8T4185', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010004', 'B Segment', '3275267', '4J7533', 'SEAL-O-RING-STOR', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010005', 'B Segment', '3275267', '9S4180', 'PLUG-LD STOR ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010006', 'B Segment', '3275267', '3529956', 'RETAINER ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010007', 'B Segment', '3275267', '2077434', 'RETAINER ', 1, 'E', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010008', 'B Segment', '3275267', '3529956', 'RETAINER ', 1, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010009', 'B Segment', '3275267', '3529954', 'SPRING ', 2, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010010', 'B Segment', '3275267', '2077434', 'RETAINER ', 1, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010011', 'B Segment', '3275267', '8T4145', 'BOLT-HEX HEAD ', 4, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010012', 'B Segment', '3275267', '9X8256', 'WASHER ', 4, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010013', 'B Segment', '3275267', '3275268', 'PLATE-IDENT ', 1, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010014', 'B Segment', '3275267', '1503065', 'ADAPTER AS-ELBOW', 1, 'F', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319451010015', 'B Segment', '3275267', '3J1907', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010000', 'B Segment', '3275267', '7W7381', 'FITTING-OUTLET ', 2, 'G', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010001', 'B Segment', '3275267', '6V3965', 'ADAPTER-STR ', 2, 'G', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010002', 'B Segment', '3275267', '2147568', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010003', 'B Segment', '3275267', '6V0852', 'CAP-DUST ', 2, 'G', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010004', 'B Segment', '3275267', '2427955', 'HOUSING AS ', 1, 'H', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010005', 'B Segment', '3275267', '3617213', 'CARTRIDGE AS ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010006', 'B Segment', '3275267', '3161438', 'CARTRIDGE AS ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010007', 'B Segment', '3275267', '3128629', 'COIL AS ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010008', 'B Segment', '3275267', '1919247', 'WASHER ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010009', 'B Segment', '3275267', '1982914', 'NUT-HEXAGON ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010010', 'B Segment', '3275267', '1879630', 'SEAL-O-RING ', 1, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010011', 'B Segment', '3275267', '1H1023', 'SEAL-O RING ', 2, 'I', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010012', 'B Segment', '3275267', '3328826', 'HOUSING AS ', 1, 'J', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010013', 'B Segment', '3275267', '3617213', 'CARTRIDGE AS ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010014', 'B Segment', '3275267', '3161438', 'CARTRIDGE AS ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010015', 'B Segment', '3275267', '3128629', 'COIL AS ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010016', 'B Segment', '3275267', '1919247', 'WASHER ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010017', 'B Segment', '3275267', '1982914', 'NUT-HEXAGON ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010018', 'B Segment', '3275267', '1879630', 'SEAL-O-RING ', 1, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743560319452010019', 'B Segment', '3275267', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-04-02 10:18:39', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637906010000', 'B Segment', '3365713', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637906010001', 'B Segment', '3365713', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637906010002', 'B Segment', '3365713', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010000', 'B Segment', '3365713', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010001', 'B Segment', '3365713', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010002', 'B Segment', '3365713', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010003', 'B Segment', '3365713', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010004', 'B Segment', '3365713', '1008012', 'BODY ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010005', 'B Segment', '3365713', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010006', 'B Segment', '3365713', '1750453', 'VALVE ', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010007', 'B Segment', '3365713', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010008', 'B Segment', '3365713', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010009', 'B Segment', '3365713', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010010', 'B Segment', '3365713', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010011', 'B Segment', '3365713', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010012', 'B Segment', '3365713', '1161895', 'VALVE GP-D RLF ', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010013', 'B Segment', '3365713', '3J7354', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010014', 'B Segment', '3365713', '9S8002', 'PLUG-LD STOR ', 1, 'B', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010015', 'B Segment', '3365713', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637907010016', 'B Segment', '3365713', '3664972', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010000', 'B Segment', '3365713', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010001', 'B Segment', '3365713', '4T1701', 'SPRING ', 1, 'D', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010002', 'B Segment', '3365713', '4T1649', 'HOUSING ', 1, 'D', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010003', 'B Segment', '3365713', '5M2057', 'SEAL-O-RING ', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010004', 'B Segment', '3365713', '8T4185', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010005', 'B Segment', '3365713', '4J7533', 'SEAL-O-RING-STOR', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010006', 'B Segment', '3365713', '9S4180', 'PLUG-LD STOR ', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010007', 'B Segment', '3365713', '2077434', 'RETAINER ', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010008', 'B Segment', '3365713', '3529954', 'SPRING ', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010009', 'B Segment', '3365713', '3529956', 'RETAINER ', 1, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010010', 'B Segment', '3365713', '8T4145', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010011', 'B Segment', '3365713', '9X8256', 'WASHER ', 2, 'E', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010012', 'B Segment', '3365713', '2077434', 'RETAINER ', 1, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010013', 'B Segment', '3365713', '3529954', 'SPRING ', 1, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010014', 'B Segment', '3365713', '3529956', 'RETAINER ', 1, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010015', 'B Segment', '3365713', '8T4145', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010016', 'B Segment', '3365713', '9X8256', 'WASHER ', 2, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010017', 'B Segment', '3365713', '3365724', 'PLATE-IDENT ', 1, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637908010018', 'B Segment', '3365713', '1503065', 'ADAPTER AS-ELBOW', 1, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010000', 'B Segment', '3365713', '6V3965', 'ADAPTER-STR ', 2, 'F', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010001', 'B Segment', '3365713', '2147568', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010002', 'B Segment', '3365713', '6V0852', 'CAP-DUST ', 2, 'G', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010003', 'B Segment', '3365713', '2427955', 'HOUSING AS ', 1, 'I', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010004', 'B Segment', '3365713', '3617213', 'CARTRIDGE AS ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010005', 'B Segment', '3365713', '3161438', 'CARTRIDGE AS ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010006', 'B Segment', '3365713', '3128629', 'COIL AS ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010007', 'B Segment', '3365713', '1919247', 'WASHER ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010008', 'B Segment', '3365713', '1982914', 'NUT-HEXAGON ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010009', 'B Segment', '3365713', '1879630', 'SEAL-O-RING ', 1, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010010', 'B Segment', '3365713', '1H1023', 'SEAL-O RING ', 2, 'J', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010011', 'B Segment', '3365713', '2427955', 'HOUSING AS ', 1, 'K', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010012', 'B Segment', '3365713', '3617213', 'CARTRIDGE AS ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010013', 'B Segment', '3365713', '3161438', 'CARTRIDGE AS ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010014', 'B Segment', '3365713', '3128629', 'COIL AS ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010015', 'B Segment', '3365713', '1919247', 'WASHER ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637909010016', 'B Segment', '3365713', '1982914', 'NUT-HEXAGON ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637910010000', 'B Segment', '3365713', '1879630', 'SEAL-O-RING ', 1, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743561637910010001', 'B Segment', '3365713', '1H1023', 'SEAL-O RING ', 2, 'L', 6, '2025-04-02 10:40:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010000', 'B Segment', '3623313', '1008010', '阀芯', 2, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010001', 'B Segment', '3623313', '2S2596', '钢铁弹簧', 2, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010002', 'B Segment', '3623313', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010003', 'B Segment', '3623313', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010004', 'B Segment', '3623313', '9J8126', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010005', 'B Segment', '3623313', '9S8002', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010006', 'B Segment', '3623313', '3J7354', '橡胶密封圈', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010007', 'B Segment', '3623313', '4K1388', '橡胶密封圈', 2, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010008', 'B Segment', '3623313', '4T5072', '塑料密封圈', 1, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010009', 'B Segment', '3623313', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010010', 'B Segment', '3623313', '4J5351', '橡胶密封圈', 1, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581881010011', 'B Segment', '3623313', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010000', 'B Segment', '3623313', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010001', 'B Segment', '3623313', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010002', 'B Segment', '3623313', '2608590', '换向阀', 1, 'B', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010003', 'B Segment', '3623313', '1008012', '阀体', 1, 'A', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010004', 'B Segment', '3623313', '5M2057', '橡胶密封圈', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010005', 'B Segment', '3623313', '3664972', '塑料密封圈', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010006', 'B Segment', '3623313', '6V5556', '橡胶密封圈', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010007', 'B Segment', '3623313', '4T1701', '钢铁弹簧', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010008', 'B Segment', '3623313', '4T4511', '阀用管套', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010009', 'B Segment', '3623313', '8T4185', '螺栓8T-4185', 2, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010010', 'B Segment', '3623313', '9S4180', '钢铁制塞堵', 1, 'D', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010011', 'B Segment', '3623313', '4J7533', '橡胶密封圈', 1, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010012', 'B Segment', '3623313', '2077434', '阀用止动块', 2, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010013', 'B Segment', '3623313', '3529954', '钢铁弹簧', 1, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010014', 'B Segment', '3623313', '3529956', '阀用止动块', 1, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010015', 'B Segment', '3623313', '1879630', '橡胶密封圈', 2, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010016', 'B Segment', '3623313', '1H1023', '橡胶密封圈', 4, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010017', 'B Segment', '3623313', '1919247', '钢铁制垫圈', 2, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581882010018', 'B Segment', '3623313', '1982914', '钢铁制螺母', 2, 'F', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010000', 'B Segment', '3623313', '2427955', '阀座', 2, 'G', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010001', 'B Segment', '3623313', '3128629', '电磁线圈', 2, 'H', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010002', 'B Segment', '3623313', '3161438', '插装阀组件', 2, 'I', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010003', 'B Segment', '3623313', '3617213', '插装阀组件', 2, 'I', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010004', 'B Segment', '3623313', '9X8256', '钢铁制垫圈', 4, 'I', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010005', 'B Segment', '3623313', '3487104', '钢铁弹簧', 1, 'I', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010006', 'B Segment', '3623313', '6V3965', '取样阀', 1, 'J', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010007', 'B Segment', '3623313', '2147568', '橡胶密封圈', 1, 'J', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743563581883010008', 'B Segment', '3623313', '6V0852', '橡胶防尘盖', 1, 'J', 6, '2025-04-02 11:13:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120073010000', 'B Segment', '3623319', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120073010001', 'B Segment', '3623319', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120074010000', 'B Segment', '3623319', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120074010001', 'B Segment', '3623319', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120074010002', 'B Segment', '3623319', '4T4207', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120074010003', 'B Segment', '3623319', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120075010000', 'B Segment', '3623319', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120075010001', 'B Segment', '3623319', '4J5351', 'SEAL-O-RING ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120075010002', 'B Segment', '3623319', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120075010003', 'B Segment', '3623319', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120076010000', 'B Segment', '3623319', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120076010001', 'B Segment', '3623319', '4T1108', 'PLUG ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120078010000', 'B Segment', '3623319', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120079010000', 'B Segment', '3623319', '3623336', 'PLATE-IDENT ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120081010000', 'B Segment', '3623319', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120082010000', 'B Segment', '3623319', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120082010001', 'B Segment', '3623319', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120082010002', 'B Segment', '3623319', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010000', 'B Segment', '3623319', '4K1388', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010001', 'B Segment', '3623319', '4T5072', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010002', 'B Segment', '3623319', '4T1108', 'PLUG ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010003', 'B Segment', '3623319', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010004', 'B Segment', '3623319', '3J7354', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010005', 'B Segment', '3623319', '9S8002', 'PLUG-LD STOR ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010006', 'B Segment', '3623319', '6V5556', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010007', 'B Segment', '3623319', '3664972', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010008', 'B Segment', '3623319', '4T4511', 'SLEEVE ', 1, 'E', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010009', 'B Segment', '3623319', '4T1701', 'SPRING ', 1, 'E', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010010', 'B Segment', '3623319', '4T1649', 'HOUSING ', 1, 'E', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010011', 'B Segment', '3623319', '5M2057', 'SEAL-O-RING ', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120084010012', 'B Segment', '3623319', '8T4185', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010000', 'B Segment', '3623319', '4J7533', 'SEAL-O-RING-STOR', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010001', 'B Segment', '3623319', '9S4180', 'PLUG-LD STOR ', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010002', 'B Segment', '3623319', '2077434', 'RETAINER ', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010003', 'B Segment', '3623319', '3529954', 'SPRING ', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010004', 'B Segment', '3623319', '3529956', 'RETAINER ', 1, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010005', 'B Segment', '3623319', '8T4145', 'BOLT-HEX HEAD ', 2, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010006', 'B Segment', '3623319', '9X8256', 'WASHER ', 2, 'F', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010007', 'B Segment', '3623319', '2077434', 'RETAINER ', 1, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120086010008', 'B Segment', '3623319', '3529954', 'SPRING ', 1, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010000', 'B Segment', '3623319', '3529956', 'RETAINER ', 1, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010001', 'B Segment', '3623319', '8T4145', 'BOLT-HEX HEAD ', 2, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010002', 'B Segment', '3623319', '9X8256', 'WASHER ', 2, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010003', 'B Segment', '3623319', '1503065', 'ADAPTER AS-ELBOW', 2, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010004', 'B Segment', '3623319', '3J1907', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010005', 'B Segment', '3623319', '7W7381', 'FITTING-OUTLET ', 2, 'H', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010006', 'B Segment', '3623319', '6V3965', 'ADAPTER-STR ', 2, 'H', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010007', 'B Segment', '3623319', '2147568', 'SEAL-O-RING-STOR', 2, 'H', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010008', 'B Segment', '3623319', '6V0852', 'CAP-DUST ', 2, 'H', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575120087010009', 'B Segment', '3623319', '3120312', 'CAP-CONNECTOR ', 2, 'H', 6, '2025-04-02 14:25:20', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757718010000', 'B Segment', '3623315', '1008010', 'VALVE ', 2, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010000', 'B Segment', '3623315', '2S2596', 'SPRING ', 2, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010001', 'B Segment', '3623315', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010002', 'B Segment', '3623315', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010003', 'B Segment', '3623315', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010004', 'B Segment', '3623315', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010005', 'B Segment', '3623315', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010006', 'B Segment', '3623315', '1008012', 'BODY ', 1, 'A', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010007', 'B Segment', '3623315', '4K1388', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010008', 'B Segment', '3623315', '7J9933', 'SEAL-O RING ', 2, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010009', 'B Segment', '3623315', '4T5073', 'RING-BACKUP ', 2, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010010', 'B Segment', '3623315', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010011', 'B Segment', '3623315', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010012', 'B Segment', '3623315', '1008012', 'BODY ', 1, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010013', 'B Segment', '3623315', '2S2596', 'SPRING ', 1, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010014', 'B Segment', '3623315', '1008010', 'VALVE ', 1, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010015', 'B Segment', '3623315', '2608590', 'VALVE GP-SHTL -B', 1, 'B', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010016', 'B Segment', '3623315', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010017', 'B Segment', '3623315', '3664972', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010018', 'B Segment', '3623315', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010019', 'B Segment', '3623315', '4B4278', 'WASHER ', 5, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010020', 'B Segment', '3623315', '4T1701', 'SPRING ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010021', 'B Segment', '3623315', '4T1649', 'HOUSING ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010022', 'B Segment', '3623315', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010023', 'B Segment', '3623315', '8T4185', 'BOLT-HEX HEAD ', 2, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010024', 'B Segment', '3623315', '4J7533', 'SEAL-O-RING-STOR', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757719010025', 'B Segment', '3623315', '9S4180', 'PLUG-LD STOR ', 1, 'D', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010000', 'B Segment', '3623315', '2077434', 'RETAINER ', 2, 'E', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010001', 'B Segment', '3623315', '3529954', 'SPRING ', 2, 'E', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010002', 'B Segment', '3623315', '3529956', 'RETAINER ', 2, 'E', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010003', 'B Segment', '3623315', '8T4145', 'BOLT-HEX HEAD ', 4, 'E', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010004', 'B Segment', '3623315', '9X8256', 'WASHER ', 4, 'E', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010005', 'B Segment', '3623315', '3623332', 'PLATE-IDENT ', 1, 'F', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010006', 'B Segment', '3623315', '1503065', 'ADAPTER AS-ELBOW', 1, 'F', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010007', 'B Segment', '3623315', '6V3965', 'ADAPTER-STR ', 2, 'F', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010008', 'B Segment', '3623315', '2147568', 'SEAL-O-RING-STOR', 2, 'F', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010009', 'B Segment', '3623315', '6V0852', 'CAP-DUST ', 2, 'F', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010010', 'B Segment', '3623315', '2427955', 'HOUSING AS ', 2, 'H', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010011', 'B Segment', '3623315', '3617213', 'CARTRIDGE AS ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010012', 'B Segment', '3623315', '3161438', 'CARTRIDGE AS ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010013', 'B Segment', '3623315', '3128629', 'COIL AS ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010014', 'B Segment', '3623315', '1919247', 'WASHER ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010015', 'B Segment', '3623315', '1982914', 'NUT-HEXAGON ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010016', 'B Segment', '3623315', '1879630', 'SEAL-O-RING ', 1, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010017', 'B Segment', '3623315', '1H1023', 'SEAL-O RING ', 2, 'I', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010018', 'B Segment', '3623315', '3617213', 'CARTRIDGE AS ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010019', 'B Segment', '3623315', '3161438', 'CARTRIDGE AS ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010020', 'B Segment', '3623315', '3128629', 'COIL AS ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010021', 'B Segment', '3623315', '1919247', 'WASHER ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010022', 'B Segment', '3623315', '1982914', 'NUT-HEXAGON ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010023', 'B Segment', '3623315', '1879630', 'SEAL-O-RING ', 1, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743575757720010024', 'B Segment', '3623315', '1H1023', 'SEAL-O RING ', 2, 'K', 6, '2025-04-02 14:35:58', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956897010000', 'B Segment', '3661352', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010000', 'B Segment', '3661352', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010001', 'B Segment', '3661352', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010002', 'B Segment', '3661352', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010003', 'B Segment', '3661352', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010004', 'B Segment', '3661352', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010005', 'B Segment', '3661352', '9S8002', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010006', 'B Segment', '3661352', '4K1388', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010007', 'B Segment', '3661352', '4T1108', 'PLUG ', 1, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010008', 'B Segment', '3661352', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010009', 'B Segment', '3661352', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010010', 'B Segment', '3661352', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010011', 'B Segment', '3661352', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010012', 'B Segment', '3661352', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010013', 'B Segment', '3661352', '1008012', 'BODY ', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010014', 'B Segment', '3661352', '4K1388', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010015', 'B Segment', '3661352', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010016', 'B Segment', '3661352', '7J9933', 'SEAL-O RING ', 2, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010017', 'B Segment', '3661352', '1008010', 'VALVE ', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956898010018', 'B Segment', '3661352', '2S2596', 'SPRING ', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010000', 'B Segment', '3661352', '3J7354', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010001', 'B Segment', '3661352', '9S8002', 'PLUG-LD STOR ', 1, 'C', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010002', 'B Segment', '3661352', '4T4511', 'SLEEVE ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010003', 'B Segment', '3661352', '3664972', 'RING-BACKUP ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010004', 'B Segment', '3661352', '6V5556', 'SEAL-O RING ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010005', 'B Segment', '3661352', '4T1701', 'SPRING ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010006', 'B Segment', '3661352', '5M2057', 'SEAL-O-RING ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010007', 'B Segment', '3661352', '8T4185', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010008', 'B Segment', '3661352', '4J7533', 'SEAL-O-RING-STOR', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010009', 'B Segment', '3661352', '9S4180', 'PLUG-LD STOR ', 1, 'E', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010010', 'B Segment', '3661352', '4T1649', 'HOUSING ', 1, 'F', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010011', 'B Segment', '3661352', '3487104', 'SPRING ', 1, 'F', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010012', 'B Segment', '3661352', '3529955', 'RETAINER ', 1, 'F', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010013', 'B Segment', '3661352', '3529956', 'RETAINER ', 1, 'F', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010014', 'B Segment', '3661352', '2077434', 'RETAINER ', 2, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010015', 'B Segment', '3661352', '8T4145', 'BOLT-HEX HEAD ', 4, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010016', 'B Segment', '3661352', '9X8256', 'WASHER ', 4, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010017', 'B Segment', '3661352', '3529954', 'SPRING ', 1, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010018', 'B Segment', '3661352', '3661344', 'PLATE-IDENT ', 1, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010019', 'B Segment', '3661352', '3J1907', 'SEAL-O-RING-STOR', 2, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010020', 'B Segment', '3661352', '9S8004', 'PLUG-LD STOR ', 2, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010021', 'B Segment', '3661352', '2660531', 'CAP-CONNECTOR ', 2, 'G', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010022', 'B Segment', '3661352', '3617213', 'CARTRIDGE AS ', 2, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010023', 'B Segment', '3661352', '3161438', 'CARTRIDGE AS ', 2, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010024', 'B Segment', '3661352', '1919247', 'WASHER ', 2, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956899010025', 'B Segment', '3661352', '1982914', 'NUT-HEXAGON ', 2, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956900010000', 'B Segment', '3661352', '1879630', 'SEAL-O-RING ', 2, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956900010001', 'B Segment', '3661352', '1H1023', 'SEAL-O RING ', 4, 'H', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956900010002', 'B Segment', '3661352', '3328826', 'HOUSING AS ', 2, 'I', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743578956900010003', 'B Segment', '3661352', '3128629', 'COIL AS ', 2, 'J', 6, '2025-04-02 15:29:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010000', 'B Segment', '1693323', '9J8126', '节流阀', 1, 'A', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010001', 'B Segment', '1693323', '4T1860', '阀', 1, 'A', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010002', 'B Segment', '1693323', '5M2057', '密封O型圈', 1, 'A', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010003', 'B Segment', '1693323', '5M2057', '密封O型圈', 1, 'B', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010004', 'B Segment', '1693323', '4T1701', '弹簧', 1, 'B', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010005', 'B Segment', '1693323', '8T2501', '螺钉', 2, 'B', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010006', 'B Segment', '1693323', '4T1649', '端盖', 1, 'B', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010007', 'B Segment', '1693323', '1730514', '端盖', 1, 'C', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010008', 'B Segment', '1693323', '1T0284', '螺钉', 2, 'C', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010009', 'B Segment', '1693323', '4T4631', '弹簧', 1, 'D', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010010', 'B Segment', '1693323', '1536976', '弹簧', 1, 'D', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010011', 'B Segment', '1693323', '1537067', '弹簧座', 1, 'D', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010012', 'B Segment', '1693323', '1537551', '弹簧座', 1, 'D', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010013', 'B Segment', '1693323', '2788966', '螺钉', 2, 'E', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010014', 'B Segment', '1693323', '1837029', '铭牌', 1, 'E', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010015', 'B Segment', '1693323', '5K0227', '密封O型圈', 1, 'E', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010016', 'B Segment', '1693323', '9S8002', '堵头', 1, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010017', 'B Segment', '1693323', '9S8001', '堵头', 2, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010018', 'B Segment', '1693323', '4T5073', '塑料密封圈', 2, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010019', 'B Segment', '1693323', '3J7354', 'O型圈', 1, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010020', 'B Segment', '1693323', '4J7533', '橡胶密封圈', 2, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010021', 'B Segment', '1693323', '1008010', 'VALVE', 2, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010022', 'B Segment', '1693323', '1008012', 'VALVE', 1, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010023', 'B Segment', '1693323', '7J9933', 'SEAL-O RING', 2, '预装配1', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010024', 'B Segment', '1693323', '4T1108', 'VALVE', 1, '预装配2', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010025', 'B Segment', '1693323', '1008011', '阀体', 1, '预装配2', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010026', 'B Segment', '1693323', '7M8485', 'SEAL-O-RING-STOR', 1, '预装配2', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010027', 'B Segment', '1693323', '2S2596', '弹簧', 2, '预装配2', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010028', 'B Segment', '1693323', '4J5351', '橡胶密封圈', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010029', 'B Segment', '1693323', '4K1388', '密封O型圈', 2, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010030', 'B Segment', '1693323', '6V5556', 'SEAL-O RING ', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010031', 'B Segment', '1693323', '4T5072', '塑料密封圈', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010032', 'B Segment', '1693323', '4T4511', 'SLEEVE ', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010033', 'B Segment', '1693323', '3664972', 'RING-BACKUP ', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010034', 'B Segment', '1693323', '1612684', 'PLUG-LD STOR', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743581373602010035', 'B Segment', '1693323', '7J0204', 'O型圈', 1, '预装配3', 6, '2025-04-02 16:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615297010000', 'B Segment', '6E5138', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615297010001', 'B Segment', '6E5138', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615297010002', 'B Segment', '6E5138', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615297010003', 'B Segment', '6E5138', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615297010004', 'B Segment', '6E5138', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010000', 'B Segment', '6E5138', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010001', 'B Segment', '6E5138', '3603690', 'PLUG-HD STOR ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010002', 'B Segment', '6E5138', '4K1388', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010003', 'B Segment', '6E5138', '4T5073', 'RING-BACKUP ', 1, 'A', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010004', 'B Segment', '6E5138', '4T1108', 'PLUG ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010005', 'B Segment', '6E5138', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010006', 'B Segment', '6E5138', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010007', 'B Segment', '6E5138', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615298010008', 'B Segment', '6E5138', '3676001', 'PLUG AS-HD STOR ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615300010000', 'B Segment', '6E5138', '4J7533', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010000', 'B Segment', '6E5138', '9S8001', 'PLUG-LD STOR ', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010001', 'B Segment', '6E5138', '4T1860', 'VALVE GP-SHTL -B', 1, 'B', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010002', 'B Segment', '6E5138', '1008012', 'BODY ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010003', 'B Segment', '6E5138', '4K1388', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010004', 'B Segment', '6E5138', '7J9933', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010005', 'B Segment', '6E5138', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010006', 'B Segment', '6E5138', '1008010', 'VALVE ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010007', 'B Segment', '6E5138', '2S2596', 'SPRING ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010008', 'B Segment', '6E5138', '6V5556', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010009', 'B Segment', '6E5138', '4T5074', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010010', 'B Segment', '6E5138', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010011', 'B Segment', '6E5138', '4T1701', 'SPRING ', 1, 'D', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010012', 'B Segment', '6E5138', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010013', 'B Segment', '6E5138', '8T2501', 'BOLT ', 2, 'D', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010014', 'B Segment', '6E5138', '4T0993', 'RETAINER ', 4, 'D1', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010015', 'B Segment', '6E5138', '4T1649', 'HOUSING ', 1, 'E', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010016', 'B Segment', '6E5138', '3J7694', 'SPRING ', 1, 'E', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010017', 'B Segment', '6E5138', '7X0277', 'BOLT ', 2, 'E', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010018', 'B Segment', '6E5138', '8T4224', 'WASHER-HARD ', 2, 'E', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010019', 'B Segment', '6E5138', '4T1852', 'RETAINER ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010020', 'B Segment', '6E5138', '1089402', 'SPRING ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010021', 'B Segment', '6E5138', '4T1851', 'RETAINER ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010022', 'B Segment', '6E5138', '2D6642', 'BALL ', 6, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010023', 'B Segment', '6E5138', '2D0598', 'SEAL-O RING ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010024', 'B Segment', '6E5138', '4L7711', 'SEAL-O RING ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010025', 'B Segment', '6E5138', '4T1849', 'HOUSING ', 1, 'F', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010026', 'B Segment', '6E5138', '7X0280', 'BOLT ', 2, 'G', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010027', 'B Segment', '6E5138', '8T4224', 'WASHER-HARD ', 2, 'G', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010028', 'B Segment', '6E5138', '1425590', 'PLATE-IDENT ', 1, 'G', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010029', 'B Segment', '6E5138', '4T2691', 'HOUSING ', 1, 'H', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010030', 'B Segment', '6E5138', '6V5391', 'SEAL-O RING ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010031', 'B Segment', '6E5138', '9T4684', 'HOUSING ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010032', 'B Segment', '6E5138', '9H6761', 'SEAL-O RING ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010033', 'B Segment', '6E5138', '4T5945', 'RING ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010034', 'B Segment', '6E5138', '6E2007', 'LEVER ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010035', 'B Segment', '6E5138', '4T5795', 'BEARING ', 2, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010036', 'B Segment', '6E5138', '9T4685', 'SHIM ', 6, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010037', 'B Segment', '6E5138', '9T4697', 'BOOT ', 1, 'I', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010038', 'B Segment', '6E5138', '9T4683', 'COVER ', 1, 'J', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010039', 'B Segment', '6E5138', '6L5897', 'BOLT-HEX SKT HD ', 2, 'J', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010040', 'B Segment', '6E5138', '8T0334', 'WASHER-HARD ', 2, 'J', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010041', 'B Segment', '6E5138', '6V5391', 'SEAL-O RING ', 1, 'J', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582615302010042', 'B Segment', '6E5138', '5P5874', 'SEAL-O-RING ', 1, 'J', 6, '2025-04-02 16:30:15', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010000', 'B Segment', '6E4049', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010001', 'B Segment', '6E4049', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010002', 'B Segment', '6E4049', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010003', 'B Segment', '6E4049', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010004', 'B Segment', '6E4049', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010005', 'B Segment', '6E4049', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010006', 'B Segment', '6E4049', '3603690', 'PLUG-HD STOR ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010007', 'B Segment', '6E4049', '4T1108', 'PLUG ', 1, 'A', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010008', 'B Segment', '6E4049', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010009', 'B Segment', '6E4049', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010010', 'B Segment', '6E4049', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010011', 'B Segment', '6E4049', '4J5351', 'SEAL-O-RING ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010012', 'B Segment', '6E4049', '4T5072', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010013', 'B Segment', '6E4049', '3676001', 'PLUG AS-HD STOR ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010014', 'B Segment', '6E4049', '4J7533', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010015', 'B Segment', '6E4049', '9S8001', 'PLUG-LD STOR ', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010016', 'B Segment', '6E4049', '4T1860', 'VALVE GP-SHTL -B', 1, 'B', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010017', 'B Segment', '6E4049', '4T1108', 'PLUG ', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010018', 'B Segment', '6E4049', '4K1388', 'SEAL-O-RING-STOR', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010019', 'B Segment', '6E4049', '7J9933', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010020', 'B Segment', '6E4049', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010021', 'B Segment', '6E4049', '4J5351', 'SEAL-O-RING ', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010022', 'B Segment', '6E4049', '4T5072', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010023', 'B Segment', '6E4049', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010024', 'B Segment', '6E4049', '1216649', 'VALVE GP-RELIEF ', 1, 'D', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010025', 'B Segment', '6E4049', '1239624', 'SPRING ', 1, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010026', 'B Segment', '6E4049', '8T9377', 'BOLT-HEX HEAD ', 2, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010027', 'B Segment', '6E4049', '8T4896', 'WASHER-HARD ', 2, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010028', 'B Segment', '6E4049', '4T1850', 'HOUSING ', 1, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010029', 'B Segment', '6E4049', '2D0598', 'SEAL-O RING ', 1, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010030', 'B Segment', '6E4049', '8C3121', 'BOLT ', 2, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010031', 'B Segment', '6E4049', '8T4224', 'WASHER-HARD ', 2, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010032', 'B Segment', '6E4049', '1425584', 'PLATE-IDENT ', 1, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643728010033', 'B Segment', '6E4049', '4T1021', 'RETAINER ', 2, 'E', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010000', 'B Segment', '6E4049', '5J1391', 'SPRING ', 1, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010001', 'B Segment', '6E4049', '4T0993', 'RETAINER ', 2, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010002', 'B Segment', '6E4049', '7J0204', 'SEAL-O-RING ', 1, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010003', 'B Segment', '6E4049', '3603689', 'PLUG-HD STOR ', 1, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010004', 'B Segment', '6E4049', '7X0277', 'BOLT ', 2, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010005', 'B Segment', '6E4049', '8T4224', 'WASHER-HARD ', 2, 'F', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010006', 'B Segment', '6E4049', '4T2691', 'HOUSING ', 1, 'G', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010007', 'B Segment', '6E4049', '6V5391', 'SEAL-O RING ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010008', 'B Segment', '6E4049', '9T4684', 'HOUSING ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010009', 'B Segment', '6E4049', '4T5795', 'BEARING ', 2, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010010', 'B Segment', '6E4049', '9H6761', 'SEAL-O RING ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010011', 'B Segment', '6E4049', '4T5945', 'RING ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010012', 'B Segment', '6E4049', '4T0998', 'LEVER ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010013', 'B Segment', '6E4049', '9T4685', 'SHIM ', 6, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010014', 'B Segment', '6E4049', '9T4697', 'BOOT ', 1, 'H', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010015', 'B Segment', '6E4049', '6L5897', 'BOLT-HEX SKT HD ', 2, 'I', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010016', 'B Segment', '6E4049', '8T0334', 'WASHER-HARD ', 2, 'I', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010017', 'B Segment', '6E4049', '9T4683', 'COVER ', 1, 'I', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010018', 'B Segment', '6E4049', '6V5391', 'SEAL-O RING ', 1, 'I', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582643729010019', 'B Segment', '6E4049', '5P5874', 'SEAL-O-RING ', 1, 'I', 6, '2025-04-02 16:30:44', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010000', 'B Segment', '6E4051', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010001', 'B Segment', '6E4051', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010002', 'B Segment', '6E4051', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010003', 'B Segment', '6E4051', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010004', 'B Segment', '6E4051', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010005', 'B Segment', '6E4051', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010006', 'B Segment', '6E4051', '9S4182', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010007', 'B Segment', '6E4051', '4K1388', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010008', 'B Segment', '6E4051', '7J9933', 'SEAL-O RING ', 1, 'A', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010009', 'B Segment', '6E4051', '1008012', 'BODY ', 2, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010010', 'B Segment', '6E4051', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010011', 'B Segment', '6E4051', '2S2596', 'SPRING ', 1, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010012', 'B Segment', '6E4051', '1008010', 'VALVE ', 1, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010013', 'B Segment', '6E4051', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010014', 'B Segment', '6E4051', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010015', 'B Segment', '6E4051', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010016', 'B Segment', '6E4051', '4T1860', 'VALVE GP-SHTL -B', 1, 'C', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010017', 'B Segment', '6E4051', '7J9933', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010018', 'B Segment', '6E4051', '4T5073', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010019', 'B Segment', '6E4051', '2S2596', 'SPRING ', 1, 'C', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010020', 'B Segment', '6E4051', '1008010', 'VALVE ', 1, 'C', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010021', 'B Segment', '6E4051', '6V5556', 'SEAL-O RING ', 1, 'D', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010022', 'B Segment', '6E4051', '4T5074', 'RING-BACKUP ', 1, 'D', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010023', 'B Segment', '6E4051', '4T4511', 'SLEEVE ', 1, 'D', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010024', 'B Segment', '6E4051', '4T1701', 'SPRING ', 1, 'D', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010025', 'B Segment', '6E4051', '4T1649', 'HOUSING ', 1, 'D', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010026', 'B Segment', '6E4051', '5M2057', 'SEAL-O-RING ', 1, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010027', 'B Segment', '6E4051', '8T2501', 'BOLT ', 2, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010028', 'B Segment', '6E4051', '4T1850', 'HOUSING ', 1, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010029', 'B Segment', '6E4051', '2D0598', 'SEAL-O RING ', 1, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010030', 'B Segment', '6E4051', '8C3121', 'BOLT ', 2, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010031', 'B Segment', '6E4051', '8T4224', 'WASHER-HARD ', 2, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010032', 'B Segment', '6E4051', '1425589', 'PLATE-IDENT ', 1, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010033', 'B Segment', '6E4051', '4T1021', 'RETAINER ', 2, 'E', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010034', 'B Segment', '6E4051', '4J3832', 'SPRING ', 1, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010035', 'B Segment', '6E4051', '4T0993', 'RETAINER ', 2, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010036', 'B Segment', '6E4051', '1N5999', 'PLUG-LD STOR ', 1, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010037', 'B Segment', '6E4051', '7J0204', 'SEAL-O-RING ', 1, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010038', 'B Segment', '6E4051', '7X0277', 'BOLT ', 2, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010039', 'B Segment', '6E4051', '8T4224', 'WASHER-HARD ', 2, 'F', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010040', 'B Segment', '6E4051', '4T2691', 'HOUSING ', 1, 'G', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010041', 'B Segment', '6E4051', '6V5391', 'SEAL-O RING ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010042', 'B Segment', '6E4051', '9T4684', 'HOUSING ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010043', 'B Segment', '6E4051', '4T5795', 'BEARING ', 2, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010044', 'B Segment', '6E4051', '9H6761', 'SEAL-O RING ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010045', 'B Segment', '6E4051', '4T5945', 'RING ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010046', 'B Segment', '6E4051', '4T0998', 'LEVER ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010047', 'B Segment', '6E4051', '9T4685', 'SHIM ', 6, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010048', 'B Segment', '6E4051', '9T4697', 'BOOT ', 1, 'H', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010049', 'B Segment', '6E4051', '6L5897', 'BOLT-HEX SKT HD ', 2, 'I', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010050', 'B Segment', '6E4051', '8T0334', 'WASHER-HARD ', 2, 'I', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010051', 'B Segment', '6E4051', '9T4683', 'COVER ', 1, 'I', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010052', 'B Segment', '6E4051', '6V5391', 'SEAL-O RING ', 1, 'I', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582662023010053', 'B Segment', '6E4051', '5P5874', 'SEAL-O-RING ', 1, 'I', 6, '2025-04-02 16:31:02', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010000', 'B Segment', '1878637', '1008010', 'VALVE ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010001', 'B Segment', '1878637', '2S2596', 'SPRING ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010002', 'B Segment', '1878637', '1008011', 'PLUG ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010003', 'B Segment', '1878637', '7M8485', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010004', 'B Segment', '1878637', '9J8126', 'PLUG-NPTF ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010005', 'B Segment', '1878637', '3J7354', 'SEAL-O-RING-STOR', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010006', 'B Segment', '1878637', '9S4182', 'PLUG-LD STOR ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010007', 'B Segment', '1878637', '1008012', 'BODY ', 1, 'A', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010008', 'B Segment', '1878637', '4K1388', 'SEAL-O-RING-STOR', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010009', 'B Segment', '1878637', '7J9933', 'SEAL-O RING ', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010010', 'B Segment', '1878637', '4T5073', 'RING-BACKUP ', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010011', 'B Segment', '1878637', '2S2596', 'SPRING ', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010012', 'B Segment', '1878637', '1750453', 'VALVE ', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010013', 'B Segment', '1878637', '4J7533', 'SEAL-O-RING-STOR', 2, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010014', 'B Segment', '1878637', '9S8001', 'PLUG-LD STOR ', 2, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010015', 'B Segment', '1878637', '4T1860', 'VALVE GP-SHTL -B', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010016', 'B Segment', '1878637', '1161895', 'VALVE GP-D RLF ', 1, 'B', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010017', 'B Segment', '1878637', '6V5556', 'SEAL-O RING ', 1, 'C', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010018', 'B Segment', '1878637', '4T5074', 'RING-BACKUP ', 1, 'C', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010019', 'B Segment', '1878637', '4T4511', 'SLEEVE ', 1, 'C', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010020', 'B Segment', '1878637', '4T1701', 'SPRING ', 1, 'C', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010021', 'B Segment', '1878637', '4T1649', 'HOUSING ', 1, 'C', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010022', 'B Segment', '1878637', '5M2057', 'SEAL-O-RING ', 1, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010023', 'B Segment', '1878637', '8T2501', 'BOLT ', 2, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010024', 'B Segment', '1878637', '4T1850', 'HOUSING ', 1, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010025', 'B Segment', '1878637', '2D0598', 'SEAL-O RING ', 1, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010026', 'B Segment', '1878637', '8C3121', 'BOLT ', 2, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010027', 'B Segment', '1878637', '8T4224', 'WASHER-HARD ', 2, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010028', 'B Segment', '1878637', '1883476', 'PLATE-IDENT ', 1, 'D', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010029', 'B Segment', '1878637', '4T1021', 'RETAINER ', 2, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010030', 'B Segment', '1878637', '4J3832', 'SPRING ', 1, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010031', 'B Segment', '1878637', '4T0993', 'RETAINER ', 2, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010032', 'B Segment', '1878637', '1N5999', 'PLUG-LD STOR ', 1, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010033', 'B Segment', '1878637', '7J0204', 'SEAL-O-RING ', 1, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010034', 'B Segment', '1878637', '7X0277', 'BOLT ', 2, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010035', 'B Segment', '1878637', '8T4224', 'WASHER-HARD ', 2, 'E', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010036', 'B Segment', '1878637', '4T2691', 'HOUSING ', 1, 'F', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010037', 'B Segment', '1878637', '6V5391', 'SEAL-O RING ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010038', 'B Segment', '1878637', '9T4684', 'HOUSING ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010039', 'B Segment', '1878637', '4T5795', 'BEARING ', 2, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010040', 'B Segment', '1878637', '9H6761', 'SEAL-O RING ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010041', 'B Segment', '1878637', '4T5945', 'RING ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010042', 'B Segment', '1878637', '4T0998', 'LEVER ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010043', 'B Segment', '1878637', '9T4685', 'SHIM ', 6, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690609010044', 'B Segment', '1878637', '9T4697', 'BOOT ', 1, 'G', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690610010000', 'B Segment', '1878637', '6L5897', 'BOLT-HEX SKT HD ', 2, 'H', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690610010001', 'B Segment', '1878637', '8T0334', 'WASHER-HARD ', 2, 'H', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690610010002', 'B Segment', '1878637', '9T4683', 'COVER ', 1, 'H', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690610010003', 'B Segment', '1878637', '6V5391', 'SEAL-O RING ', 1, 'H', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582690610010004', 'B Segment', '1878637', '5P5874', 'SEAL-O-RING ', 1, 'H', 6, '2025-04-02 16:31:31', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010000', 'B Stack', '1878636', '8J6815', 'PLUG-NPTF ', 1, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010001', 'B Stack', '1878636', '4T5896', 'VALVE GP-CHECK-C', 1, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010002', 'B Stack', '1878636', '3J7354', 'SEAL-O-RING-STOR', 2, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010003', 'B Stack', '1878636', '9S4182', 'PLUG-LD STOR ', 2, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010004', 'B Stack', '1878636', '3J1907', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010005', 'B Stack', '1878636', '9S4191', 'PLUG-LD STOR ', 1, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010006', 'B Stack', '1878636', '6E4139', 'VALVE GP-D RLF-A', 1, 'A', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010007', 'B Stack', '1878636', '1047574', 'VALVE GP-RELIEF ', 1, 'B', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010008', 'B Stack', '1878636', '3K0360', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010009', 'B Stack', '1878636', '9S8005', 'PLUG-LD STOR ', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010010', 'B Stack', '1878636', '3J1907', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010011', 'B Stack', '1878636', '8J9990', 'ADAPTER-STR ', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010012', 'B Stack', '1878636', '3J1907', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010013', 'B Stack', '1878636', '9S4191', 'PLUG-LD STOR ', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010014', 'B Stack', '1878636', '3J1907', 'SEAL-O-RING-STOR', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010015', 'B Stack', '1878636', '3603692', 'PLUG-LD STOR ', 1, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010016', 'B Stack', '1878636', '3J1907', 'SEAL-O-RING-STOR', 2, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010017', 'B Stack', '1878636', '3603692', 'PLUG-LD STOR ', 2, 'C', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010018', 'B Stack', '1878636', '1P4578', 'FLANGE-SPLIT ', 2, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010019', 'B Stack', '1878636', '8T8916', 'BOLT ', 4, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010020', 'B Stack', '1878636', '8T5360', 'WASHER-HARD ', 4, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010021', 'B Stack', '1878636', '5H4020', 'FLANGE-COVER ', 1, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010022', 'B Stack', '1878636', '4J0522', 'SEAL-O-RING ', 1, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010023', 'B Stack', '1878636', '1883475', 'PLATE ', 1, 'D', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010024', 'B Stack', '1878636', '3603690', 'PLUG-LD STOR ', 5, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010025', 'B Stack', '1878636', '3J7354', 'SEAL-O-RING-STOR', 5, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010026', 'B Stack', '1878636', '4J0522', 'SEAL-O-RING ', 3, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010027', 'B Stack', '1878636', '6V5555', 'SEAL-O RING ', 3, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010028', 'B Stack', '1878636', '1P3702', 'SEAL-RECTANGULAR', 1, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010029', 'B Stack', '1878636', '6V8188', 'NUT-FULL ', 3, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010030', 'B Stack', '1878636', '8T4223', 'WASHER-HARD ', 3, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010031', 'B Stack', '1878636', '5H4019', 'COVER ', 8, 'E', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010032', 'B Stack', '1878636', '1P4577', 'FLANGE-SPLIT ', 16, 'F', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010033', 'B Stack', '1878636', '4J0520', 'SEAL-O-RING ', 8, 'G', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010034', 'B Stack', '1878636', '8T4896', 'WASHER-HARD ', 32, 'G', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010035', 'B Stack', '1878636', '5S7382', 'BOLT-HEX HEAD ', 32, 'G', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010036', 'B Stack', '1878636', '4805267', 'CLIP', 2, 'G', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010037', 'B Stack', '1878636', '4J0522', 'SEAL-O-RING ', 12, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010038', 'B Stack', '1878636', '6V5555', 'SEAL-O RING ', 12, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010039', 'B Stack', '1878636', '4J8997', 'SEAL-O-RING ', 4, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010040', 'B Stack', '1878636', '6V8188', 'NUT-FULL ', 3, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010041', 'B Stack', '1878636', '8T4223', 'WASHER-HARD ', 3, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010042', 'B Stack', '1878636', '1P4577', 'FLANGE-SPLIT ', 2, ' H', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010043', 'B Stack', '1878636', '9T2856', 'ROD ', 3, 'I', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010044', 'B Stack', '1878636', '5S7382', 'BOLT-HEX HEAD ', 4, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010045', 'B Stack', '1878636', '5H4019', 'COVER ', 1, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010046', 'B Stack', '1878636', '4J0520', 'SEAL-O-RING ', 1, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010047', 'B Stack', '1878636', '8T4896', 'WASHER-HARD ', 4, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010048', 'B Stack', '1878636', '1P4578', 'FLANGE-SPLIT ', 2, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010049', 'B Stack', '1878636', '8T8916', 'BOLT ', 4, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010050', 'B Stack', '1878636', '5H4020', 'FLANGE-COVER ', 1, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010051', 'B Stack', '1878636', '4J0522', 'SEAL-O-RING ', 1, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743582697584010052', 'B Stack', '1878636', '8T5360', 'WASHER-HARD ', 4, 'J', 1, '2025-04-02 16:31:38', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010000', 'B Stack', '5256743', '1P3703', '橡胶密封圈', 1, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010001', 'B Stack', '5256743', '5P0047', '钢铁安装盖', 1, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010002', 'B Stack', '5256743', '6V0400', '钢铁制法兰', 2, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010003', 'B Stack', '5256743', '8T4184', '钢铁制螺栓', 4, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010004', 'B Stack', '5256743', '8T4223', '钢铁制垫圈', 4, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010005', 'B Stack', '5256743', '3J1907', '橡胶密封圈', 2, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010006', 'B Stack', '5256743', '9S4191', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010007', 'B Stack', '5256743', '3603692', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010008', 'B Stack', '5256743', '9T3541', '安全阀', 1, 'B', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010009', 'B Stack', '5256743', '5334159', '钢铁制螺栓', 24, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010010', 'B Stack', '5256743', '8C3206', '钢铁制法兰', 10, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010011', 'B Stack', '5256743', '4J0520', '橡胶密封圈', 5, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010012', 'B Stack', '5256743', '5H4019', '钢铁安装盖', 5, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010013', 'B Stack', '5256743', '3J1907', '橡胶密封圈', 1, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010014', 'B Stack', '5256743', '9S4191', '钢铁制塞堵', 1, 'D', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010015', 'B Stack', '5256743', '8T4121', '钢铁制垫圈', 16, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010016', 'B Stack', '5256743', '5256751', '橡胶密封圈', 1, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010017', 'B Stack', '5256743', '1P3702', '橡胶密封圈', 1, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010018', 'B Stack', '5256743', '4J0522', '橡胶密封圈', 15, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010019', 'B Stack', '5256743', '6V5555', '橡胶密封圈', 15, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010020', 'B Stack', '5256743', '4J8997', '橡胶密封圈', 4, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010021', 'B Stack', '5256743', '8T4182', '钢铁制螺栓', 16, 'E', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010022', 'B Stack', '5256743', '8T9403', '钢铁制法兰', 8, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010023', 'B Stack', '5256743', '1P3702', '橡胶密封圈', 4, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010024', 'B Stack', '5256743', '5P0046', '钢铁安装盖', 4, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010025', 'B Stack', '5256743', '6V8188', '钢铁制螺母', 3, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010026', 'B Stack', '5256743', '8T4223', '钢铁制垫圈', 3, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010027', 'B Stack', '5256743', '1P4578', '钢铁制法兰', 2, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010028', 'B Stack', '5256743', '4J0522', '橡胶密封圈', 1, 'F', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010029', 'B Stack', '5256743', '5H4020', '钢铁安装盖', 1, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010030', 'B Stack', '5256743', '7S0530', '钢铁制管夹', 2, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010031', 'B Stack', '5256743', '4K1388', '橡胶密封圈', 1, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010032', 'B Stack', '5256743', '9S4188', '钢铁制塞堵', 1, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010033', 'B Stack', '5256743', '3J7354', '橡胶密封圈', 3, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584147709010034', 'B Stack', '5256743', '9S4182', '钢铁制塞堵', 3, 'H', 6, '2025-04-02 16:55:48', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177315010000', 'B Segment', '5243712', '2S2596', '钢铁弹簧', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010000', 'B Segment', '5243712', '7M8485', '橡胶密封圈', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010001', 'B Segment', '5243712', '1008010', '阀芯', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010002', 'B Segment', '5243712', '1008011', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010003', 'B Segment', '5243712', '7Y4224', '钢铁制缩径接头', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010004', 'B Segment', '5243712', '7N4333', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010005', 'B Segment', '5243712', '1J9671', '橡胶密封圈', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010006', 'B Segment', '5243712', '9S8003', '钢铁制塞堵', 1, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010007', 'B Segment', '5243712', '4K1388', '橡胶密封圈', 2, 'A', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010008', 'B Segment', '5243712', '4T5073', '塑料密封圈', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010009', 'B Segment', '5243712', '7J9933', '橡胶密封圈', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010010', 'B Segment', '5243712', '4J7533', '橡胶密封圈', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010011', 'B Segment', '5243712', '9S8001', '钢铁制塞堵', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010012', 'B Segment', '5243712', '4J5351', '橡胶密封圈', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010013', 'B Segment', '5243712', '4T5072', '塑料密封圈', 2, 'B', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010014', 'B Segment', '5243712', '5252098', '橡胶密封圈', 1, 'C', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010015', 'B Segment', '5243712', '2608590', '换向阀', 1, 'C', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010016', 'B Segment', '5243712', '4T1701', '钢铁弹簧', 1, 'C', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010017', 'B Segment', '5243712', '5M2057', '橡胶密封圈', 1, 'C', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010018', 'B Segment', '5243712', '6V5556', '橡胶密封圈', 1, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010019', 'B Segment', '5243712', '3664972', '塑料密封圈', 1, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010020', 'B Segment', '5243712', '8T4185', '螺栓8T-4185', 2, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010021', 'B Segment', '5243712', '4T4511', '阀用管套', 1, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010022', 'B Segment', '5243712', '1919247', '钢铁制垫圈', 2, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010023', 'B Segment', '5243712', '1982914', '钢铁制螺母', 2, 'D', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010024', 'B Segment', '5243712', '3128629', '电磁线圈', 2, 'E', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010025', 'B Segment', '5243712', '3161438', '插装阀组件', 2, 'F', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010026', 'B Segment', '5243712', '3617213', '插装阀组件', 2, 'F', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010027', 'B Segment', '5243712', '2077434', '阀用止动块', 2, 'F', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010028', 'B Segment', '5243712', '9S4180', '钢铁制塞堵', 1, 'F', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010029', 'B Segment', '5243712', '4J7533', '橡胶密封圈', 1, 'F', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010030', 'B Segment', '5243712', '1H1023', '橡胶密封圈', 4, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010031', 'B Segment', '5243712', '1879630', '橡胶密封圈', 2, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010032', 'B Segment', '5243712', '9X8256', '钢铁制垫圈', 4, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010033', 'B Segment', '5243712', '1503065', '钢铁制螺纹接头组件', 1, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010034', 'B Segment', '5243712', '3J1907', '橡胶密封圈', 2, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010035', 'B Segment', '5243712', '7W7381', '钢铁制管路接头', 2, 'G', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010036', 'B Segment', '5243712', '2427955', '阀座', 1, 'H', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010037', 'B Segment', '5243712', '3328826', '阀座', 1, 'H1', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010038', 'B Segment', '5243712', '3529954', '钢铁弹簧', 2, 'I', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010039', 'B Segment', '5243712', '3529956', '阀用止动块', 2, 'I', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010040', 'B Segment', '5243712', '6V3965', '取样阀', 2, 'I', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010041', 'B Segment', '5243712', '2147568', '橡胶密封圈', 2, 'I', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -INSERT INTO `t_app_product` (`template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1743584177316010042', 'B Segment', '5243712', '6V0852', '橡胶防尘盖', 2, 'I', 6, '2025-04-02 16:56:17', '管理员', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_product_extend --- ---------------------------- -DROP TABLE IF EXISTS `t_app_product_extend`; -CREATE TABLE `t_app_product_extend` ( - `record_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '总成号', - `single_product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '单片号', - `model` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '机型', - `first_import_time` datetime DEFAULT NULL COMMENT '导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '导入人员', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) 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_product_extend --- ---------------------------- -BEGIN; -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010014', '1303122', '6E3034', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010015', '1303122', '6E3035', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010016', '1303122', '6E3036', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010017', '1303122', '1303110', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010018', '1303122', '1199550', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010019', '1303122', '1378104', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010020', '1303122', '1506649', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010032', '3701262', '3701245', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010033', '3701262', '3701247', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010034', '3701262', '3701249', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010035', '3701262', '3701251', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010036', '3701262', '3701237', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010057', '5757796', '6E3028', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010058', '5757796', '6E3029', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010059', '5757796', '6E3030', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010060', '5757796', '1288647', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010061', '5757796', '1199551', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010076', '1048660', '1070554', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010077', '1048660', '1070555', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010078', '1048660', '1070556', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010079', '1048660', '1070558', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1741759774266010080', '1048660', '1070559', 'MG Stack', '2025-03-12 14:09:34', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010000', '1303116', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010001', '1303116', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010002', '1303116', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010003', '1303116', '1288647', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010004', '1303118', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010005', '1303118', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108683010006', '1303118', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010000', '1303118', '1303110', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010001', '1303118', '1199550', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010002', '5757795', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010003', '5757795', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010004', '5757795', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010005', '5757795', '1303110', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010006', '5757795', '5805847', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010007', '1303124', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010008', '1303124', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010009', '1303124', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010010', '1303124', '1151007', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010011', '1303124', '1288647', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010012', '1303124', '1303111', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010013', '5829209', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010014', '5829209', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010015', '5829209', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010016', '5829209', '5829211', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010017', '5793325', '1070554', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010018', '5793325', '1070555', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010019', '5793325', '5793326', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010020', '5793325', '1303115', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010021', '5793325', '1243455', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010022', '1303135', '1070560', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010023', '1303135', '1070562', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010024', '1303135', '1070563', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010025', '1303135', '1303114', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010026', '5829206', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010027', '5829206', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010028', '5829206', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010029', '5829206', '5829210', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010030', '5829206', '5805847', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010031', '5890385', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010032', '5890385', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010033', '5890385', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010034', '5890385', '1288647', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010035', '5890385', '1934431', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010036', '5887917', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010037', '5887917', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010038', '5887917', '1303110', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010039', '5887917', '1199549', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010040', '1303123', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010041', '1303123', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010042', '1303123', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010043', '1303123', '1288647', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010044', '1303123', '1303111', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010045', '5890390', '6E3028', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010046', '5890390', '6E3029', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010047', '5890390', '6E3030', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010048', '5890390', '1288647', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010049', '5890390', '1303111', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010050', '5890390', '1506649', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010051', '5890390', '1538906', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010052', '1048646', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010053', '1048646', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010054', '1048646', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010055', '1048646', '6E3037', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010056', '1048646', '1070543', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010057', '2500551', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010058', '2500551', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010059', '2500551', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010060', '2500551', '5829210', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010061', '2500551', '1199550', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010062', '1303117', '6E3034', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010063', '1303117', '6E3035', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010064', '1303117', '6E3036', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010065', '1303117', '1303110', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010066', '3701232', '3701245', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010067', '3701232', '3701247', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010068', '3701232', '3701249', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010069', '3701232', '3701251', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010070', '3701261', '3701253', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010071', '3701261', '3701255', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010072', '3701261', '3701257', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010073', '3701261', '3701259', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010074', '3701261', '3701235', 'MG Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010075', '3934854', '3939136', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010076', '3934854', '3939137', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010077', '3934854', '3939138', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010078', '3612413', '3612415', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010079', '3612413', '3706919', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010080', '5195778', '5195781', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010081', '5195778', '5195782', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010082', '5195778', '5195783', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010083', '5195778', '5195784', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -INSERT INTO `t_app_product_extend` (`record_id`, `product_id`, `single_product_id`, `model`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742521108684010084', '5195778', '5195784', 'B Stack', '2025-03-21 09:38:29', '管理员', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_single_product --- ---------------------------- -DROP TABLE IF EXISTS `t_app_single_product`; -CREATE TABLE `t_app_single_product` ( - `single_template_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键id', - `model` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '机型', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号--dbs零件号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '原材料号', - `goods_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '原材料物料描述', - `quantity_1_pair` int NOT NULL COMMENT '单套数量', - `box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `quantity_of_pair` int NOT NULL COMMENT '套数', - `first_import_time` datetime DEFAULT NULL COMMENT '初次导入时间', - `first_import_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '初次导入用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - PRIMARY KEY (`single_template_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_single_product --- ---------------------------- -BEGIN; -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219677010000', 'M3PC 单片', '3232245', '2937639', 'PLUG ', 4, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010000', 'M3PC 单片', '3232245', '3J1907', 'SEAL-O-RING-STOR', 8, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010001', 'M3PC 单片', '3232245', '9S4191', 'PLUG-LD STOR ', 5, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010002', 'M3PC 单片', '3232245', '2833462', 'SCREEN ', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010003', 'M3PC 单片', '3232245', '3K0360', 'SEAL-O-RING-STOR', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010004', 'M3PC 单片', '3232245', '9S8005', 'PLUG-LD STOR ', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010005', 'M3PC 单片', '3232245', '9S8004', 'PLUG-LD STOR ', 3, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010006', 'M3PC 单片', '3232245', '3757263', 'VALVE GP-D RLF-B', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010007', 'M3PC 单片', '3232245', '3054563', 'VALVE GP-SHTL -B', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010008', 'M3PC 单片', '3232245', '0963831/HE', 'PLUG-NPTF ', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010009', 'M3PC 单片', '3232245', '3232246', 'PLATE-IDENT ', 1, 'A', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010010', 'M3PC 单片', '3232245', '3J5553', 'GASKET', 1, 'B', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010011', 'M3PC 单片', '3232245', '7J7366', 'GASKET', 1, 'B', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010012', 'M3PC 单片', '3232245', '7J7367', 'COVER', 1, 'B', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010013', 'M3PC 单片', '3232245', '8J5893', 'COVER', 1, 'B', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -INSERT INTO `t_app_single_product` (`single_template_id`, `model`, `product_id`, `goods_id`, `goods_description`, `quantity_1_pair`, `box_no`, `quantity_of_pair`, `first_import_time`, `first_import_user`, `last_update_time`, `last_update_user`) VALUES ('1742783219678010014', 'M3PC 单片', '3232245', '8T4179', 'BOLT-HEX HEAD', 4, 'B', 1, '2025-03-24 10:27:00', '管理员', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_stand --- ---------------------------- -DROP TABLE IF EXISTS `t_app_stand`; -CREATE TABLE `t_app_stand` ( - `stand_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '站台号', - `stand_type` int NOT NULL COMMENT '站台类型', - `stand_status` int NOT NULL COMMENT '站台状态', - `stand_ip` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '站台电脑的ip', - `stand_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '站台名称', - `stand_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '站台描述', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - PRIMARY KEY (`stand_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_stand --- ---------------------------- -BEGIN; -INSERT INTO `t_app_stand` (`stand_id`, `stand_type`, `stand_status`, `stand_ip`, `stand_name`, `stand_desc`, `last_update_time`, `last_update_user`) VALUES ('P1', 1, 1, '127.0.0.1', '1号拣选站台', '1号拣选站台', '2025-02-15 15:23:08', 'admin'); -INSERT INTO `t_app_stand` (`stand_id`, `stand_type`, `stand_status`, `stand_ip`, `stand_name`, `stand_desc`, `last_update_time`, `last_update_user`) VALUES ('P2', 1, 1, '10.90.80.114', '2号拣选站台', '2号拣选站台', '2025-02-15 15:23:41', 'admin'); -INSERT INTO `t_app_stand` (`stand_id`, `stand_type`, `stand_status`, `stand_ip`, `stand_name`, `stand_desc`, `last_update_time`, `last_update_user`) VALUES ('P3', 1, 1, '10.90.80.125', '3号拣选站台', '3号拣选站台', '2025-02-15 15:26:25', 'admin'); -INSERT INTO `t_app_stand` (`stand_id`, `stand_type`, `stand_status`, `stand_ip`, `stand_name`, `stand_desc`, `last_update_time`, `last_update_user`) VALUES ('R1', 2, 1, '10.90.21.19', '1号入库站台', '1号入库站台', '2025-02-15 15:28:10', 'admin'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_stand_work --- ---------------------------- -DROP TABLE IF EXISTS `t_app_stand_work`; -CREATE TABLE `t_app_stand_work` ( - `work_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'id', - `stand_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '站台号', - `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工单', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号', - `single_product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '单片号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '料号', - `box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `plan_pick_qty` int DEFAULT NULL COMMENT '计划拣选数量', - `real_pick_qty` int DEFAULT NULL COMMENT '实际拣选数量', - `stock_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '库存id', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '载具号', - `plan_remain_qty` int DEFAULT NULL COMMENT '计划剩余数量', - `real_remain_qty` int DEFAULT NULL COMMENT '实际剩余数量', - `is_out` int DEFAULT NULL COMMENT '是否是库外料', - `put_area` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '存放位置', - `work_index` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT 'work_index', - PRIMARY KEY (`work_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_stand_work --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_app_stock --- ---------------------------- -DROP TABLE IF EXISTS `t_app_stock`; -CREATE TABLE `t_app_stock` ( - `stock_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '库存id', - `vehicle_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 '库位编号', - `stock_status` int NOT NULL COMMENT '库存状态', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '物料编号', - `goods_status` int NOT NULL COMMENT '物料状态', - `first_in_time` datetime DEFAULT NULL COMMENT '初次入库时间', - `first_in_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '初次入库用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - `total_num` int NOT NULL COMMENT '总数量', - `remain_num` int NOT NULL COMMENT '剩余数量', - `real_num` int NOT NULL COMMENT '库存实际数量', - `goods_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - `expire_date` date DEFAULT NULL, - `sled` int DEFAULT NULL, - `last_inventory_time` datetime DEFAULT NULL COMMENT '上次盘点时间', - `last_inventory_id` varchar(64) DEFAULT NULL COMMENT '上次盘点id', - PRIMARY KEY (`stock_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_stock --- ---------------------------- -BEGIN; -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534689406010000', 'ASRS-0326', '', 2, '7X0448', 0, '2025-03-21 13:23:03', 'clc', '2025-04-13 17:17:21', 'clc', 320, 320, 320, 'NUT-HEX', NULL, NULL, '2025-04-13 17:17:21', '1744535455291010000'); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534724405010000', 'ASRS-0325', 'A04-29-04', 0, '6V8676', 0, '2025-03-21 13:23:56', 'clc', '2025-03-21 13:25:24', 'clc', 300, 300, 300, 'SEAL-O-RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534760406010000', 'ASRS-0324', 'A04-31-04', 0, '6V8398', 0, '2025-03-21 13:24:35', 'clc', '2025-04-01 10:09:28', 'clc', 2000, 1879, 1879, 'SEAL-O-RING-ORFS', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534779408010000', 'ASRS-0323', 'A04-30-03', 0, '8T4182', 0, '2025-03-21 13:24:55', 'clc', '2025-03-21 13:26:19', 'clc', 300, 300, 300, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534826405010000', 'ASRS-0322', 'A01-26-11', 0, '4J0519', 0, '2025-03-21 13:25:40', 'clc', '2025-03-21 13:27:06', 'clc', 500, 500, 500, 'SEAL-O-RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534865406010000', 'ASRS-0312', 'A04-31-02', 0, '3D4603', 0, '2025-03-21 13:26:19', 'clc', '2025-03-21 13:27:45', 'clc', 250, 250, 250, 'PLUG-PIPE', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534929405010000', 'ASRS-0311', 'A01-31-06', 0, '5S7383', 0, '2025-03-21 13:27:14', 'clc', '2025-03-21 13:28:49', 'clc', 400, 400, 400, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742534983407010000', 'ASRS-0310', 'A04-28-06', 0, '1159977', 0, '2025-03-21 13:28:20', 'clc', '2025-03-21 13:29:43', 'clc', 30, 30, 30, 'PLUG-LDSTOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742535050406010000', 'ASRS-0309', 'A01-32-05', 0, '9X8256', 0, '2025-03-21 13:29:22', 'clc', '2025-03-21 13:30:50', 'clc', 2000, 2000, 2000, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742535078405010000', 'ASRS-0308', 'A04-29-05', 0, '1H1023', 0, '2025-03-21 13:29:56', 'clc', '2025-03-21 13:31:18', 'clc', 500, 500, 500, 'SEAL-O RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742538914406010000', 'ASRS-0321', 'A02-33-04', 0, '7T8797', 0, '2025-03-21 14:33:48', 'clc', '2025-03-21 14:35:14', 'clc', 228, 228, 228, 'SPACER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742538942406010000', 'ASRS-0307', 'A03-27-08', 0, '6K0806', 0, '2025-03-21 14:34:20', 'clc', '2025-03-21 14:35:42', 'clc', 800, 800, 800, 'STRAP-CABLE', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742538976406010000', 'ASRS-0320', 'A02-34-04', 0, '5H6005', 0, '2025-03-21 14:34:47', 'clc', '2025-03-21 14:36:16', 'clc', 1400, 1400, 1400, 'SEAL-O RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742539022406010000', 'ASRS-0306', 'A03-35-04', 0, '5M2057', 0, '2025-03-21 14:35:07', 'clc', '2025-04-01 10:15:43', 'clc', 1000, 913, 913, 'SEAL-O-RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742539052405010000', 'ASRS-0319', 'A03-28-07', 0, '4J0527', 0, '2025-03-21 14:36:07', 'clc', '2025-03-21 14:37:32', 'clc', 250, 250, 250, 'SEAL-O-RING', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742539087406010000', 'ASRS-0318', 'A02-32-11', 0, '2S4078', 0, '2025-03-21 14:36:39', 'clc', '2025-04-01 09:26:26', 'clc', 450, 405, 405, 'SEAL-O-RING-STOR', '2030-03-20', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742539133405010000', 'ASRS-0317', 'A02-40-04', 0, '9S8001', 0, '2025-03-21 14:37:01', 'clc', '2025-04-01 09:47:03', 'clc', 1188, 1102, 1102, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742539135408010000', 'ASRS-0316', 'A01-41-04', 0, '8M3175', 0, '2025-03-21 14:37:32', 'clc', '2025-04-01 10:24:15', 'clc', 700, 526, 526, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742602980408010000', 'ASRS-0315', 'A01-34-06', 0, '9S4182', 0, '2025-03-22 08:21:36', 'clc', '2025-04-01 10:03:00', 'clc', 350, 56, 56, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742603043407010000', 'ASRS-0332', 'A01-32-11', 0, '9S8009', 0, '2025-03-22 08:22:27', 'clc', '2025-04-01 10:03:45', 'clc', 100, 13, 13, 'PLUG-LD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742603185405010000', 'ASRS-0333', 'A02-42-02', 0, '3676001', 0, '2025-03-22 08:22:06', 'clc', '2025-04-01 10:15:14', 'clc', 160, 72, 72, 'PLUG AS-HD STOR', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742603224405010000', 'ASRS-0305', 'A01-29-07', 0, '9S8003', 0, '2025-03-22 08:24:34', 'clc', '2025-04-01 10:09:16', 'clc', 500, 413, 413, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742603279406010000', 'ASRS-0304', 'A03-29-06', 0, '4K1388', 0, '2025-03-22 08:24:46', 'clc', '2025-04-01 10:03:09', 'clc', 600, 505, 505, 'SEAL-O-RING-STOR', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742615490405010000', 'ASRS-0297', 'A03-32-03', 0, '7B8194', 0, '2025-03-22 11:50:05', 'clc', '2025-03-28 09:26:10', 'clc', 183, 167, 167, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742615509408010000', 'ASRS-0299', 'A02-34-11', 0, '9J0477', 0, '2025-03-22 11:50:32', 'clc', '2025-03-28 09:25:42', 'clc', 46, 30, 30, 'PLUG', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742615541408010000', 'ASRS-0269', 'A01-36-07', 0, '8T9535', 0, '2025-03-22 11:50:53', 'clc', '2025-03-22 11:52:21', 'clc', 288, 288, 288, 'BOLT-HEX SKT HD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742615574405010000', 'ASRS-0250', 'A02-35-10', 0, '6J4694', 0, '2025-03-22 11:51:30', 'clc', '2025-03-28 09:26:17', 'clc', 297, 281, 281, 'PLUG-LD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742615619405010000', 'ASRS-0247', 'A01-42-01', 0, '7T8810', 0, '2025-03-22 11:52:16', 'clc', '2025-03-22 11:53:39', 'clc', 271, 271, 271, 'PLUNGER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624058414010000', 'ASRS-1907', 'A02-38-02', 0, '5H3193', 0, '2025-03-22 14:12:38', 'clc', '2025-03-26 15:31:56', 'clc', 200, 132, 132, 'PIN-SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624101407010000', 'ASRS-0370', 'A04-33-06', 0, '8T4224', 0, '2025-03-22 14:13:35', 'clc', '2025-03-22 14:15:01', 'clc', 3700, 3700, 3700, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624147405010000', 'ASRS-0368', 'A04-34-05', 0, '8T9383', 0, '2025-03-22 14:14:21', 'clc', '2025-03-22 14:15:47', 'clc', 300, 300, 300, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624151408010000', 'ASRS-0369', 'A02-36-07', 0, '4J9780', 0, '2025-03-22 14:13:49', 'clc', '2025-03-22 14:15:51', 'clc', 125, 125, 125, 'PLUG-NPTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624192406010000', 'ASRS-0366', 'A04-35-04', 0, '9J8126', 0, '2025-03-22 14:14:52', 'clc', '2025-03-22 14:16:32', 'clc', 300, 300, 300, 'PLUG-NPTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624198405010000', 'ASRS-0367', 'A02-37-06', 0, '8T4896', 0, '2025-03-22 14:14:39', 'clc', '2025-03-22 14:16:38', 'clc', 2500, 2500, 2500, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624239408010000', 'ASRS-1033', 'A04-36-03', 0, '1212051', 0, '2025-03-22 14:15:25', 'clc', '2025-03-22 14:17:19', 'clc', 200, 200, 200, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624246407010000', 'ASRS-0365', 'A02-38-05', 0, '9T4697', 0, '2025-03-22 14:15:05', 'clc', '2025-03-22 14:17:26', 'clc', 40, 40, 40, 'BOOT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624286407010000', 'ASRS-0363', 'A04-37-02', 0, '9T4685', 0, '2025-03-22 14:15:58', 'clc', '2025-03-22 14:18:06', 'clc', 200, 200, 200, 'SHIM', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624295406010000', 'ASRS-0361', 'A02-39-04', 0, '0304605', 0, '2025-03-22 14:15:33', 'clc', '2025-03-22 14:18:15', 'clc', 260, 260, 260, 'SEAL-O RING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624343405010000', 'ASRS-0267', 'A02-40-03', 0, '7J9933', 0, '2025-03-22 14:16:25', 'clc', '2025-03-22 14:19:03', 'clc', 300, 300, 300, 'SEAL-O RING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624378405010000', 'ASRS-0266', 'A03-29-11', 0, '6V4432', 0, '2025-03-22 14:16:56', 'clc', '2025-03-22 14:19:38', 'clc', 100, 100, 100, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624392407010000', 'ASRS-0268', 'A02-41-02', 0, '4H5232', 0, '2025-03-22 14:16:36', 'clc', '2025-03-22 14:19:52', 'clc', 1000, 1000, 1000, 'PIN-SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624421407010000', 'ASRS-0382', 'A03-30-10', 0, '8T2396', 0, '2025-03-22 14:17:23', 'clc', '2025-03-22 14:20:21', 'clc', 500, 500, 500, 'BOLT-SOCKET HD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624442405010000', 'ASRS-0265', 'A02-42-01', 0, '4J2506', 0, '2025-03-22 14:17:07', 'clc', '2025-03-22 14:20:42', 'clc', 720, 720, 720, 'SEAL-O RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624465405010000', 'ASRS-0380', 'A03-31-09', 0, '7X7888', 0, '2025-03-22 14:17:44', 'clc', '2025-03-22 14:21:05', 'clc', 250, 250, 250, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624489405010000', 'ASRS-0381', 'A01-33-11', 0, '7J0204', 0, '2025-03-22 14:17:35', 'clc', '2025-03-22 14:21:29', 'clc', 1000, 1000, 1000, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624536407010000', 'ASRS-0379', 'A01-34-10', 0, '6V5391', 0, '2025-03-22 14:17:54', 'clc', '2025-03-22 14:22:16', 'clc', 250, 250, 250, 'SEAL-O RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624556407010000', 'ASRS-0376', 'A02-33-11', 0, '7X0352', 0, '2025-03-22 14:20:47', 'clc', '2025-03-24 12:19:44', 'clc', 40, 36, 36, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624583407010000', 'ASRS-0377', 'A01-35-09', 0, '6J5899', 0, '2025-03-22 14:20:27', 'clc', '2025-03-22 14:23:03', 'clc', 20, 20, 20, 'COVER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624631407010000', 'ASRS-0354', 'A03-34-06', 0, '4J0524', 0, '2025-03-22 14:22:26', 'clc', '2025-03-22 14:23:51', 'clc', 400, 400, 400, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624645405010000', 'ASRS-0346', 'A01-36-08', 0, '4T1021', 0, '2025-03-22 14:22:37', 'clc', '2025-03-25 13:26:20', 'clc', 60, 55, 55, 'RETAINER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624725407010000', 'ASRS-0341', 'A03-33-07', 0, '4T0993', 0, '2025-03-22 14:23:27', 'clc', '2025-03-25 13:18:59', 'clc', 100, 86, 86, 'RETAINER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624740405010000', 'ASRS-0372', 'A01-38-06', 0, '2458472/X', 0, '2025-03-22 14:23:36', 'clc', '2025-03-22 14:25:40', 'clc', 250, 250, 250, 'PLUG-EXPANSION', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624788406010000', 'ASRS-0387', 'A01-39-05', 0, '4J8997', 0, '2025-03-22 14:23:46', 'clc', '2025-03-22 14:26:28', 'clc', 600, 600, 600, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624819408010000', 'ASRS-0390', 'A03-38-02', 0, '1089402', 0, '2025-03-22 14:24:14', 'clc', '2025-03-22 14:26:59', 'clc', 20, 20, 20, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624837405010000', 'ASRS-0391', 'A01-40-04', 0, '4D0514', 0, '2025-03-22 14:24:07', 'clc', '2025-03-22 14:27:17', 'clc', 150, 150, 150, 'PLUG-PTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624867405010000', 'ASRS-0389', 'A03-39-01', 0, '4T4207', 0, '2025-03-22 14:24:22', 'clc', '2025-03-22 14:27:47', 'clc', 75, 75, 75, 'PLUG-NPTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624885405010000', 'ASRS-0340', 'A01-39-06', 0, '1J9671', 0, '2025-03-22 14:24:32', 'clc', '2025-04-01 10:10:04', 'clc', 900, 797, 797, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624913407010000', 'ASRS-1898', 'A04-29-11', 0, '7M1297', 0, '2025-03-22 14:25:11', 'clc', '2025-03-22 14:28:33', 'clc', 55, 55, 55, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624935407010000', 'ASRS-0388', 'A03-31-04', 0, '6V8647', 0, '2025-03-22 14:25:21', 'clc', '2025-04-01 10:04:01', 'clc', 300, 126, 126, 'ADAPTER-STR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742624989407010000', 'ASRS-1901', 'A04-30-10', 0, '3J5553', 0, '2025-03-22 14:26:14', 'clc', '2025-03-22 14:29:49', 'clc', 150, 150, 150, 'GASKET', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742625029405010000', 'ASRS-0344', 'A02-34-10', 0, '1749194', 0, '2025-03-22 14:26:55', 'clc', '2025-03-22 14:30:29', 'clc', 700, 700, 700, 'BOLT-HEX FLG HD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742625064408010000', 'ASRS-0349', 'A04-31-09', 0, '6V5195', 0, '2025-03-22 14:26:39', 'clc', '2025-03-26 15:01:25', 'clc', 200, 196, 196, 'BOLT-SOCKET HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742625075407010000', 'ASRS-0339', 'A03-39-02', 0, '1D4566', 0, '2025-03-22 14:27:11', 'clc', '2025-03-24 10:11:05', 'clc', 100, 50, 50, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742625122405010000', 'ASRS-1902', 'A04-29-10', 0, '3P9498', 0, '2025-03-22 14:27:44', 'clc', '2025-04-01 10:16:56', 'clc', 100, 13, 13, 'PLUG-NPTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742625154405010000', 'ASRS-1905', 'A04-33-07', 0, '7X2535', 0, '2025-03-22 14:27:53', 'clc', '2025-03-22 14:32:34', 'clc', 600, 600, 600, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742627679407010000', 'ASRS-0352', 'A02-35-08', 0, '7X0272', 0, '2025-03-22 15:13:12', '管理员', '2025-03-22 15:14:39', '管理员', 500, 500, 500, 'BOLT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742627750407010000', 'ASRS-0345', 'A01-37-07', 0, '4D9986', 0, '2025-03-22 15:14:19', '管理员', '2025-03-22 15:15:50', '管理员', 1000, 1000, 1000, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742627757408010000', 'ASRS-0343', 'A04-32-07', 0, '2D6648', 0, '2025-03-22 15:14:42', '管理员', '2025-03-22 15:15:57', '管理员', 700, 700, 700, 'RING-RETAINING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742627831405010000', 'ASRS-0335', 'A01-33-10', 0, '8F9206', 0, '2025-03-22 15:15:41', '管理员', '2025-03-26 14:56:24', '管理员', 3485, 3394, 3394, 'SEAL-O-RING', '2030-03-21', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759169404010000', 'ASRS-1713', 'A02-38-06', 0, '8T5005', 0, '2025-03-24 03:39:53', '管理员', '2025-03-26 15:01:54', '管理员', 235, 183, 183, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759372405010000', 'ASRS-0545', 'A03-35-05', 0, '8T4121', 0, '2025-03-24 03:48:01', '管理员', '2025-03-26 15:07:05', '管理员', 2000, 1896, 1896, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759392405010000', 'ASRS-1245', 'A02-32-09', 0, '6V3965', 0, '2025-03-24 03:48:27', '管理员', '2025-04-01 09:21:03', '管理员', 250, 219, 219, 'NIPPLE-QDISC', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759472405010000', 'ASRS-1528', 'A01-38-07', 0, '8C3206', 0, '2025-03-24 03:49:21', '管理员', '2025-03-26 15:07:41', '管理员', 70, 18, 18, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759484407010000', 'ASRS-1683', 'A01-35-10', 0, '6V0852', 0, '2025-03-24 03:49:27', '管理员', '2025-04-01 09:59:38', '管理员', 100, 69, 69, 'CAP-DUST', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759529405010000', 'ASRS-0350', 'A04-32-03', 0, '3D2824', 0, '2025-03-24 03:50:18', '管理员', '2025-04-01 10:04:43', '管理员', 1000, 556, 556, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759570405010000', 'ASRS-1026', 'A03-37-04', 0, '8T4196', 0, '2025-03-24 03:49:56', '管理员', '2025-03-26 15:08:29', '管理员', 425, 295, 295, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759576405010000', 'ASRS-0351', 'A03-36-04', 0, '7J1089', 0, '2025-03-24 03:50:25', '管理员', '2025-03-26 15:33:51', '管理员', 100, 66, 66, 'PLUG-O-RING SPL', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759617406010000', 'ASRS-0342', 'A04-30-11', 0, '7S0530', 0, '2025-03-24 03:50:46', '管理员', '2025-03-26 15:08:49', '管理员', 60, 47, 47, 'CLIP', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759623405010000', 'ASRS-1524', 'A01-31-08', 0, '2191891', 0, '2025-03-24 03:51:09', '管理员', '2025-04-01 11:40:53', '管理员', 150, 104, 104, 'PLUG AS.', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759670405010000', 'ASRS-0336', 'A01-42-02', 0, '3J1907', 0, '2025-03-24 03:51:13', '管理员', '2025-04-01 09:21:45', '管理员', 2700, 2623, 2623, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759710405010000', 'ASRS-0521', 'A04-32-08', 0, '6E5289', 0, '2025-03-24 03:51:36', '管理员', '2025-03-26 14:35:02', '管理员', 100, 74, 74, 'ADAPTER-STR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759716405010000', 'ASRS-1900', 'A01-39-02', 0, '9S8002', 0, '2025-03-24 03:51:40', '管理员', '2025-04-01 09:09:55', '管理员', 1000, 774, 774, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759757405010000', 'ASRS-1023', 'A03-38-03', 0, '4564624', 0, '2025-03-24 03:52:18', '管理员', '2025-03-26 14:17:00', '管理员', 25, 15, 15, 'VALVE GP-D RLF-B', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759806405010000', 'ASRS-1899', 'A04-35-05', 0, '9S8006', 0, '2025-03-24 03:52:22', '管理员', '2025-03-26 15:34:27', '管理员', 200, 183, 183, 'PLUG-LD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759810408010000', 'ASRS-0284', 'A03-34-07', 0, '6V9830', 0, '2025-03-24 03:53:47', '管理员', '2025-03-26 14:57:47', '管理员', 200, 174, 174, 'CAP', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759854405010000', 'ASRS-0270', 'A03-40-01', 0, '4564633', 0, '2025-03-24 03:53:11', '管理员', '2025-03-26 14:17:51', '管理员', 25, 15, 15, 'VALVE GP-D RLF-B', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759856407010000', 'ASRS-0383', 'A03-31-06', 0, '6V9833', 0, '2025-03-24 03:53:38', '管理员', '2025-04-01 09:26:42', '管理员', 50, 7, 7, 'CAP', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759946405010000', 'ASRS-1189', 'A03-32-09', 0, '4B9782', 0, '2025-03-24 03:55:05', '管理员', '2025-03-26 14:34:20', '管理员', 200, 127, 127, 'BALL', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759951408010000', 'ASRS-1030', 'A03-30-11', 0, '1298222', 0, '2025-03-24 03:54:33', '管理员', '2025-03-26 15:04:32', '管理员', 15, 12, 12, 'VALVE GP-D RLF-', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759991405010000', 'ASRS-0244', 'A02-34-09', 0, '5J2974', 0, '2025-03-24 03:55:30', '管理员', '2025-03-26 14:57:06', '管理员', 150, 124, 124, 'SEAL-O-RING', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742759999405010000', 'ASRS-1526', 'A02-41-01', 0, '3676002', 0, '2025-03-24 03:55:22', '管理员', '2025-04-01 10:16:35', '管理员', 600, 556, 556, 'PLUG AS-HD STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760038405010000', 'ASRS-0385', 'A02-41-03', 0, '4J0520', 0, '2025-03-24 03:56:52', '管理员', '2025-03-26 15:09:18', '管理员', 300, 261, 261, 'SEAL-O-RING', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760084407010000', 'ASRS-1249', 'A03-36-05', 0, '1268473', 0, '2025-03-24 03:54:37', '管理员', '2025-03-26 15:02:09', '管理员', 100, 87, 87, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760093405010000', 'ASRS-0517', 'A03-38-04', 0, '9S4191', 0, '2025-03-24 03:55:59', '管理员', '2025-04-01 08:41:07', '管理员', 500, 488, 488, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760131406010000', 'ASRS-0525', 'A02-35-09', 0, '5H4019', 0, '2025-03-24 03:57:27', '管理员', '2025-03-26 15:08:03', '管理员', 150, 124, 124, 'COVER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760139406010000', 'ASRS-0520', 'A03-34-08', 0, '2M9780', 0, '2025-03-24 03:54:58', '管理员', '2025-04-01 10:06:07', '管理员', 500, 396, 396, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760178405010000', 'ASRS-0334', 'A02-36-08', 0, '3J7354', 0, '2025-03-24 03:56:58', '管理员', '2025-04-01 10:07:43', '管理员', 1200, 569, 569, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760186405010000', 'ASRS-0384', 'A03-32-08', 0, '9S4185', 0, '2025-03-24 03:57:23', '管理员', '2025-04-01 09:14:34', '管理员', 250, 5, 5, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760225408010000', 'ASRS-0522', 'A03-37-03', 0, '2965987', 0, '2025-03-24 03:57:55', '管理员', '2025-04-01 11:41:12', '管理员', 500, 456, 456, 'PLUG', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742760283405010000', 'ASRS-1027', 'A01-39-08', 0, '3K0360', 0, '2025-03-24 03:57:51', '管理员', '2025-04-01 10:11:11', '管理员', 3000, 2435, 2435, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742778696406010000', 'ASRS-0527', 'A04-30-09', 0, '4J7533', 0, '2025-03-24 09:10:12', 'clc', '2025-04-01 09:49:34', 'clc', 500, 414, 414, 'SEAL-O-RING-STOR', '2030-03-23', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742778743417010000', 'ASRS-1034', 'A02-33-10', 0, '6E1925', 0, '2025-03-24 09:10:38', 'clc', '2025-04-01 10:20:55', 'clc', 50, 2, 2, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742865961612010000', 'ASRS-1531', 'A01-41-03', 0, '2521631', 0, '2025-03-25 09:24:36', '管理员', '2025-03-31 09:35:11', '管理员', 172, 44, 44, 'PLUG AS.', '2030-03-24', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742870290603010000', 'ASRS-1025', 'A02-37-03', 0, '6E1925', 0, '2025-03-25 10:36:57', '管理员', '2025-03-29 13:30:36', '管理员', 38, 33, 33, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742870321605010000', 'ASRS-1221', 'A02-36-09', 0, '9F6705', 0, '2025-03-25 10:37:32', '管理员', '2025-04-01 10:17:19', '管理员', 48, 33, 33, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742870503606010000', 'ASRS-0337', 'A01-42-05', 0, '6V9834', 0, '2025-03-25 10:40:21', '管理员', '2025-04-01 10:27:25', '管理员', 18, 5, 5, 'CAP-ORFS', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742870522606010000', 'ASRS-0519', 'A02-37-08', 0, '6E1924', 0, '2025-03-25 10:40:46', '管理员', '2025-04-01 10:22:34', '管理员', 38, 13, 13, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742871088605010000', 'ASRS-1088', 'A01-36-09', 0, '2191893', 0, '2025-03-25 10:50:16', '管理员', '2025-04-05 09:10:58', '管理员', 51, 22, 22, 'PLUG AS.', '2030-03-24', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742880319605010000', 'ASRS-1032', 'A01-40-07', 0, '3603693', 0, '2025-03-25 10:50:49', '管理员', '2025-04-01 10:12:37', '管理员', 50, 24, 24, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742957508606010000', 'ASRS-1443', 'A02-37-07', 0, '6E5291', 0, '2025-03-26 08:33:07', 'clc', '2025-03-26 14:58:09', 'clc', 150, 124, 124, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742957553607010000', 'ASRS-1030', 'A03-30-11', 0, '1298222', 0, '2025-03-26 08:34:55', 'clc', '2025-03-26 10:52:34', 'clc', 15, 15, 15, 'VALVE GP-D RLF-', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742957598606010000', 'ASRS-0338', 'A04-38-01', 0, '6V5230', 0, '2025-03-26 08:36:59', 'clc', '2025-04-01 10:24:27', 'clc', 250, 126, 126, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742957626605010000', 'ASRS-0386', 'A01-37-08', 0, '6J4568', 0, '2025-03-26 08:37:20', 'clc', '2025-03-31 09:27:23', 'clc', 70, 56, 56, 'BOOT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1742973803606010000', 'ASRS-1528', 'A01-38-07', 0, '8C3206', 0, '2025-03-26 15:22:08', 'clc', '2025-03-26 15:23:24', 'clc', 140, 140, 140, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125074607010000', 'ASRS-1528', 'A01-38-07', 0, '8C3206', 0, '2025-03-28 09:23:14', 'clc', '2025-03-28 09:24:35', 'clc', 70, 70, 70, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125323605010000', 'ASRS-1031', 'A01-37-09', 0, '6E1923', 0, '2025-03-28 09:27:26', 'clc', '2025-04-01 10:25:39', 'clc', 40, 13, 13, 'TUBE AS.', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125331608010000', 'ASRS-0386', 'A01-37-08', 0, '6J4568', 0, '2025-03-28 09:26:50', 'clc', '2025-03-28 09:28:52', 'clc', 70, 70, 70, 'BOOT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125369615010000', 'ASRS-1531', 'A01-41-03', 0, '2521631', 0, '2025-03-28 09:28:10', 'clc', '2025-03-28 09:29:30', 'clc', 200, 200, 200, 'PLUG AS.', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125382606010000', 'ASRS-1683', 'A01-35-10', 0, '6V0852', 0, '2025-03-28 09:27:47', 'clc', '2025-03-28 09:29:43', 'clc', 100, 100, 100, 'CAP-DUST', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125415603010000', 'ASRS-0348', 'A03-38-01', 0, '4681134', 0, '2025-03-28 09:28:23', 'clc', '2025-03-28 09:30:16', 'clc', 17, 17, 17, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125434606010000', 'ASRS-1254', 'A02-38-07', 0, '8C3206', 0, '2025-03-28 09:28:42', 'clc', '2025-03-28 09:30:35', 'clc', 70, 70, 70, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125461606010000', 'ASRS-1250', 'A03-31-10', 0, '3603690', 0, '2025-03-28 09:29:11', 'clc', '2025-03-28 09:31:02', 'clc', 50, 50, 50, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125486605010000', 'ASRS-1258', 'A02-39-06', 0, '4829841', 0, '2025-03-28 09:28:58', 'clc', '2025-03-28 09:31:27', 'clc', 100, 100, 100, 'RING-BACKUP', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125507605010000', 'ASRS-1592', 'A03-35-06', 0, '4J0522', 0, '2025-03-28 09:29:38', 'clc', '2025-03-28 09:31:48', 'clc', 400, 400, 400, 'SEAL-O-RING', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125539606010000', 'ASRS-1667', 'A02-40-05', 0, '1P4578', 0, '2025-03-28 09:29:25', 'clc', '2025-03-28 09:32:20', 'clc', 50, 50, 50, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125551607010000', 'ASRS-0378', 'A04-31-10', 0, '2N7029', 0, '2025-03-28 09:30:06', 'clc', '2025-03-28 09:32:32', 'clc', 50, 50, 50, 'SPRING-CONT PIN', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125592607010000', 'ASRS-1222', 'A02-41-04', 0, '4681135', 0, '2025-03-28 09:29:53', 'clc', '2025-03-28 09:33:13', 'clc', 14, 14, 14, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125596606010000', 'ASRS-1259', 'A04-32-09', 0, '9S8005', 0, '2025-03-28 09:30:34', 'clc', '2025-03-28 09:33:17', 'clc', 200, 200, 200, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125641606010000', 'ASRS-1219', 'A04-33-08', 0, '4681133', 0, '2025-03-28 09:30:50', 'clc', '2025-03-28 09:34:02', 'clc', 25, 25, 25, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125646606010000', 'ASRS-1220', 'A02-42-03', 0, '4M8239', 0, '2025-03-28 09:30:20', 'clc', '2025-03-28 09:34:07', 'clc', 60, 60, 60, 'COVER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125720605010000', 'ASRS-1271', 'A04-34-07', 0, '7X5308', 0, '2025-03-28 09:32:15', 'clc', '2025-03-28 09:35:21', 'clc', 100, 100, 100, 'CAP-DUST', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125727605010000', 'ASRS-1223', 'A01-35-11', 0, '9L9068', 0, '2025-03-28 09:31:04', 'clc', '2025-03-28 09:35:28', 'clc', 300, 300, 300, 'DOWEL', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125797605010000', 'ASRS-1660', 'A04-35-06', 0, '2608590', 0, '2025-03-28 09:32:27', 'clc', '2025-03-28 09:36:38', 'clc', 80, 80, 80, 'VALVE GP-SHTL -B', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125810603010000', 'ASRS-1244', 'A01-36-10', 0, '5H4020', 0, '2025-03-28 09:31:19', 'clc', '2025-03-28 09:36:51', 'clc', 100, 100, 100, 'FLANGE-COVER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125926611010000', 'ASRS-0384', 'A03-32-08', 0, '9S4185', 0, '2025-03-28 09:37:29', 'clc', '2025-03-28 09:38:47', 'clc', 250, 250, 250, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743125992605010000', 'ASRS-0525', 'A02-35-09', 0, '5H4019', 0, '2025-03-28 09:38:24', 'clc', '2025-03-28 09:39:53', 'clc', 150, 150, 150, 'COVER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126031606010000', 'ASRS-0501', 'A02-36-11', 0, '1488356', 0, '2025-03-28 09:39:08', 'clc', '2025-04-01 10:29:03', 'clc', 16, 2, 2, 'ADAPTER AS-ELBOW', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126083605010000', 'ASRS-0313', 'A01-38-08', 0, '9S4189', 0, '2025-03-28 09:39:56', 'clc', '2025-04-01 10:04:31', 'clc', 75, 63, 63, 'PLUG-EXT HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126089606010000', 'ASRS-0017', 'A04-36-05', 0, '7X5315', 0, '2025-03-28 09:40:11', 'clc', '2025-03-28 09:41:30', 'clc', 100, 100, 100, 'COUPLING-QDISC', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126135603010000', 'ASRS-1885', 'A01-40-05', 0, '6Y4638', 0, '2025-03-28 09:40:23', 'clc', '2025-03-28 09:42:16', 'clc', 60, 60, 60, 'PLUG-LD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126137606010000', 'ASRS-1630', 'A04-37-04', 0, '9S8004', 0, '2025-03-28 09:40:36', 'clc', '2025-03-28 09:42:18', 'clc', 600, 600, 600, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126182606010000', 'ASRS-0523', 'A04-38-03', 0, '2828827', 0, '2025-03-28 09:41:24', 'clc', '2025-03-28 09:43:03', 'clc', 500, 500, 500, 'PLUG-EXPANSION', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126187606010000', 'ASRS-0999', 'A01-39-07', 0, '3603692', 0, '2025-03-28 09:40:54', 'clc', '2025-03-28 09:43:08', 'clc', 300, 300, 300, 'PLUG-HD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126229609010000', 'ASRS-0362', 'A04-39-02', 0, '9T7419', 0, '2025-03-28 09:41:52', 'clc', '2025-03-28 09:43:50', 'clc', 8, 8, 8, 'VALVE GP-D RLF-B', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126240605010000', 'ASRS-0347', 'A01-40-06', 0, '8T4223', 0, '2025-03-28 09:41:38', 'clc', '2025-03-28 09:44:01', 'clc', 1000, 1000, 1000, 'WASHER-HARD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126277605010000', 'ASRS-0901', 'A04-40-01', 0, '3P1979', 0, '2025-03-28 09:42:15', 'clc', '2025-03-28 09:44:38', 'clc', 71, 71, 71, 'SEAL-O-RING', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126293605010000', 'ASRS-0371', 'A01-41-05', 0, '6V5555', 0, '2025-03-28 09:42:03', 'clc', '2025-03-28 09:44:54', 'clc', 500, 500, 500, 'SEAL-O RING', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126323605010000', 'ASRS-1604', 'A03-31-11', 0, '2660531', 0, '2025-03-28 09:42:58', 'clc', '2025-03-28 09:45:24', 'clc', 300, 300, 300, 'CAP-CONNECTOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126346603010000', 'ASRS-0889', 'A01-42-04', 0, '1483483', 0, '2025-03-28 09:42:31', 'clc', '2025-03-28 09:45:47', 'clc', 1000, 1000, 1000, 'PLUG', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126369607010000', 'ASRS-1371', 'A03-32-10', 0, '2147568', 0, '2025-03-28 09:43:23', 'clc', '2025-03-28 09:46:10', 'clc', 500, 500, 500, 'SEAL-O-RING-STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126399605010000', 'ASRS-1261', 'A02-35-11', 0, '1014845', 0, '2025-03-28 09:43:10', 'clc', '2025-03-28 09:46:40', 'clc', 100, 100, 100, 'PLUG-NPTF', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126414610010000', 'ASRS-0314', 'A03-33-09', 0, '1483483', 0, '2025-03-28 09:44:06', 'clc', '2025-03-28 09:46:55', 'clc', 600, 600, 600, 'PLUG', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126450606010000', 'ASRS-0302', 'A02-36-10', 0, '1160014', 0, '2025-03-28 09:43:51', 'clc', '2025-03-28 09:47:31', 'clc', 10, 10, 10, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126501612010000', 'ASRS-0327', 'A02-37-09', 0, '4681136', 0, '2025-03-28 09:44:32', 'clc', '2025-03-28 09:48:22', 'clc', 25, 25, 25, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743126553606010000', 'ASRS-1257', 'A02-38-08', 0, '7M8485', 0, '2025-03-28 09:44:42', 'clc', '2025-03-28 09:49:14', 'clc', 800, 800, 800, 'SEAL-O-RING-STOR', '2030-03-27', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743133813606010000', 'ASRS-1254', 'A02-38-07', 0, '8C3206', 0, '2025-03-28 11:48:55', 'clc', '2025-03-28 11:50:14', 'clc', 2, 2, 2, 'FLANGE-SPLIT', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743207961607010000', 'ASRS-0359', 'A04-31-05', 0, '1007000', 0, '2025-03-28 21:26:47', 'clc', '2025-04-01 10:13:21', 'clc', 140, 120, 120, 'Ring-back up', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209190603010000', 'ASRS-1529', 'A01-35-04', 0, '1007000', 0, '2025-03-29 08:44:55', '管理员', '2025-03-29 08:46:31', '管理员', 94, 94, 94, 'Ring-back up', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209207606010000', 'ASRS-0249', 'A04-05-06', 0, '6H2948', 0, '2025-03-29 08:45:37', '管理员', '2025-03-29 08:46:48', '管理员', 240, 240, 240, 'DOWEL', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209261607010000', 'ASRS-0276', 'A01-40-03', 0, '1501285', 0, '2025-03-29 08:46:03', '管理员', '2025-03-29 08:47:42', '管理员', 50, 50, 50, 'PLUG-BREATHER', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209300609010000', 'ASRS-1246', 'A04-02-11', 0, '2385082', 0, '2025-03-29 08:47:01', '管理员', '2025-03-29 08:48:21', '管理员', 500, 500, 500, 'SEAL-O-RING-STOR', '2030-03-28', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209314606010000', 'ASRS-0300', 'A01-41-02', 0, '9N4049', 0, '2025-03-29 08:46:10', '管理员', '2025-03-29 08:48:35', '管理员', 100, 100, 100, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209342605010000', 'ASRS-0248', 'A03-34-05', 0, '9S8008', 0, '2025-03-29 08:47:06', '管理员', '2025-03-29 08:49:03', '管理员', 150, 150, 150, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209401611010000', 'ASRS-1392', 'A04-28-11', 0, '3603695', 0, '2025-03-29 08:48:32', '管理员', '2025-03-29 08:50:02', '管理员', 100, 100, 100, 'PLUG-HD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743209407606010000', 'ASRS-1035', 'A01-38-09', 0, '0344160', 0, '2025-03-29 08:47:51', '管理员', '2025-03-29 08:50:08', '管理员', 150, 150, 150, 'BOLT-LOCKING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743220643144010000', 'ASRS-0273', 'A01-33-06', 0, '8T4196', 0, '2025-03-29 11:56:10', '管理员', '2025-03-29 11:57:23', '管理员', 425, 425, 425, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743220676126010000', 'ASRS-0328', 'A02-39-01', 0, '9S4684', 0, '2025-03-29 11:56:22', '管理员', '2025-03-29 11:57:56', '管理员', 50, 50, 50, 'PLUG-O-RING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743220729135010000', 'ASRS-0330', 'A02-39-05', 0, '3603688', 0, '2025-03-29 11:56:39', '管理员', '2025-03-29 11:58:49', '管理员', 200, 200, 200, 'PLUG-HD STOR', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743227358531010000', 'ASRS-0273', 'A01-33-06', 0, '8T4196', 0, '2025-03-29 13:47:59', '管理员', '2025-03-29 13:49:19', '管理员', 425, 425, 425, 'BOLT-HEX HEAD', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743229830531010000', 'ASRS-0331', 'A04-31-08', 0, '3T8236', 0, '2025-03-29 14:29:12', '管理员', '2025-04-01 10:17:45', '管理员', 44, 12, 12, 'SPRING', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743397363532010000', 'ASRS-0329', 'A01-34-11', 0, '8T8987', 0, '2025-03-31 13:01:17', '管理员', '2025-04-01 09:45:10', '管理员', 20, 8, 8, 'ADPTR-ELB 90 DEG', '2030-03-30', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743397406531010000', 'ASRS-0364', 'A01-36-03', 0, '8T8987', 0, '2025-03-31 13:01:50', '管理员', '2025-03-31 14:17:46', '管理员', 10, 9, 9, 'ADPTR-ELB 90 DEG', '2030-03-30', 1825, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743397592536010000', 'ASRS-0303', 'A01-41-06', 0, '8J6815', 0, '2025-03-31 13:05:17', '管理员', '2025-04-01 10:18:51', '管理员', 500, 458, 458, 'PLUG-INTL HEX', NULL, NULL, NULL, NULL); -INSERT INTO `t_app_stock` (`stock_id`, `vehicle_id`, `location_id`, `stock_status`, `goods_id`, `goods_status`, `first_in_time`, `first_in_user`, `last_update_time`, `last_update_user`, `total_num`, `remain_num`, `real_num`, `goods_desc`, `expire_date`, `sled`, `last_inventory_time`, `last_inventory_id`) VALUES ('1743401862531010000', 'ASRS-0298', 'A01-37-06', 0, '1007000', 0, '2025-03-31 14:15:37', '管理员', '2025-03-31 15:44:42', '管理员', 140, 134, 134, 'Ring-back up', NULL, NULL, NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_stock_update --- ---------------------------- -DROP TABLE IF EXISTS `t_app_stock_update`; -CREATE TABLE `t_app_stock_update` ( - `update_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料号', - `first_in_time` datetime NOT NULL, - `before_num` int NOT NULL COMMENT '原数量', - `after_num` int NOT NULL COMMENT '新数量', - `reason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '更新理由', - `update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '更新用户', - `update_time` datetime NOT NULL COMMENT '更新时间', - PRIMARY KEY (`update_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_stock_update --- ---------------------------- -BEGIN; -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627059351010000', 'ASRS-0371', '2D6648', '2025-03-22 14:31:31', 500, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:04:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627059351010001', 'ASRS-0371', '2D6648', '2025-03-22 14:13:01', 200, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:04:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627085705010000', 'ASRS-0362', '4D9986', '2025-03-22 14:16:10', 100, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:04:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627109027010000', 'ASRS-0270', '7X0272', '2025-03-22 14:12:15', 100, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:05:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627275061010000', 'ASRS-0378', '8F9206', '2025-03-22 14:32:21', 100, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:07:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627275062010000', 'ASRS-0378', '8F9206', '2025-03-22 14:18:44', 3385, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:07:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627429627010000', 'ASRS-0348', '4D9986', '2025-03-22 14:23:14', 900, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:10:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742627487162010000', 'ASRS-0347', '7X0272', '2025-03-22 14:22:48', 400, 0, 'P3:出库拣选', '管理员', '2025-03-22 15:11:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742775892048010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 350, 347, 'P3:配料拣选', '管理员', '2025-03-24 08:24:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742775899644010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 100, 99, 'P3:配料拣选', '管理员', '2025-03-24 08:25:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742775927686010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 1000, 999, 'P3:配料拣选', '管理员', '2025-03-24 08:25:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742775951686010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 75, 74, 'P3:配料拣选', '管理员', '2025-03-24 08:25:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742775982261010000', 'ASRS-0302', '9S4183', '2025-03-22 08:25:13', 60, 59, 'P3:配料拣选', '管理员', '2025-03-24 08:26:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776199934010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1200, 1197, 'P3:配料拣选', '管理员', '2025-03-24 08:30:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776208699010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1197, 1195, 'P3:配料拣选', '管理员', '2025-03-24 08:30:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776463379010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 600, 599, 'P3:配料拣选', '管理员', '2025-03-24 08:34:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776495019010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 300, 298, 'P3:配料拣选', '管理员', '2025-03-24 08:34:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776524668010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 500, 499, 'P3:配料拣选', '管理员', '2025-03-24 08:35:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776684845010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 2000, 1999, 'P3:配料拣选', '管理员', '2025-03-24 08:38:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776707945010000', 'ASRS-0329', '3603693', '2025-03-22 08:23:11', 100, 96, 'P3:配料拣选', '管理员', '2025-03-24 08:38:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776734630010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 500, 499, 'P3:配料拣选', '管理员', '2025-03-24 08:38:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776764557010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 900, 899, 'P3:配料拣选', '管理员', '2025-03-24 08:39:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776826997010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 3000, 2996, 'P3:配料拣选', '管理员', '2025-03-24 08:40:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742776836654010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2996, 2995, 'P3:配料拣选', '管理员', '2025-03-24 08:40:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777176248010000', 'ASRS-0314', '9F6705', '2025-03-22 08:24:00', 60, 59, 'P3:配料拣选', '管理员', '2025-03-24 08:46:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777256634010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 1000, 999, 'P3:配料拣选', '管理员', '2025-03-24 08:47:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777293607010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 30, 29, 'P3:配料拣选', '管理员', '2025-03-24 08:48:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777388154010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 160, 158, 'P3:配料拣选', '管理员', '2025-03-24 08:49:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777437348010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 600, 599, 'P3:配料拣选', '管理员', '2025-03-24 08:50:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777482236010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 100, 99, 'P3:配料拣选', '管理员', '2025-03-24 08:51:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777668316010000', 'ASRS-0330', '6E1925', '2025-03-22 08:22:57', 50, 49, 'P3:配料拣选', '管理员', '2025-03-24 08:54:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777695061010000', 'ASRS-0328', '6E1924', '2025-03-22 08:23:29', 50, 49, 'P3:配料拣选', '管理员', '2025-03-24 08:54:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777836420010000', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 48, 46, 'P3:配料拣选', '管理员', '2025-03-24 08:57:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742777936493010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 700, 698, 'P3:配料拣选', '管理员', '2025-03-24 08:58:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778006670010000', 'ASRS-0331', '6E1923', '2025-03-22 08:22:44', 20, 19, 'P3:配料拣选', '管理员', '2025-03-24 09:00:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778036604010000', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 50, 48, 'P3:配料拣选', '管理员', '2025-03-24 09:00:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778157005010000', 'ASRS-0327', '6V9834', '2025-03-22 08:23:44', 30, 29, 'P3:配料拣选', '管理员', '2025-03-24 09:02:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778173926010000', 'ASRS-0274', '1488356', '2025-03-22 11:53:32', 12, 11, 'P3:配料拣选', '管理员', '2025-03-24 09:02:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778442579010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 159, 157, 'P3:配料拣选', '管理员', '2025-03-24 09:07:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778562775010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 150, 149, 'P3:配料拣选', '管理员', '2025-03-24 09:09:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778599855010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 500, 499, 'P3:配料拣选', '管理员', '2025-03-24 09:10:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742778714513010000', 'ASRS-0303', '2191893', '2025-03-22 08:24:59', 100, 96, 'P3:配料拣选', '管理员', '2025-03-24 09:11:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779025767010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 99, 88, 'P3:配料拣选', '管理员', '2025-03-24 09:17:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779082417010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 347, 314, 'P3:配料拣选', '管理员', '2025-03-24 09:18:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779112907010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 74, 63, 'P3:配料拣选', '管理员', '2025-03-24 09:18:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779154628010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 599, 588, 'P3:配料拣选', '管理员', '2025-03-24 09:19:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779197146010000', 'ASRS-0302', '9S4183', '2025-03-22 08:25:13', 59, 48, 'P3:配料拣选', '管理员', '2025-03-24 09:19:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779234960010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 999, 988, 'P3:配料拣选', '管理员', '2025-03-24 09:20:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779348785010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 298, 276, 'P3:配料拣选', '管理员', '2025-03-24 09:22:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779382567010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 499, 488, 'P3:配料拣选', '管理员', '2025-03-24 09:23:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779484321010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1195, 1140, 'P3:配料拣选', '管理员', '2025-03-24 09:24:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779702681010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 314, 281, 'P3:配料拣选', '管理员', '2025-03-24 09:28:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779885514010000', 'ASRS-0329', '3603693', '2025-03-22 08:23:11', 96, 52, 'P3:配料拣选', '管理员', '2025-03-24 09:31:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779928669010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1999, 1988, 'P3:配料拣选', '管理员', '2025-03-24 09:32:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779955948010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 899, 888, 'P3:配料拣选', '管理员', '2025-03-24 09:32:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742779990029010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 499, 488, 'P3:配料拣选', '管理员', '2025-03-24 09:33:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742780433144010000', 'ASRS-0301', '1061791', '2025-03-22 11:49:02', 5, 0, 'P2:出库拣选', '管理员', '2025-03-24 09:40:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742780472317010000', 'ASRS-0274', '1488356', '2025-03-22 11:53:32', 11, 0, 'P2:出库拣选', '管理员', '2025-03-24 09:41:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742780534951010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2995, 2940, 'P3:配料拣选', '管理员', '2025-03-24 09:42:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742780605639010000', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 46, 24, 'P3:配料拣选', '管理员', '2025-03-24 09:43:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781015143010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2940, 2907, 'P3:配料拣选', '管理员', '2025-03-24 09:50:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781170000010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 29, 18, 'P3:配料拣选', '管理员', '2025-03-24 09:52:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781304725010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 999, 988, 'P3:配料拣选', '管理员', '2025-03-24 09:55:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781489043010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 599, 588, 'P3:配料拣选', '管理员', '2025-03-24 09:58:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781535163010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 158, 136, 'P3:配料拣选', '管理员', '2025-03-24 09:58:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781580988010000', 'ASRS-0314', '9F6705', '2025-03-22 08:24:00', 59, 48, 'P3:配料拣选', '管理员', '2025-03-24 09:59:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781630459010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 99, 88, 'P3:配料拣选', '管理员', '2025-03-24 10:00:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781699757010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 157, 135, 'P3:配料拣选', '管理员', '2025-03-24 10:01:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781867577010000', 'ASRS-0328', '6E1924', '2025-03-22 08:23:29', 49, 38, 'P3:配料拣选', '管理员', '2025-03-24 10:04:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742781896554010000', 'ASRS-0330', '6E1925', '2025-03-22 08:22:57', 49, 38, 'P3:配料拣选', '管理员', '2025-03-24 10:04:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782052696010000', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 48, 26, 'P3:配料拣选', '管理员', '2025-03-24 10:07:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782091008010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 698, 676, 'P3:配料拣选', '管理员', '2025-03-24 10:08:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782195937010000', 'ASRS-0331', '6E1923', '2025-03-22 08:22:44', 19, 8, 'P3:配料拣选', '管理员', '2025-03-24 10:09:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782265006010000', 'ASRS-0339', '1D4566', '2025-03-22 14:27:11', 100, 50, 'P3:出库拣选', '管理员', '2025-03-24 10:11:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782413361010000', 'ASRS-0348', '1488356', '2025-03-24 09:42:36', 11, 0, 'P3:配料拣选', '管理员', '2025-03-24 10:13:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782472416010000', 'ASRS-0327', '6V9834', '2025-03-22 08:23:44', 29, 18, 'P3:配料拣选', '管理员', '2025-03-24 10:14:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782591629010000', 'ASRS-0337', '6V9834', '2025-03-24 03:50:49', 30, 19, 'P3:配料拣选', '管理员', '2025-03-24 10:16:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782723279010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 499, 488, 'P3:配料拣选', '管理员', '2025-03-24 10:18:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782750487010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 149, 138, 'P3:配料拣选', '管理员', '2025-03-24 10:19:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742782893064010000', 'ASRS-0303', '2191893', '2025-03-22 08:24:59', 96, 52, 'P3:配料拣选', '管理员', '2025-03-24 10:21:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742789983755010000', 'ASRS-0376', '7X0352', '2025-03-22 14:20:47', 40, 36, 'P2:出库拣选', '管理员', '2025-03-24 12:19:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742790008522010000', 'ASRS-0364', '6V1849', '2025-03-22 14:26:01', 8, 0, 'P2:出库拣选', '管理员', '2025-03-24 12:20:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794181993010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 988, 978, 'P3:配料拣选', '管理员', '2025-03-24 13:29:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794218125010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 175, 165, 'P3:配料拣选', '管理员', '2025-03-24 13:30:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794378179010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 200, 170, 'P3:配料拣选', '管理员', '2025-03-24 13:32:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794415335010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 70, 60, 'P3:配料拣选', '管理员', '2025-03-24 13:33:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794594224010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 978, 962, 'P3:配料拣选', '管理员', '2025-03-24 13:36:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794633415010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 165, 149, 'P3:配料拣选', '管理员', '2025-03-24 13:37:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794768844010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 60, 44, 'P3:配料拣选', '管理员', '2025-03-24 13:39:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742794823970010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 170, 122, 'P3:配料拣选', '管理员', '2025-03-24 13:40:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795044252010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 149, 145, 'P3:配料拣选', '管理员', '2025-03-24 13:44:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795088090010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 962, 958, 'P3:配料拣选', '管理员', '2025-03-24 13:44:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795240289010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 44, 40, 'P3:配料拣选', '管理员', '2025-03-24 13:47:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795294306010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 122, 110, 'P3:配料拣选', '管理员', '2025-03-24 13:48:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795468550010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 958, 952, 'P3:配料拣选', '管理员', '2025-03-24 13:51:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795501719010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 145, 139, 'P3:配料拣选', '管理员', '2025-03-24 13:51:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795668954010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 40, 34, 'P3:配料拣选', '管理员', '2025-03-24 13:54:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742795720614010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 110, 92, 'P3:配料拣选', '管理员', '2025-03-24 13:55:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742796352460010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 952, 948, 'P3:配料拣选', '管理员', '2025-03-24 14:05:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742796742840010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 92, 80, 'P3:配料拣选', '管理员', '2025-03-24 14:12:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742863878330010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 948, 944, 'P3:配料拣选', '管理员', '2025-03-25 08:51:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742863993300010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 80, 68, 'P3:配料拣选', '管理员', '2025-03-25 08:53:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864148702010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 139, 131, 'P3:配料拣选', '管理员', '2025-03-25 08:55:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864190751010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 944, 936, 'P3:配料拣选', '管理员', '2025-03-25 08:56:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864338134010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 34, 26, 'P3:配料拣选', '管理员', '2025-03-25 08:58:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864391911010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 68, 44, 'P3:配料拣选', '管理员', '2025-03-25 08:59:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864562656010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 936, 932, 'P3:配料拣选', '管理员', '2025-03-25 09:02:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864590162010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 131, 127, 'P3:配料拣选', '管理员', '2025-03-25 09:03:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864701460010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 26, 22, 'P3:配料拣选', '管理员', '2025-03-25 09:05:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864786905010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 44, 32, 'P3:配料拣选', '管理员', '2025-03-25 09:06:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864960834010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 127, 107, 'P3:配料拣选', '管理员', '2025-03-25 09:09:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742864989329010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 932, 912, 'P3:配料拣选', '管理员', '2025-03-25 09:09:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742865161492010000', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 22, 2, 'P3:配料拣选', '管理员', '2025-03-25 09:12:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742865215443010000', 'ASRS-0386', '2521631', '2025-03-24 03:53:07', 32, 0, 'P3:配料拣选', '管理员', '2025-03-25 09:13:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866066159010000', 'ASRS-1531', '2521631', '2025-03-25 08:46:08', 200, 172, 'P3:配料拣选', '管理员', '2025-03-25 09:27:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866101435010000', 'ASRS-1180', '6J4568', '2025-03-24 03:54:09', 70, 0, 'P2:出库拣选', '管理员', '2025-03-25 09:28:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866216872010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 912, 900, 'P3:配料拣选', '管理员', '2025-03-25 09:30:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866248201010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 107, 95, 'P3:配料拣选', '管理员', '2025-03-25 09:30:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866380672010000', 'ASRS-1531', '2521631', '2025-03-25 08:46:08', 172, 136, 'P3:配料拣选', '管理员', '2025-03-25 09:33:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866788515010000', 'ASRS-0298', '6J4568', '2025-03-25 09:35:17', 2, 0, 'P3:配料拣选', '管理员', '2025-03-25 09:39:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742866788515010001', 'ASRS-0298', '6J4568', '2025-03-22 08:21:03', 2, 0, 'P3:配料拣选', '管理员', '2025-03-25 09:39:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867086211010000', 'ASRS-0386', '6J4568', '2025-03-25 09:41:00', 70, 62, 'P3:配料拣选', '管理员', '2025-03-25 09:44:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867394925010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 588, 580, 'P3:配料拣选', '管理员', '2025-03-25 09:49:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867419235010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 888, 880, 'P3:配料拣选', '管理员', '2025-03-25 09:50:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867454356010000', 'ASRS-0299', '9J0477', '2025-03-22 11:50:32', 46, 38, 'P3:配料拣选', '管理员', '2025-03-25 09:50:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867486724010000', 'ASRS-0250', '6J4694', '2025-03-22 11:51:30', 297, 289, 'P3:配料拣选', '管理员', '2025-03-25 09:51:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867661019010000', 'ASRS-1189', '4B9782', '2025-03-24 03:55:05', 200, 192, 'P3:配料拣选', '管理员', '2025-03-25 09:54:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867685454010000', 'ASRS-0297', '7B8194', '2025-03-22 11:50:05', 183, 175, 'P3:配料拣选', '管理员', '2025-03-25 09:54:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867812134010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 880, 872, 'P3:配料拣选', '管理员', '2025-03-25 09:56:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742867842519010000', 'ASRS-1531', '2521631', '2025-03-25 08:46:08', 136, 112, 'P3:配料拣选', '管理员', '2025-03-25 09:57:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742868885477010000', 'ASRS-0303', '2191893', '2025-03-22 08:24:59', 52, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:14:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869067526010000', 'ASRS-0329', '3603693', '2025-03-22 08:23:11', 52, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:17:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869107108010000', 'ASRS-0331', '6E1923', '2025-03-22 08:22:44', 8, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:18:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869131772010000', 'ASRS-0330', '6E1925', '2025-03-22 08:22:57', 38, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:18:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869244313010000', 'ASRS-0328', '6E1924', '2025-03-22 08:23:29', 38, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:20:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869271536010000', 'ASRS-0273', '8C5176', '2025-03-22 11:54:56', 40, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:21:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869302751010000', 'ASRS-0327', '6V9834', '2025-03-22 08:23:44', 18, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:21:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869448196010000', 'ASRS-0272', '8C5176', '2025-03-22 11:55:09', 68, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:24:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869506763010000', 'ASRS-0314', '9F6705', '2025-03-22 08:24:00', 48, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:25:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742869551077010000', 'ASRS-0302', '9S4183', '2025-03-22 08:25:13', 48, 0, 'P2:出库拣选', '管理员', '2025-03-25 10:25:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742879938899010000', 'ASRS-0341', '4T0993', '2025-03-22 14:23:27', 100, 86, 'P3:出库拣选', '管理员', '2025-03-25 13:18:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742880380469010000', 'ASRS-0346', '4T1021', '2025-03-22 14:22:37', 60, 55, 'P3:出库拣选', '管理员', '2025-03-25 13:26:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883236292010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 488, 487, 'P3:配料拣选', '管理员', '2025-03-25 14:13:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883258921010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 281, 278, 'P3:配料拣选', '管理员', '2025-03-25 14:14:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883269970010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 88, 87, 'P3:配料拣选', '管理员', '2025-03-25 14:14:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883285191010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 63, 62, 'P3:配料拣选', '管理员', '2025-03-25 14:14:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883309467010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1140, 1137, 'P3:配料拣选', '管理员', '2025-03-25 14:15:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883329649010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 580, 579, 'P3:配料拣选', '管理员', '2025-03-25 14:15:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883460549010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 276, 274, 'P3:配料拣选', '管理员', '2025-03-25 14:17:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883541364010000', 'ASRS-1436', '9S4183', '2025-03-24 03:48:49', 60, 59, 'P3:配料拣选', '管理员', '2025-03-25 14:19:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883592191010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 900, 899, 'P3:配料拣选', '管理员', '2025-03-25 14:19:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883673357010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1137, 1135, 'P3:配料拣选', '管理员', '2025-03-25 14:21:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883773349010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 488, 487, 'P3:配料拣选', '管理员', '2025-03-25 14:22:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883796244010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 872, 871, 'P3:配料拣选', '管理员', '2025-03-25 14:23:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883860204010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2907, 2904, 'P3:配料拣选', '管理员', '2025-03-25 14:24:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742883910389010000', 'ASRS-1032', '3603693', '2025-03-24 09:11:08', 100, 97, 'P3:配料拣选', '管理员', '2025-03-25 14:25:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884014372010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 18, 17, 'P3:配料拣选', '管理员', '2025-03-25 14:26:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884032548010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1988, 1987, 'P3:配料拣选', '管理员', '2025-03-25 14:27:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884083634010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 136, 134, 'P3:配料拣选', '管理员', '2025-03-25 14:28:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884107757010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 588, 587, 'P3:配料拣选', '管理员', '2025-03-25 14:28:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884141261010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 88, 87, 'P3:配料拣选', '管理员', '2025-03-25 14:29:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884163221010000', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 24, 22, 'P3:配料拣选', '管理员', '2025-03-25 14:29:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884213894010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2904, 2903, 'P3:配料拣选', '管理员', '2025-03-25 14:30:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884235486010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 135, 133, 'P3:配料拣选', '管理员', '2025-03-25 14:30:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884340165010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 676, 674, 'P3:配料拣选', '管理员', '2025-03-25 14:32:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884358309010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 988, 987, 'P3:配料拣选', '管理员', '2025-03-25 14:32:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884422117010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 60, 59, 'P3:配料拣选', '管理员', '2025-03-25 14:33:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884436966010000', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 26, 24, 'P3:配料拣选', '管理员', '2025-03-25 14:33:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884535168010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 50, 49, 'P3:配料拣选', '管理员', '2025-03-25 14:35:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884550741010000', 'ASRS-1025', '6E1925', '2025-03-24 03:58:25', 22, 21, 'P3:配料拣选', '管理员', '2025-03-25 14:35:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884666605010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 450, 449, 'P3:配料拣选', '管理员', '2025-03-25 14:37:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884724978010000', 'ASRS-1031', '6E1923', '2025-03-24 03:49:52', 20, 19, 'P3:配料拣选', '管理员', '2025-03-25 14:38:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884833928010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 138, 136, 'P3:配料拣选', '管理员', '2025-03-25 14:40:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884849180010000', 'ASRS-0337', '6V9834', '2025-03-24 03:50:49', 19, 18, 'P3:配料拣选', '管理员', '2025-03-25 14:40:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884952463010000', 'ASRS-1088', '2191893', '2025-03-24 03:56:02', 100, 96, 'P3:配料拣选', '管理员', '2025-03-25 14:42:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742884966894010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 488, 487, 'P3:配料拣选', '管理员', '2025-03-25 14:42:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885214555010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 278, 260, 'P3:配料拣选', '管理员', '2025-03-25 14:46:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885239338010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 87, 81, 'P3:配料拣选', '管理员', '2025-03-25 14:47:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885265221010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 62, 56, 'P3:配料拣选', '管理员', '2025-03-25 14:47:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885300258010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 274, 262, 'P3:配料拣选', '管理员', '2025-03-25 14:48:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885342514010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 579, 573, 'P3:配料拣选', '管理员', '2025-03-25 14:49:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885364929010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 487, 481, 'P3:配料拣选', '管理员', '2025-03-25 14:49:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885391231010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 1000, 994, 'P3:配料拣选', '管理员', '2025-03-25 14:49:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885445515010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1135, 1099, 'P3:配料拣选', '管理员', '2025-03-25 14:50:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885581573010000', 'ASRS-1436', '9S4183', '2025-03-24 03:48:49', 59, 29, 'P3:配料拣选', '管理员', '2025-03-25 14:53:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885621549010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 899, 869, 'P3:配料拣选', '管理员', '2025-03-25 14:53:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885668134010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 250, 220, 'P3:配料拣选', '管理员', '2025-03-25 14:54:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885734648010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2903, 2873, 'P3:配料拣选', '管理员', '2025-03-25 14:55:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885855721010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1987, 1981, 'P3:配料拣选', '管理员', '2025-03-25 14:57:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885920865010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 871, 865, 'P3:配料拣选', '管理员', '2025-03-25 14:58:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742885945190010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 487, 481, 'P3:配料拣选', '管理员', '2025-03-25 14:59:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886015609010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2700, 2694, 'P3:配料拣选', '管理员', '2025-03-25 15:00:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886053516010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 17, 11, 'P3:配料拣选', '管理员', '2025-03-25 15:00:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886073898010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2873, 2867, 'P3:配料拣选', '管理员', '2025-03-25 15:01:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886150683010000', 'ASRS-0517', '9S4191', '2025-03-24 03:55:59', 500, 494, 'P3:配料拣选', '管理员', '2025-03-25 15:02:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886198946010000', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 22, 10, 'P3:配料拣选', '管理员', '2025-03-25 15:03:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886321412010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 449, 443, 'P3:配料拣选', '管理员', '2025-03-25 15:05:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886349330010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 50, 44, 'P3:配料拣选', '管理员', '2025-03-25 15:05:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886436987010000', 'ASRS-0523', '8T8987', '2025-03-24 03:54:05', 10, 4, 'P3:配料拣选', '管理员', '2025-03-25 15:07:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886456465010000', 'ASRS-1261', '1061791', '2025-03-24 09:42:46', 5, 0, 'P2:出库拣选', '管理员', '2025-03-25 15:07:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886556436010000', 'ASRS-1025', '6E1925', '2025-03-24 03:58:25', 21, 15, 'P3:配料拣选', '管理员', '2025-03-25 15:09:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886698031010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1188, 1176, 'P3:配料拣选', '管理员', '2025-03-25 15:11:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886738048010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 133, 121, 'P3:配料拣选', '管理员', '2025-03-25 15:12:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886783192010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 87, 81, 'P3:配料拣选', '管理员', '2025-03-25 15:13:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886816615010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 59, 53, 'P3:配料拣选', '管理员', '2025-03-25 15:13:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886832418010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 49, 43, 'P3:配料拣选', '管理员', '2025-03-25 15:13:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886861057010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 500, 488, 'P3:配料拣选', '管理员', '2025-03-25 15:14:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742886990121010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 674, 662, 'P3:配料拣选', '管理员', '2025-03-25 15:16:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887007655010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 987, 981, 'P3:配料拣选', '管理员', '2025-03-25 15:16:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887047713010000', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 24, 12, 'P3:配料拣选', '管理员', '2025-03-25 15:17:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887202827010000', 'ASRS-1031', '6E1923', '2025-03-24 03:49:52', 19, 13, 'P3:配料拣选', '管理员', '2025-03-25 15:20:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887559669010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 260, 248, 'P3:配料拣选', '管理员', '2025-03-25 15:26:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887577979010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 81, 77, 'P3:配料拣选', '管理员', '2025-03-25 15:26:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887595931010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 56, 52, 'P3:配料拣选', '管理员', '2025-03-25 15:26:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887616788010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 262, 254, 'P3:配料拣选', '管理员', '2025-03-25 15:26:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887634460010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 481, 477, 'P3:配料拣选', '管理员', '2025-03-25 15:27:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887652873010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 573, 569, 'P3:配料拣选', '管理员', '2025-03-25 15:27:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887745121010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1099, 1075, 'P3:配料拣选', '管理员', '2025-03-25 15:29:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887799936010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 994, 990, 'P3:配料拣选', '管理员', '2025-03-25 15:30:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887913667010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 869, 849, 'P3:配料拣选', '管理员', '2025-03-25 15:31:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742887983415010000', 'ASRS-1436', '9S4183', '2025-03-24 03:48:49', 29, 9, 'P3:配料拣选', '管理员', '2025-03-25 15:33:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888011719010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 220, 200, 'P3:配料拣选', '管理员', '2025-03-25 15:33:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888068878010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2867, 2847, 'P3:配料拣选', '管理员', '2025-03-25 15:34:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888169910010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 11, 7, 'P3:配料拣选', '管理员', '2025-03-25 15:36:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888202872010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1981, 1977, 'P3:配料拣选', '管理员', '2025-03-25 15:36:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888248502010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 865, 861, 'P3:配料拣选', '管理员', '2025-03-25 15:37:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888265216010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 481, 477, 'P3:配料拣选', '管理员', '2025-03-25 15:37:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888331887010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 250, 246, 'P3:配料拣选', '管理员', '2025-03-25 15:38:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888394808010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2694, 2690, 'P3:配料拣选', '管理员', '2025-03-25 15:39:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888412838010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2847, 2843, 'P3:配料拣选', '管理员', '2025-03-25 15:40:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888430462010000', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 10, 2, 'P3:配料拣选', '管理员', '2025-03-25 15:40:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888539951010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 44, 40, 'P3:配料拣选', '管理员', '2025-03-25 15:42:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888618150010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 443, 439, 'P3:配料拣选', '管理员', '2025-03-25 15:43:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888689065010000', 'ASRS-0523', '8T8987', '2025-03-24 03:54:05', 4, 0, 'P3:配料拣选', '管理员', '2025-03-25 15:44:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888798295010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 53, 49, 'P3:配料拣选', '管理员', '2025-03-25 15:46:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888818244010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1176, 1168, 'P3:配料拣选', '管理员', '2025-03-25 15:46:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888863686010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 121, 113, 'P3:配料拣选', '管理员', '2025-03-25 15:47:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888885054010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 81, 77, 'P3:配料拣选', '管理员', '2025-03-25 15:48:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888917343010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 43, 39, 'P3:配料拣选', '管理员', '2025-03-25 15:48:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742888986201010000', 'ASRS-1025', '6E1925', '2025-03-24 03:58:25', 15, 11, 'P3:配料拣选', '管理员', '2025-03-25 15:49:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889079647010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 488, 480, 'P3:配料拣选', '管理员', '2025-03-25 15:51:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889175075010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 981, 977, 'P3:配料拣选', '管理员', '2025-03-25 15:52:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889194337010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 662, 654, 'P3:配料拣选', '管理员', '2025-03-25 15:53:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889261500010000', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 12, 4, 'P3:配料拣选', '管理员', '2025-03-25 15:54:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889380867010000', 'ASRS-1031', '6E1923', '2025-03-24 03:49:52', 13, 9, 'P3:配料拣选', '管理员', '2025-03-25 15:56:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742889490041010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 100, 96, 'P3:配料拣选', '管理员', '2025-03-25 15:58:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742958702806010000', 'asrs-1392', '1061791', '2025-03-26 08:32:08', 4, 0, 'P2:出库拣选', '管理员', '2025-03-26 11:11:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742961861863010000', 'ASRS-1436', '9S4183', '2025-03-24 03:48:49', 9, 0, 'P3:配料拣选', '管理员', '2025-03-26 12:04:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742961919718010000', 'ASRS-1907', '5H3193', '2025-03-22 14:12:38', 200, 164, 'P3:配料拣选', '管理员', '2025-03-26 12:05:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742961950423010000', 'ASRS-0351', '7J1089', '2025-03-24 03:50:25', 100, 82, 'P3:配料拣选', '管理员', '2025-03-26 12:05:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742961976478010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 849, 840, 'P3:配料拣选', '管理员', '2025-03-26 12:06:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742961999998010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2843, 2834, 'P3:配料拣选', '管理员', '2025-03-26 12:06:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962069216010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 990, 900, 'P3:配料拣选', '管理员', '2025-03-26 12:07:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962093863010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2690, 2672, 'P3:配料拣选', '管理员', '2025-03-26 12:08:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962121959010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 477, 468, 'P3:配料拣选', '管理员', '2025-03-26 12:08:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962152630010000', 'ASRS-1899', '9S8006', '2025-03-24 03:52:22', 200, 191, 'P3:配料拣选', '管理员', '2025-03-26 12:09:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962176719010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 200, 191, 'P3:配料拣选', '管理员', '2025-03-26 12:09:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962469252010000', 'ASRS-0284', '6V9830', '2025-03-24 03:53:47', 200, 182, 'P3:配料拣选', '管理员', '2025-03-26 12:14:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962707629010000', 'ASRS-0335', '8F9206', '2025-03-22 15:15:41', 3485, 3422, 'P3:配料拣选', '管理员', '2025-03-26 12:18:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962746454010000', 'ASRS-0244', '5J2974', '2025-03-24 03:55:30', 150, 132, 'P3:配料拣选', '管理员', '2025-03-26 12:19:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962774598010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 425, 407, 'P3:配料拣选', '管理员', '2025-03-26 12:19:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962817086010000', 'asrs-1443', '6E5291', '2025-03-26 08:33:07', 150, 132, 'P3:配料拣选', '管理员', '2025-03-26 12:20:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742962902037010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 113, 95, 'P3:配料拣选', '管理员', '2025-03-26 12:21:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963328337010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1977, 1959, 'P3:配料拣选', '管理员', '2025-03-26 12:28:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963382195010000', 'ASRS-0521', '6E5289', '2025-03-24 03:51:36', 100, 82, 'P3:配料拣选', '管理员', '2025-03-26 12:29:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963435025010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2834, 2807, 'P3:配料拣选', '管理员', '2025-03-26 12:30:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963460889010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 900, 891, 'P3:配料拣选', '管理员', '2025-03-26 12:31:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963508159010000', 'ASRS-1189', '4B9782', '2025-03-24 03:55:05', 192, 147, 'P3:配料拣选', '管理员', '2025-03-26 12:31:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963598769010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 1075, 976, 'P3:配料拣选', '管理员', '2025-03-26 12:33:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963619186010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 191, 182, 'P3:配料拣选', '管理员', '2025-03-26 12:33:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963951914010000', 'ASRS-1249', '1268473', '2025-03-24 03:54:37', 100, 91, 'P3:配料拣选', '管理员', '2025-03-26 12:39:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742963999642010000', 'ASRS-1713', '8T5005', '2025-03-24 03:39:53', 235, 199, 'P3:配料拣选', '管理员', '2025-03-26 12:40:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964029420010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 300, 291, 'P3:配料拣选', '管理员', '2025-03-26 12:40:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964250764010000', 'ASRS-1023', '4564624', '2025-03-24 03:52:18', 25, 16, 'P3:配料拣选', '管理员', '2025-03-26 12:44:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964331532010000', 'ASRS-0270', '4564633', '2025-03-24 03:53:11', 25, 16, 'P3:配料拣选', '管理员', '2025-03-26 12:45:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964597943010000', 'ASRS-0525', '5H4019', '2025-03-24 03:57:27', 150, 132, 'P3:配料拣选', '管理员', '2025-03-26 12:49:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964704288010000', 'ASRS-0545', '8T4121', '2025-03-24 03:48:01', 2000, 1928, 'P3:配料拣选', '管理员', '2025-03-26 12:51:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964763288010000', 'ASRS-1528', '8C3206', '2025-03-24 03:49:21', 70, 34, 'P3:配料拣选', '管理员', '2025-03-26 12:52:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964846744010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 407, 335, 'P3:配料拣选', '管理员', '2025-03-26 12:54:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742964876008010000', 'ASRS-0342', '7S0530', '2025-03-24 03:50:46', 60, 51, 'P3:配料拣选', '管理员', '2025-03-26 12:54:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742965677300010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 291, 273, 'P3:配料拣选', '管理员', '2025-03-26 13:07:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966102560010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 77, 73, 'P3:配料拣选', '管理员', '2025-03-26 13:15:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966135397010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 248, 236, 'P3:配料拣选', '管理员', '2025-03-26 13:15:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966156365010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 569, 565, 'P3:配料拣选', '管理员', '2025-03-26 13:15:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966173739010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 52, 48, 'P3:配料拣选', '管理员', '2025-03-26 13:16:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966202606010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 254, 246, 'P3:配料拣选', '管理员', '2025-03-26 13:16:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966225429010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 840, 836, 'P3:配料拣选', '管理员', '2025-03-26 13:17:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966279796010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 468, 464, 'P3:配料拣选', '管理员', '2025-03-26 13:18:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966382503010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 976, 956, 'P3:配料拣选', '管理员', '2025-03-26 13:19:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966439028010000', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 48, 44, 'P3:配料拣选', '管理员', '2025-03-26 13:20:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966560887010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1959, 1955, 'P3:配料拣选', '管理员', '2025-03-26 13:22:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966571822010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 477, 473, 'P3:配料拣选', '管理员', '2025-03-26 13:22:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966628046010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 861, 857, 'P3:配料拣选', '管理员', '2025-03-26 13:23:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966727336010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2807, 2787, 'P3:配料拣选', '管理员', '2025-03-26 13:25:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966849272010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 100, 94, 'P3:配料拣选', '管理员', '2025-03-26 13:27:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966849272010001', 'ASRS-1529', '1007000', '2025-03-24 08:51:34', 2, 0, 'P3:配料拣选', '管理员', '2025-03-26 13:27:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742966891719010000', 'ASRS-1032', '3603693', '2025-03-24 09:11:08', 97, 81, 'P3:配料拣选', '管理员', '2025-03-26 13:28:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967035862010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 77, 73, 'P3:配料拣选', '管理员', '2025-03-26 13:30:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967058927010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 977, 973, 'P3:配料拣选', '管理员', '2025-03-26 13:30:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967081847010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 587, 583, 'P3:配料拣选', '管理员', '2025-03-26 13:31:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967104631010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 134, 126, 'P3:配料拣选', '管理员', '2025-03-26 13:31:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967146000010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 7, 3, 'P3:配料拣选', '管理员', '2025-03-26 13:32:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967295769010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 49, 45, 'P3:配料拣选', '管理员', '2025-03-26 13:34:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967328834010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 95, 87, 'P3:配料拣选', '管理员', '2025-03-26 13:35:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967455436010000', 'ASRS-1025', '6E1925', '2025-03-24 03:58:25', 11, 7, 'P3:配料拣选', '管理员', '2025-03-26 13:37:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967489402010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 39, 35, 'P3:配料拣选', '管理员', '2025-03-26 13:38:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967607840010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 654, 646, 'P3:配料拣选', '管理员', '2025-03-26 13:40:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967637942010000', 'ASRS-1031', '6E1923', '2025-03-24 03:49:52', 9, 5, 'P3:配料拣选', '管理员', '2025-03-26 13:40:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967709519010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 250, 246, 'P3:配料拣选', '管理员', '2025-03-26 13:41:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967709519010001', 'ASRS-0338', '6V5230', '2025-03-22 14:27:35', 4, 0, 'P3:配料拣选', '管理员', '2025-03-26 13:41:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967811251010000', 'ASRS-0337', '6V9834', '2025-03-24 03:50:49', 18, 14, 'P3:配料拣选', '管理员', '2025-03-26 13:43:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967865989010000', 'ASRS-0501', '1488356', '2025-03-26 08:33:38', 16, 12, 'P3:配料拣选', '管理员', '2025-03-26 13:44:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742967973757010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 487, 483, 'P3:配料拣选', '管理员', '2025-03-26 13:46:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968001029010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 136, 132, 'P3:配料拣选', '管理员', '2025-03-26 13:46:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968183310010000', 'ASRS-1088', '2191893', '2025-03-24 03:56:02', 96, 80, 'P3:配料拣选', '管理员', '2025-03-26 13:49:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968475545010000', 'ASRS-1907', '5H3193', '2025-03-22 14:12:38', 164, 160, 'P3:配料拣选', '管理员', '2025-03-26 13:54:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968492271010000', 'ASRS-0351', '7J1089', '2025-03-24 03:50:25', 82, 80, 'P3:配料拣选', '管理员', '2025-03-26 13:54:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968519511010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 836, 835, 'P3:配料拣选', '管理员', '2025-03-26 13:55:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968543355010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 891, 881, 'P3:配料拣选', '管理员', '2025-03-26 13:55:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968563259010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 464, 463, 'P3:配料拣选', '管理员', '2025-03-26 13:56:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968575017010000', 'ASRS-1899', '9S8006', '2025-03-24 03:52:22', 191, 190, 'P3:配料拣选', '管理员', '2025-03-26 13:56:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968591347010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2672, 2670, 'P3:配料拣选', '管理员', '2025-03-26 13:56:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968599474010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 182, 181, 'P3:配料拣选', '管理员', '2025-03-26 13:56:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968618483010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2787, 2786, 'P3:配料拣选', '管理员', '2025-03-26 13:56:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968701996010000', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 44, 43, 'P3:配料拣选', '管理员', '2025-03-26 13:58:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968810038010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 881, 880, 'P3:配料拣选', '管理员', '2025-03-26 14:00:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968854488010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1955, 1953, 'P3:配料拣选', '管理员', '2025-03-26 14:00:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968913038010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 956, 945, 'P3:配料拣选', '管理员', '2025-03-26 14:01:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968939111010000', 'ASRS-0521', '6E5289', '2025-03-24 03:51:36', 82, 80, 'P3:配料拣选', '管理员', '2025-03-26 14:02:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742968960408010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2786, 2783, 'P3:配料拣选', '管理员', '2025-03-26 14:02:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969022537010000', 'ASRS-1189', '4B9782', '2025-03-24 03:55:05', 147, 142, 'P3:配料拣选', '管理员', '2025-03-26 14:03:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969085865010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 181, 180, 'P3:配料拣选', '管理员', '2025-03-26 14:04:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969218170010000', 'ASRS-0244', '5J2974', '2025-03-24 03:55:30', 132, 130, 'P3:配料拣选', '管理员', '2025-03-26 14:06:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969247139010000', 'ASRS-0335', '8F9206', '2025-03-22 15:15:41', 3422, 3415, 'P3:配料拣选', '管理员', '2025-03-26 14:07:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969278025010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 87, 85, 'P3:配料拣选', '管理员', '2025-03-26 14:07:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969286658010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 335, 333, 'P3:配料拣选', '管理员', '2025-03-26 14:08:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969322610010000', 'asrs-1443', '6E5291', '2025-03-26 08:33:07', 132, 130, 'P3:配料拣选', '管理员', '2025-03-26 14:08:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969331844010000', 'ASRS-0284', '6V9830', '2025-03-24 03:53:47', 182, 180, 'P3:配料拣选', '管理员', '2025-03-26 14:08:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969458548010000', 'ASRS-0349', '6V5195', '2025-03-22 14:26:39', 200, 199, 'P3:配料拣选', '管理员', '2025-03-26 14:10:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969469461010000', 'ASRS-1713', '8T5005', '2025-03-24 03:39:53', 199, 195, 'P3:配料拣选', '管理员', '2025-03-26 14:11:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969527948010000', 'ASRS-1249', '1268473', '2025-03-24 03:54:37', 91, 90, 'P3:配料拣选', '管理员', '2025-03-26 14:12:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969688495010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 273, 272, 'P3:配料拣选', '管理员', '2025-03-26 14:14:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969820443010000', 'ASRS-1023', '4564624', '2025-03-24 03:52:18', 16, 15, 'P3:配料拣选', '管理员', '2025-03-26 14:17:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742969870537010000', 'ASRS-0270', '4564633', '2025-03-24 03:53:11', 16, 15, 'P3:配料拣选', '管理员', '2025-03-26 14:17:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970071164010000', 'ASRS-0545', '8T4121', '2025-03-24 03:48:01', 1928, 1920, 'P3:配料拣选', '管理员', '2025-03-26 14:21:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970093800010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 333, 325, 'P3:配料拣选', '管理员', '2025-03-26 14:21:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970112571010000', 'ASRS-1528', '8C3206', '2025-03-24 03:49:21', 34, 30, 'P3:配料拣选', '管理员', '2025-03-26 14:21:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970123410010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 272, 270, 'P3:配料拣选', '管理员', '2025-03-26 14:22:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970138507010000', 'ASRS-0342', '7S0530', '2025-03-24 03:50:46', 51, 50, 'P3:配料拣选', '管理员', '2025-03-26 14:22:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970150129010000', 'ASRS-0525', '5H4019', '2025-03-24 03:57:27', 132, 130, 'P3:配料拣选', '管理员', '2025-03-26 14:22:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970504659010000', 'ASRS-0351', '7J1089', '2025-03-24 03:50:25', 80, 74, 'P3:配料拣选', '管理员', '2025-03-26 14:28:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970526985010000', 'ASRS-1907', '5H3193', '2025-03-22 14:12:38', 160, 148, 'P3:配料拣选', '管理员', '2025-03-26 14:28:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970555355010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 880, 850, 'P3:配料拣选', '管理员', '2025-03-26 14:29:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970591246010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 835, 832, 'P3:配料拣选', '管理员', '2025-03-26 14:29:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970611626010000', 'ASRS-1899', '9S8006', '2025-03-24 03:52:22', 190, 187, 'P3:配料拣选', '管理员', '2025-03-26 14:30:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970630934010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2670, 2664, 'P3:配料拣选', '管理员', '2025-03-26 14:30:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970642172010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 463, 460, 'P3:配料拣选', '管理员', '2025-03-26 14:30:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970669038010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2783, 2780, 'P3:配料拣选', '管理员', '2025-03-26 14:31:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970719607010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 180, 177, 'P3:配料拣选', '管理员', '2025-03-26 14:32:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970731479010000', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 43, 40, 'P3:配料拣选', '管理员', '2025-03-26 14:32:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970860366010000', 'ASRS-1189', '4B9782', '2025-03-24 03:55:05', 142, 127, 'P3:配料拣选', '管理员', '2025-03-26 14:34:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970882078010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1953, 1947, 'P3:配料拣选', '管理员', '2025-03-26 14:34:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970902168010000', 'ASRS-0521', '6E5289', '2025-03-24 03:51:36', 80, 74, 'P3:配料拣选', '管理员', '2025-03-26 14:35:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742970922110010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 850, 847, 'P3:配料拣选', '管理员', '2025-03-26 14:35:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742971028478010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 945, 912, 'P3:配料拣选', '管理员', '2025-03-26 14:37:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742971180110010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 177, 174, 'P3:配料拣选', '管理员', '2025-03-26 14:39:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972039100010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2780, 2771, 'P3:配料拣选', '管理员', '2025-03-26 14:53:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972184265010000', 'ASRS-0335', '8F9206', '2025-03-22 15:15:41', 3415, 3394, 'P3:配料拣选', '管理员', '2025-03-26 14:56:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972203534010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 325, 319, 'P3:配料拣选', '管理员', '2025-03-26 14:56:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972226316010000', 'ASRS-0244', '5J2974', '2025-03-24 03:55:30', 130, 124, 'P3:配料拣选', '管理员', '2025-03-26 14:57:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972251853010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 85, 79, 'P3:配料拣选', '管理员', '2025-03-26 14:57:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972267254010000', 'ASRS-0284', '6V9830', '2025-03-24 03:53:47', 180, 174, 'P3:配料拣选', '管理员', '2025-03-26 14:57:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972289437010000', 'asrs-1443', '6E5291', '2025-03-26 08:33:07', 130, 124, 'P3:配料拣选', '管理员', '2025-03-26 14:58:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972485022010000', 'ASRS-0349', '6V5195', '2025-03-22 14:26:39', 199, 196, 'P3:配料拣选', '管理员', '2025-03-26 15:01:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972514266010000', 'ASRS-1713', '8T5005', '2025-03-24 03:39:53', 195, 183, 'P3:配料拣选', '管理员', '2025-03-26 15:01:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972528856010000', 'ASRS-1249', '1268473', '2025-03-24 03:54:37', 90, 87, 'P3:配料拣选', '管理员', '2025-03-26 15:02:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972547914010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 270, 267, 'P3:配料拣选', '管理员', '2025-03-26 15:02:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972672490010000', 'ASRS-1030', '1298222', '2025-03-24 03:54:33', 15, 12, 'P3:配料拣选', '管理员', '2025-03-26 15:04:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972825377010000', 'ASRS-0545', '8T4121', '2025-03-24 03:48:01', 1920, 1896, 'P3:配料拣选', '管理员', '2025-03-26 15:07:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972861257010000', 'ASRS-1528', '8C3206', '2025-03-24 03:49:21', 30, 18, 'P3:配料拣选', '管理员', '2025-03-26 15:07:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972882785010000', 'ASRS-0525', '5H4019', '2025-03-24 03:57:27', 130, 124, 'P3:配料拣选', '管理员', '2025-03-26 15:08:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972909297010000', 'ASRS-1026', '8T4196', '2025-03-24 03:49:56', 319, 295, 'P3:配料拣选', '管理员', '2025-03-26 15:08:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972928603010000', 'ASRS-0342', '7S0530', '2025-03-24 03:50:46', 50, 47, 'P3:配料拣选', '管理员', '2025-03-26 15:08:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742972958288010000', 'ASRS-0385', '4J0520', '2025-03-24 03:56:52', 267, 261, 'P3:配料拣选', '管理员', '2025-03-26 15:09:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974316329010000', 'ASRS-1907', '5H3193', '2025-03-22 14:12:38', 148, 132, 'P3:配料拣选', '管理员', '2025-03-26 15:31:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974354705010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2664, 2656, 'P3:配料拣选', '管理员', '2025-03-26 15:32:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974380848010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 832, 828, 'P3:配料拣选', '管理员', '2025-03-26 15:33:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974415770010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 847, 807, 'P3:配料拣选', '管理员', '2025-03-26 15:33:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974431329010000', 'ASRS-0351', '7J1089', '2025-03-24 03:50:25', 74, 66, 'P3:配料拣选', '管理员', '2025-03-26 15:33:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974450761010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2771, 2767, 'P3:配料拣选', '管理员', '2025-03-26 15:34:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974467321010000', 'ASRS-1899', '9S8006', '2025-03-24 03:52:22', 187, 183, 'P3:配料拣选', '管理员', '2025-03-26 15:34:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974546531010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 460, 456, 'P3:配料拣选', '管理员', '2025-03-26 15:35:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974641500010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 174, 170, 'P3:配料拣选', '管理员', '2025-03-26 15:37:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1742974776872010000', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 40, 36, 'P3:配料拣选', '管理员', '2025-03-26 15:39:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743038371968010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1947, 1939, 'P3:配料拣选', '管理员', '2025-03-27 09:19:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743038481211010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 912, 902, 'P3:配料拣选', '管理员', '2025-03-27 09:21:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743125106631010000', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 95, 23, 'P2:出库拣选', '管理员', '2025-03-28 09:25:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743125142045010000', 'ASRS-0299', '9J0477', '2025-03-22 11:50:32', 38, 30, 'P2:出库拣选', '管理员', '2025-03-28 09:25:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743125169596010000', 'ASRS-0297', '7B8194', '2025-03-22 11:50:05', 175, 167, 'P2:出库拣选', '管理员', '2025-03-28 09:26:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743125176677010000', 'ASRS-0250', '6J4694', '2025-03-22 11:51:30', 289, 281, 'P2:出库拣选', '管理员', '2025-03-28 09:26:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142275279010000', 'ASRS-0274', '8C5176', '2025-03-25 10:51:19', 67, 0, 'P3:出库拣选', '管理员', '2025-03-28 14:11:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142791876010000', 'ASRS-1246', '6Y2522', '2025-03-22 11:52:42', 132, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:19:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142873330010000', 'ASRS-0300', '4F4097', '2025-03-22 11:49:28', 275, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:21:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142929132010000', 'ASRS-0248', '8T4776', '2025-03-22 11:51:54', 313, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:22:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142943843010000', 'ASRS-0276', '8P0346', '2025-03-22 11:53:16', 235, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:22:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743142999331010000', 'ASRS-0249', '2P5755', '2025-03-22 11:51:11', 117, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:23:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743143008276010000', 'ASRS-0275', '6Y2584', '2025-03-22 11:52:58', 279, 0, 'P2:出库拣选', '管理员', '2025-03-28 14:23:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220241394010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 565, 553, 'P2:配料拣选', '管理员', '2025-03-29 11:50:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220279785010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 828, 816, 'P2:配料拣选', '管理员', '2025-03-29 11:51:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220326145010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 456, 444, 'P2:配料拣选', '管理员', '2025-03-29 11:52:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220418962010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 902, 842, 'P2:配料拣选', '管理员', '2025-03-29 11:53:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220467703010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 236, 200, 'P2:配料拣选', '管理员', '2025-03-29 11:54:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220511485010000', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 36, 24, 'P2:配料拣选', '管理员', '2025-03-29 11:55:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220766729010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 48, 37, 'P3:配料拣选', '管理员', '2025-03-29 11:59:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220812771010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 73, 62, 'P3:配料拣选', '管理员', '2025-03-29 12:00:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220821058010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 37, 25, 'P2:配料拣选', '管理员', '2025-03-29 12:00:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220890251010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 246, 224, 'P3:配料拣选', '管理员', '2025-03-29 12:01:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220903035010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 62, 50, 'P2:配料拣选', '管理员', '2025-03-29 12:01:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220943451010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 807, 796, 'P3:配料拣选', '管理员', '2025-03-29 12:02:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220949497010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 224, 200, 'P2:配料拣选', '管理员', '2025-03-29 12:02:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743220981423010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 444, 433, 'P3:配料拣选', '管理员', '2025-03-29 12:03:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221113123010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 842, 776, 'P3:配料拣选', '管理员', '2025-03-29 12:05:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221166079010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 553, 542, 'P3:配料拣选', '管理员', '2025-03-29 12:06:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221359561010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 473, 461, 'P2:配料拣选', '管理员', '2025-03-29 12:09:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221397859010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1939, 1927, 'P2:配料拣选', '管理员', '2025-03-29 12:09:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221434322010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 857, 845, 'P2:配料拣选', '管理员', '2025-03-29 12:10:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221571365010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2767, 2707, 'P2:配料拣选', '管理员', '2025-03-29 12:12:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221619274010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 94, 70, 'P2:配料拣选', '管理员', '2025-03-29 12:13:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221688924010000', 'ASRS-1032', '3603693', '2025-03-24 09:11:08', 81, 33, 'P2:配料拣选', '管理员', '2025-03-29 12:14:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743221940003010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 973, 961, 'P2:配料拣选', '管理员', '2025-03-29 12:19:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222000910010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 126, 102, 'P2:配料拣选', '管理员', '2025-03-29 12:20:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222102618010000', 'ASRS-0392', '3T8236', '2025-03-22 14:23:56', 3, 0, 'P2:配料拣选', '管理员', '2025-03-29 12:21:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222158103010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 73, 61, 'P2:配料拣选', '管理员', '2025-03-29 12:22:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222206848010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 45, 33, 'P2:配料拣选', '管理员', '2025-03-29 12:23:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222241801010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 583, 571, 'P2:配料拣选', '管理员', '2025-03-29 12:24:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743222332393010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 79, 55, 'P2:配料拣选', '管理员', '2025-03-29 12:25:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743225872134010000', 'ASRS-0551', '3T8236', '2025-03-26 11:08:17', 20, 11, 'P2:配料拣选', '管理员', '2025-03-29 13:24:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743225939574010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 200, 167, 'P3:配料拣选', '管理员', '2025-03-29 13:25:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226010060010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 35, 23, 'P2:配料拣选', '管理员', '2025-03-29 13:26:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226053193010000', 'ASRS-1025', '6E1925', '2025-03-24 03:58:25', 7, 0, 'P2:配料拣选', '管理员', '2025-03-29 13:27:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226177575010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 170, 115, 'P3:配料拣选', '管理员', '2025-03-29 13:29:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226235679010000', 'ASRS-1025', '6E1925', '2025-03-25 10:36:57', 38, 33, 'P2:配料拣选', '管理员', '2025-03-29 13:30:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226243150010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 816, 761, 'P3:配料拣选', '管理员', '2025-03-29 13:30:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226312279010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2707, 2652, 'P3:配料拣选', '管理员', '2025-03-29 13:31:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226477241010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 120, 89, 'P3:配料拣选', '管理员', '2025-03-29 13:34:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226477241010001', 'ASRS-1436', '9S4183', '2025-03-25 10:39:06', 24, 0, 'P3:配料拣选', '管理员', '2025-03-29 13:34:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226520854010000', 'ASRS-1031', '6E1923', '2025-03-25 10:49:04', 8, 1, 'P2:配料拣选', '管理员', '2025-03-29 13:35:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226520855010000', 'ASRS-1031', '6E1923', '2025-03-24 03:49:52', 5, 0, 'P2:配料拣选', '管理员', '2025-03-29 13:35:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226597714010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 646, 622, 'P2:配料拣选', '管理员', '2025-03-29 13:36:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226669593010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 246, 222, 'P2:配料拣选', '管理员', '2025-03-29 13:37:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226708201010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1927, 1916, 'P3:配料拣选', '管理员', '2025-03-29 13:38:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226762225010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 461, 450, 'P3:配料拣选', '管理员', '2025-03-29 13:39:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226801578010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2656, 2645, 'P3:配料拣选', '管理员', '2025-03-29 13:40:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226831120010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 845, 834, 'P3:配料拣选', '管理员', '2025-03-29 13:40:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226902728010000', 'ASRS-0501', '1488356', '2025-03-26 08:33:38', 12, 0, 'P2:配料拣选', '管理员', '2025-03-29 13:41:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226911154010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 70, 48, 'P3:配料拣选', '管理员', '2025-03-29 13:41:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226944730010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 246, 235, 'P3:配料拣选', '管理员', '2025-03-29 13:42:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226980753010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2652, 2641, 'P3:配料拣选', '管理员', '2025-03-29 13:43:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743226989377010000', 'ASRS-0337', '6V9834', '2025-03-24 03:50:49', 14, 2, 'P2:配料拣选', '管理员', '2025-03-29 13:43:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227103954010000', 'ASRS-0551', '3T8236', '2025-03-26 11:08:17', 11, 4, 'P3:配料拣选', '管理员', '2025-03-29 13:45:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227305226010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 439, 428, 'P3:配料拣选', '管理员', '2025-03-29 13:48:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227361339010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 483, 471, 'P2:配料拣选', '管理员', '2025-03-29 13:49:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227373147010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 40, 29, 'P3:配料拣选', '管理员', '2025-03-29 13:49:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227394827010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 132, 120, 'P2:配料拣选', '管理员', '2025-03-29 13:49:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227443080010000', 'ASRS-0272', '8T8987', '2025-03-28 09:44:20', 10, 0, 'P3:配料拣选', '管理员', '2025-03-29 13:50:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227639108010000', 'ASRS-1268', '8T8987', '2025-03-28 09:32:45', 10, 9, 'P3:配料拣选', '管理员', '2025-03-29 13:53:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743227706200010000', 'ASRS-1088', '2191893', '2025-03-24 03:56:02', 80, 32, 'P2:配料拣选', '管理员', '2025-03-29 13:55:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228229782010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1168, 1146, 'P3:配料拣选', '管理员', '2025-03-29 14:03:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228305926010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 167, 149, 'P2:配料拣选', '管理员', '2025-03-29 14:05:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228339807010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 50, 44, 'P2:配料拣选', '管理员', '2025-03-29 14:05:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228376535010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 200, 188, 'P2:配料拣选', '管理员', '2025-03-29 14:06:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228404280010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 761, 755, 'P2:配料拣选', '管理员', '2025-03-29 14:06:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228447860010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 61, 50, 'P3:配料拣选', '管理员', '2025-03-29 14:07:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228475835010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 776, 746, 'P2:配料拣选', '管理员', '2025-03-29 14:07:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228502279010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 25, 19, 'P2:配料拣选', '管理员', '2025-03-29 14:08:22'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228527617010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 542, 536, 'P2:配料拣选', '管理员', '2025-03-29 14:08:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228530364010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 33, 22, 'P3:配料拣选', '管理员', '2025-03-29 14:08:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228549568010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 433, 427, 'P2:配料拣选', '管理员', '2025-03-29 14:09:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228560112010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 23, 12, 'P3:配料拣选', '管理员', '2025-03-29 14:09:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228604409010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 89, 83, 'P2:配料拣选', '管理员', '2025-03-29 14:10:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228730286010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 55, 33, 'P3:配料拣选', '管理员', '2025-03-29 14:12:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228768591010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 50, 39, 'P3:配料拣选', '管理员', '2025-03-29 14:12:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228774572010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 450, 444, 'P2:配料拣选', '管理员', '2025-03-29 14:12:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228805294010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1916, 1910, 'P2:配料拣选', '管理员', '2025-03-29 14:13:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228809076010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 480, 458, 'P3:配料拣选', '管理员', '2025-03-29 14:13:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228835940010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 834, 828, 'P2:配料拣选', '管理员', '2025-03-29 14:13:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228882061010000', 'ASRS-1032', '3603693', '2025-03-24 09:11:08', 33, 9, 'P2:配料拣选', '管理员', '2025-03-29 14:14:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743228958900010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2641, 2611, 'P2:配料拣选', '管理员', '2025-03-29 14:15:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229002070010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 48, 36, 'P2:配料拣选', '管理员', '2025-03-29 14:16:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229192767010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 50, 44, 'P2:配料拣选', '管理员', '2025-03-29 14:19:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229223343010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 102, 90, 'P2:配料拣选', '管理员', '2025-03-29 14:20:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229257720010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 22, 16, 'P2:配料拣选', '管理员', '2025-03-29 14:20:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229313278010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 571, 565, 'P2:配料拣选', '管理员', '2025-03-29 14:21:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229440289010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 33, 21, 'P2:配料拣选', '管理员', '2025-03-29 14:24:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229485063010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 222, 200, 'P3:配料拣选', '管理员', '2025-03-29 14:24:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229515872010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 961, 950, 'P3:配料拣选', '管理员', '2025-03-29 14:25:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229526410010000', 'ASRS-0551', '3T8236', '2025-03-26 11:08:17', 4, 0, 'P2:配料拣选', '管理员', '2025-03-29 14:25:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229554226010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 622, 600, 'P3:配料拣选', '管理员', '2025-03-29 14:25:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229565730010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 950, 944, 'P2:配料拣选', '管理员', '2025-03-29 14:26:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229723016010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 12, 6, 'P2:配料拣选', '管理员', '2025-03-29 14:28:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229778256010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 39, 33, 'P2:配料拣选', '管理员', '2025-03-29 14:29:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229801951010000', 'ASRS-1031', '6E1923', '2025-03-26 08:36:39', 20, 10, 'P3:配料拣选', '管理员', '2025-03-29 14:30:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229801951010001', 'ASRS-1031', '6E1923', '2025-03-25 10:49:04', 1, 0, 'P3:配料拣选', '管理员', '2025-03-29 14:30:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229922244010000', 'ASRS-1031', '6E1923', '2025-03-26 08:36:39', 10, 4, 'P2:配料拣选', '管理员', '2025-03-29 14:32:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229953745010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 600, 588, 'P2:配料拣选', '管理员', '2025-03-29 14:32:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229970007010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 96, 85, 'P3:配料拣选', '管理员', '2025-03-29 14:32:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743229993521010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 200, 188, 'P2:配料拣选', '管理员', '2025-03-29 14:33:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230157180010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 44, 43, 'P2:配料拣选', '管理员', '2025-03-29 14:35:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230349482010000', 'ASRS-0501', '1488356', '2025-03-28 09:39:08', 16, 10, 'P2:配料拣选', '管理员', '2025-03-29 14:39:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230393484010000', 'ASRS-0337', '6V9834', '2025-03-25 10:40:21', 18, 14, 'P2:配料拣选', '管理员', '2025-03-29 14:39:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230393484010001', 'ASRS-0337', '6V9834', '2025-03-24 03:50:49', 2, 0, 'P2:配料拣选', '管理员', '2025-03-29 14:39:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230539645010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 120, 114, 'P2:配料拣选', '管理员', '2025-03-29 14:42:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230594484010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 471, 465, 'P2:配料拣选', '管理员', '2025-03-29 14:43:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230745725010000', 'ASRS-1088', '2191893', '2025-03-24 03:56:02', 32, 8, 'P2:配料拣选', '管理员', '2025-03-29 14:45:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743230984319010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 149, 137, 'P2:配料拣选', '管理员', '2025-03-29 14:49:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231004127010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 44, 40, 'P2:配料拣选', '管理员', '2025-03-29 14:50:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231036909010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 19, 15, 'P2:配料拣选', '管理员', '2025-03-29 14:50:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231052330010000', 'ASRS-0271', '2935263', '2025-03-22 12:04:11', 169, 152, 'P3:配料拣选', '管理员', '2025-03-29 14:50:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231052330010001', 'ASRS-0271', '2935263', '2025-03-22 11:55:55', 23, 0, 'P3:配料拣选', '管理员', '2025-03-29 14:50:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231056760010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 427, 423, 'P2:配料拣选', '管理员', '2025-03-29 14:50:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231090535010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 536, 532, 'P2:配料拣选', '管理员', '2025-03-29 14:51:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231137545010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 755, 715, 'P3:配料拣选', '管理员', '2025-03-29 14:52:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231146961010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 746, 726, 'P2:配料拣选', '管理员', '2025-03-29 14:52:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231166608010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 715, 711, 'P2:配料拣选', '管理员', '2025-03-29 14:52:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231199259010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 83, 79, 'P2:配料拣选', '管理员', '2025-03-29 14:53:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231232265010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 188, 180, 'P2:配料拣选', '管理员', '2025-03-29 14:53:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231367698010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 444, 440, 'P2:配料拣选', '管理员', '2025-03-29 14:56:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231385610010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1910, 1906, 'P2:配料拣选', '管理员', '2025-03-29 14:56:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231446906010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 828, 824, 'P2:配料拣选', '管理员', '2025-03-29 14:57:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231518412010000', 'ASRS-1032', '3603693', '2025-03-25 10:50:49', 50, 43, 'P2:配料拣选', '管理员', '2025-03-29 14:58:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231518412010001', 'ASRS-1032', '3603693', '2025-03-24 09:11:08', 9, 0, 'P2:配料拣选', '管理员', '2025-03-29 14:58:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231550396010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2611, 2591, 'P2:配料拣选', '管理员', '2025-03-29 14:59:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231573436010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 36, 28, 'P2:配料拣选', '管理员', '2025-03-29 14:59:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231683086010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 944, 940, 'P2:配料拣选', '管理员', '2025-03-29 15:01:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231732651010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 44, 40, 'P2:配料拣选', '管理员', '2025-03-29 15:02:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231780382010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 90, 82, 'P2:配料拣选', '管理员', '2025-03-29 15:03:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231834637010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 16, 12, 'P2:配料拣选', '管理员', '2025-03-29 15:03:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231849029010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 565, 561, 'P2:配料拣选', '管理员', '2025-03-29 15:04:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231912382010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 21, 13, 'P2:配料拣选', '管理员', '2025-03-29 15:05:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231930125010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 43, 39, 'P2:配料拣选', '管理员', '2025-03-29 15:05:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231957835010000', 'ASRS-1531', '2521631', '2025-03-25 09:24:36', 172, 164, 'P3:配料拣选', '管理员', '2025-03-29 15:05:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743231957836010000', 'ASRS-1531', '2521631', '2025-03-25 08:46:08', 112, 0, 'P3:配料拣选', '管理员', '2025-03-29 15:05:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232062259010000', 'ASRS-0386', '6J4568', '2025-03-25 09:41:00', 62, 22, 'P3:配料拣选', '管理员', '2025-03-29 15:07:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232073736010000', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 6, 2, 'P2:配料拣选', '管理员', '2025-03-29 15:07:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232140303010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 33, 29, 'P2:配料拣选', '管理员', '2025-03-29 15:09:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232249534010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 588, 580, 'P2:配料拣选', '管理员', '2025-03-29 15:10:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232334504010000', 'ASRS-1031', '6E1923', '2025-03-26 08:36:39', 4, 0, 'P2:配料拣选', '管理员', '2025-03-29 15:12:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232397760010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 188, 180, 'P2:配料拣选', '管理员', '2025-03-29 15:13:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232442069010000', 'ASRS-0271', '2935263', '2025-03-22 12:04:11', 152, 136, 'P3:配料拣选', '管理员', '2025-03-29 15:14:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232519598010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 711, 695, 'P3:配料拣选', '管理员', '2025-03-29 15:15:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232566026010000', 'ASRS-0501', '1488356', '2025-03-28 09:39:08', 10, 6, 'P2:配料拣选', '管理员', '2025-03-29 15:16:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232573847010000', 'ASRS-0337', '6V9834', '2025-03-25 10:40:21', 14, 10, 'P2:配料拣选', '管理员', '2025-03-29 15:16:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232691048010000', 'ASRS-0386', '6J4568', '2025-03-25 09:41:00', 22, 6, 'P3:配料拣选', '管理员', '2025-03-29 15:18:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232724301010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 114, 110, 'P2:配料拣选', '管理员', '2025-03-29 15:18:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232816312010000', 'ASRS-1531', '2521631', '2025-03-25 09:24:36', 164, 116, 'P3:配料拣选', '管理员', '2025-03-29 15:20:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232837892010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 465, 461, 'P2:配料拣选', '管理员', '2025-03-29 15:20:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232974582010000', 'ASRS-1088', '2191893', '2025-03-25 10:50:16', 51, 43, 'P2:配料拣选', '管理员', '2025-03-29 15:22:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743232974582010001', 'ASRS-1088', '2191893', '2025-03-24 03:56:02', 8, 0, 'P2:配料拣选', '管理员', '2025-03-29 15:22:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743233130936010000', 'ASRS-0271', '2935263', '2025-03-22 12:04:11', 136, 132, 'P3:配料拣选', '管理员', '2025-03-29 15:25:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743233150072010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 695, 691, 'P3:配料拣选', '管理员', '2025-03-29 15:25:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743233280754010000', 'ASRS-1531', '2521631', '2025-03-25 09:24:36', 116, 104, 'P3:配料拣选', '管理员', '2025-03-29 15:28:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743233343620010000', 'ASRS-0386', '6J4568', '2025-03-25 09:41:00', 6, 2, 'P3:配料拣选', '管理员', '2025-03-29 15:29:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384044557010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 691, 675, 'P3:配料拣选', '管理员', '2025-03-31 09:20:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384119157010000', 'ASRS-0271', '2935263', '2025-03-22 12:04:11', 132, 116, 'P3:配料拣选', '管理员', '2025-03-31 09:21:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384350686010000', 'ASRS-1531', '2521631', '2025-03-25 09:24:36', 104, 56, 'P3:配料拣选', '管理员', '2025-03-31 09:25:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384442896010000', 'ASRS-0386', '6J4568', '2025-03-26 08:37:20', 70, 56, 'P3:配料拣选', '管理员', '2025-03-31 09:27:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384442896010001', 'ASRS-0386', '6J4568', '2025-03-25 09:41:00', 2, 0, 'P3:配料拣选', '管理员', '2025-03-31 09:27:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384785070010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 675, 671, 'P3:配料拣选', '管理员', '2025-03-31 09:33:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743384910954010000', 'ASRS-1531', '2521631', '2025-03-25 09:24:36', 56, 44, 'P3:配料拣选', '管理员', '2025-03-31 09:35:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395256023010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 40, 32, 'P3:配料拣选', '管理员', '2025-03-31 12:27:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395287540010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 137, 113, 'P3:配料拣选', '管理员', '2025-03-31 12:28:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395321902010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 532, 524, 'P3:配料拣选', '管理员', '2025-03-31 12:28:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395356718010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 15, 7, 'P3:配料拣选', '管理员', '2025-03-31 12:29:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395383849010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 180, 164, 'P3:配料拣选', '管理员', '2025-03-31 12:29:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395404289010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 796, 788, 'P3:配料拣选', '管理员', '2025-03-31 12:30:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395700882010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 423, 415, 'P3:配料拣选', '管理员', '2025-03-31 12:35:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395748797010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 726, 678, 'P3:配料拣选', '管理员', '2025-03-31 12:35:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395885911010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 115, 75, 'P3:配料拣选', '管理员', '2025-03-31 12:38:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395919098010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 671, 631, 'P3:配料拣选', '管理员', '2025-03-31 12:38:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743395957214010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2591, 2551, 'P3:配料拣选', '管理员', '2025-03-31 12:39:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396030140010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 79, 39, 'P3:配料拣选', '管理员', '2025-03-31 12:40:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396135568010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1906, 1898, 'P3:配料拣选', '管理员', '2025-03-31 12:42:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396157570010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 440, 432, 'P3:配料拣选', '管理员', '2025-03-31 12:42:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396205550010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 235, 227, 'P3:配料拣选', '管理员', '2025-03-31 12:43:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396234845010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 824, 816, 'P3:配料拣选', '管理员', '2025-03-31 12:43:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396348894010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2645, 2637, 'P3:配料拣选', '管理员', '2025-03-31 12:45:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396406541010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2551, 2543, 'P3:配料拣选', '管理员', '2025-03-31 12:46:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396482179010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 28, 12, 'P3:配料拣选', '管理员', '2025-03-31 12:48:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396542936010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 39, 31, 'P3:配料拣选', '管理员', '2025-03-31 12:49:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396664515010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 428, 420, 'P3:配料拣选', '管理员', '2025-03-31 12:51:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396731360010000', 'ASRS-1268', '8T8987', '2025-03-28 09:32:45', 9, 1, 'P3:配料拣选', '管理员', '2025-03-31 12:52:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396764928010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 29, 21, 'P3:配料拣选', '管理员', '2025-03-31 12:52:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396928632010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 40, 32, 'P3:配料拣选', '管理员', '2025-03-31 12:55:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743396947198010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1146, 1130, 'P3:配料拣选', '管理员', '2025-03-31 12:55:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397002489010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 12, 4, 'P3:配料拣选', '管理员', '2025-03-31 12:56:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397025281010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 38, 32, 'P3:配料拣选', '管理员', '2025-03-31 12:57:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397025281010001', 'ASRS-0519', '6E1924', '2025-03-24 03:58:18', 2, 0, 'P3:配料拣选', '管理员', '2025-03-31 12:57:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397110917010000', 'ASRS-0528', '8J6815', '2025-03-24 08:59:26', 13, 0, 'P3:配料拣选', '管理员', '2025-03-31 12:58:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397138418010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 458, 442, 'P3:配料拣选', '管理员', '2025-03-31 12:58:58'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397233285010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 29, 21, 'P3:配料拣选', '管理员', '2025-03-31 13:00:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397752303010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 940, 932, 'P3:配料拣选', '管理员', '2025-03-31 13:09:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397781721010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 580, 564, 'P3:配料拣选', '管理员', '2025-03-31 13:09:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397808303010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 180, 164, 'P3:配料拣选', '管理员', '2025-03-31 13:10:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743397980717010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 500, 496, 'P3:配料拣选', '管理员', '2025-03-31 13:13:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398117501010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 40, 32, 'P3:配料拣选', '管理员', '2025-03-31 13:15:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398245422010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 85, 77, 'P3:配料拣选', '管理员', '2025-03-31 13:17:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398580755010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 32, 30, 'P3:配料拣选', '管理员', '2025-03-31 13:23:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398616633010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 113, 107, 'P3:配料拣选', '管理员', '2025-03-31 13:23:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398635706010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 7, 5, 'P3:配料拣选', '管理员', '2025-03-31 13:23:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398646801010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 524, 522, 'P3:配料拣选', '管理员', '2025-03-31 13:24:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398696512010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 788, 786, 'P3:配料拣选', '管理员', '2025-03-31 13:24:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398713068010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 164, 160, 'P3:配料拣选', '管理员', '2025-03-31 13:25:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398791514010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 678, 666, 'P3:配料拣选', '管理员', '2025-03-31 13:26:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398803906010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 415, 413, 'P3:配料拣选', '管理员', '2025-03-31 13:26:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398942066010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 631, 621, 'P3:配料拣选', '管理员', '2025-03-31 13:29:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398967745010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 75, 65, 'P3:配料拣选', '管理员', '2025-03-31 13:29:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743398987420010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2543, 2533, 'P3:配料拣选', '管理员', '2025-03-31 13:29:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399019546010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 39, 29, 'P3:配料拣选', '管理员', '2025-03-31 13:30:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399120561010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1898, 1896, 'P3:配料拣选', '管理员', '2025-03-31 13:32:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399137355010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 432, 430, 'P3:配料拣选', '管理员', '2025-03-31 13:32:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399205188010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 816, 814, 'P3:配料拣选', '管理员', '2025-03-31 13:33:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399312563010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 227, 225, 'P3:配料拣选', '管理员', '2025-03-31 13:35:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399328058010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2637, 2635, 'P3:配料拣选', '管理员', '2025-03-31 13:35:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399349819010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2533, 2531, 'P3:配料拣选', '管理员', '2025-03-31 13:35:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399415042010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 12, 8, 'P3:配料拣选', '管理员', '2025-03-31 13:36:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399489548010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 31, 29, 'P3:配料拣选', '管理员', '2025-03-31 13:38:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399591426010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 21, 19, 'P3:配料拣选', '管理员', '2025-03-31 13:39:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399600777010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 420, 418, 'P3:配料拣选', '管理员', '2025-03-31 13:40:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399680166010000', 'ASRS-0329', '8T8987', '2025-03-31 13:01:17', 20, 18, 'P3:配料拣选', '管理员', '2025-03-31 13:41:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399799965010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1130, 1126, 'P3:配料拣选', '管理员', '2025-03-31 13:43:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399819296010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 32, 30, 'P3:配料拣选', '管理员', '2025-03-31 13:43:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399845718010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 32, 30, 'P3:配料拣选', '管理员', '2025-03-31 13:44:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399868920010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 4, 2, 'P3:配料拣选', '管理员', '2025-03-31 13:44:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743399928000010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 442, 438, 'P3:配料拣选', '管理员', '2025-03-31 13:45:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400001837010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 21, 19, 'P3:配料拣选', '管理员', '2025-03-31 13:46:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400095083010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 496, 492, 'P3:配料拣选', '管理员', '2025-03-31 13:48:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400206555010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 564, 560, 'P3:配料拣选', '管理员', '2025-03-31 13:50:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400220477010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 932, 930, 'P3:配料拣选', '管理员', '2025-03-31 13:50:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400295325010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 164, 160, 'P3:配料拣选', '管理员', '2025-03-31 13:51:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400403015010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 32, 30, 'P3:配料拣选', '管理员', '2025-03-31 13:53:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400515562010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 77, 75, 'P3:配料拣选', '管理员', '2025-03-31 13:55:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400716836010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 107, 101, 'P3:配料拣选', '管理员', '2025-03-31 13:58:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400731439010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 30, 28, 'P3:配料拣选', '管理员', '2025-03-31 13:58:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400748342010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 522, 520, 'P3:配料拣选', '管理员', '2025-03-31 13:59:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400764175010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 5, 3, 'P3:配料拣选', '管理员', '2025-03-31 13:59:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400794738010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 160, 156, 'P3:配料拣选', '管理员', '2025-03-31 13:59:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400816878010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 786, 784, 'P3:配料拣选', '管理员', '2025-03-31 14:00:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400843605010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 413, 411, 'P3:配料拣选', '管理员', '2025-03-31 14:00:44'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743400905095010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 666, 654, 'P3:配料拣选', '管理员', '2025-03-31 14:01:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401020949010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 65, 55, 'P3:配料拣选', '管理员', '2025-03-31 14:03:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401041711010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 621, 611, 'P3:配料拣选', '管理员', '2025-03-31 14:04:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401110224010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 29, 19, 'P3:配料拣选', '管理员', '2025-03-31 14:05:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401134056010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2531, 2521, 'P3:配料拣选', '管理员', '2025-03-31 14:05:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401261695010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 430, 428, 'P3:配料拣选', '管理员', '2025-03-31 14:07:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401275726010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1896, 1894, 'P3:配料拣选', '管理员', '2025-03-31 14:07:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401303018010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 814, 812, 'P3:配料拣选', '管理员', '2025-03-31 14:08:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401319022010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 225, 223, 'P3:配料拣选', '管理员', '2025-03-31 14:08:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401360367010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2635, 2633, 'P3:配料拣选', '管理员', '2025-03-31 14:09:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401377623010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 29, 27, 'P3:配料拣选', '管理员', '2025-03-31 14:09:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401455591010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2521, 2519, 'P3:配料拣选', '管理员', '2025-03-31 14:10:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401534407010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 8, 4, 'P3:配料拣选', '管理员', '2025-03-31 14:12:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401631265010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 418, 416, 'P3:配料拣选', '管理员', '2025-03-31 14:13:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401648031010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 19, 17, 'P3:配料拣选', '管理员', '2025-03-31 14:14:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401692607010000', 'ASRS-1268', '8T8987', '2025-03-28 09:32:45', 1, 0, 'P3:配料拣选', '管理员', '2025-03-31 14:14:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401865708010000', 'ASRS-0364', '8T8987', '2025-03-31 13:01:50', 10, 9, 'P3:配料拣选', '管理员', '2025-03-31 14:17:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401971504010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 30, 28, 'P3:配料拣选', '管理员', '2025-03-31 14:19:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743401994773010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1126, 1122, 'P3:配料拣选', '管理员', '2025-03-31 14:19:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402024557010000', 'ASRS-1221', '9F6705', '2025-03-24 03:48:53', 2, 0, 'P3:配料拣选', '管理员', '2025-03-31 14:20:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402055408010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 19, 17, 'P3:配料拣选', '管理员', '2025-03-31 14:20:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402078345010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 438, 434, 'P3:配料拣选', '管理员', '2025-03-31 14:21:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402108424010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 30, 28, 'P3:配料拣选', '管理员', '2025-03-31 14:21:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402249770010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 492, 488, 'P3:配料拣选', '管理员', '2025-03-31 14:24:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402353892010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 930, 928, 'P3:配料拣选', '管理员', '2025-03-31 14:25:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402367198010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 560, 556, 'P3:配料拣选', '管理员', '2025-03-31 14:26:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402445453010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 160, 156, 'P3:配料拣选', '管理员', '2025-03-31 14:27:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402619173010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 30, 28, 'P3:配料拣选', '管理员', '2025-03-31 14:30:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402715306010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 75, 73, 'P3:配料拣选', '管理员', '2025-03-31 14:31:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402843879010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 28, 27, 'P3:配料拣选', '管理员', '2025-03-31 14:34:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402902393010000', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 3, 2, 'P3:配料拣选', '管理员', '2025-03-31 14:35:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402925614010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 101, 98, 'P3:配料拣选', '管理员', '2025-03-31 14:35:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402951294010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 654, 651, 'P3:配料拣选', '管理员', '2025-03-31 14:35:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743402960999010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 520, 519, 'P3:配料拣选', '管理员', '2025-03-31 14:36:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403072470010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 411, 410, 'P3:配料拣选', '管理员', '2025-03-31 14:37:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403433814010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 611, 610, 'P3:配料拣选', '管理员', '2025-03-31 14:43:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403452095010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 156, 154, 'P3:配料拣选', '管理员', '2025-03-31 14:44:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403466573010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 651, 649, 'P3:配料拣选', '管理员', '2025-03-31 14:44:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403483423010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 19, 18, 'P3:配料拣选', '管理员', '2025-03-31 14:44:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403632102010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 428, 427, 'P3:配料拣选', '管理员', '2025-03-31 14:47:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403700621010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 812, 811, 'P3:配料拣选', '管理员', '2025-03-31 14:48:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403753632010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2519, 2516, 'P3:配料拣选', '管理员', '2025-03-31 14:49:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403809609010000', 'ASRS-1032', '3603693', '2025-03-25 10:50:49', 43, 40, 'P3:配料拣选', '管理员', '2025-03-31 14:50:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403910620010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1894, 1893, 'P3:配料拣选', '管理员', '2025-03-31 14:51:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403943411010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 82, 80, 'P3:配料拣选', '管理员', '2025-03-31 14:52:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403981189010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 27, 26, 'P3:配料拣选', '管理员', '2025-03-31 14:53:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743403994016010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 28, 27, 'P3:配料拣选', '管理员', '2025-03-31 14:53:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404053540010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 561, 560, 'P3:配料拣选', '管理员', '2025-03-31 14:54:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404128879010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2516, 2515, 'P3:配料拣选', '管理员', '2025-03-31 14:55:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404227299010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 4, 2, 'P3:配料拣选', '管理员', '2025-03-31 14:57:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404303640010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 488, 486, 'P3:配料拣选', '管理员', '2025-03-31 14:58:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404400805010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 556, 554, 'P3:配料拣选', '管理员', '2025-03-31 15:00:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404411715010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 928, 927, 'P3:配料拣选', '管理员', '2025-03-31 15:00:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404477394010000', 'ASRS-1221', '9F6705', '2025-03-25 10:37:32', 48, 47, 'P3:配料拣选', '管理员', '2025-03-31 15:01:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404544192010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 156, 154, 'P3:配料拣选', '管理员', '2025-03-31 15:02:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404647298010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 17, 16, 'P3:配料拣选', '管理员', '2025-03-31 15:04:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743404808538010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 28, 27, 'P3:配料拣选', '管理员', '2025-03-31 15:06:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405050318010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 416, 415, 'P3:配料拣选', '管理员', '2025-03-31 15:10:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405068397010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 28, 27, 'P3:配料拣选', '管理员', '2025-03-31 15:11:08'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405180540010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 110, 108, 'P3:配料拣选', '管理员', '2025-03-31 15:13:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405198767010000', 'ASRS-0337', '6V9834', '2025-03-25 10:40:21', 10, 9, 'P3:配料拣选', '管理员', '2025-03-31 15:13:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405325871010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 461, 460, 'P3:配料拣选', '管理员', '2025-03-31 15:15:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405354684010000', 'ASRS-1088', '2191893', '2025-03-25 10:50:16', 43, 39, 'P3:配料拣选', '管理员', '2025-03-31 15:15:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405564631010000', 'ASRS-0313', '9S4189', '2025-03-28 09:39:56', 75, 73, 'P3:配料拣选', '管理员', '2025-03-31 15:19:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405564631010001', 'ASRS-0313', '9S4189', '2025-03-22 08:24:15', 2, 0, 'P3:配料拣选', '管理员', '2025-03-31 15:19:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405590480010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 98, 86, 'P3:配料拣选', '管理员', '2025-03-31 15:19:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405616426010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 154, 146, 'P3:配料拣选', '管理员', '2025-03-31 15:20:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405637449010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 27, 23, 'P3:配料拣选', '管理员', '2025-03-31 15:20:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405662367010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 784, 780, 'P3:配料拣选', '管理员', '2025-03-31 15:21:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405762887010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 519, 515, 'P3:配料拣选', '管理员', '2025-03-31 15:22:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405777304010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 410, 406, 'P3:配料拣选', '管理员', '2025-03-31 15:22:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405873497010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 649, 625, 'P3:配料拣选', '管理员', '2025-03-31 15:24:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743405995051010000', 'ASRS-1436', '9S4183', '2025-03-28 09:24:47', 18, 0, 'P3:配料拣选', '管理员', '2025-03-31 15:26:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406030143010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 610, 590, 'P3:配料拣选', '管理员', '2025-03-31 15:27:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406086766010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 55, 35, 'P3:配料拣选', '管理员', '2025-03-31 15:28:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406326559010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2515, 2495, 'P3:配料拣选', '管理员', '2025-03-31 15:32:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406395052010000', 'ASRS-0301', '1061791', '2025-03-28 13:53:37', 2, 1, 'P3:出库拣选', '管理员', '2025-03-31 15:33:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406395057010000', 'ASRS-0301', '1061791', '2025-03-26 12:43:22', 3, 0, 'P3:出库拣选', '管理员', '2025-03-31 15:33:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406498978010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 811, 807, 'P3:配料拣选', '管理员', '2025-03-31 15:34:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406519497010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1893, 1889, 'P3:配料拣选', '管理员', '2025-03-31 15:35:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406549121010000', 'ASRS-0517', '9S4191', '2025-03-24 03:55:59', 494, 490, 'P3:配料拣选', '管理员', '2025-03-31 15:35:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406610832010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 427, 423, 'P3:配料拣选', '管理员', '2025-03-31 15:36:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406640728010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2633, 2629, 'P3:配料拣选', '管理员', '2025-03-31 15:37:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406731600010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2495, 2491, 'P3:配料拣选', '管理员', '2025-03-31 15:38:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743406909190010000', 'ASRS-1529', '1007000', '2025-03-24 09:50:46', 2, 0, 'P3:配料拣选', '管理员', '2025-03-31 15:41:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407022773010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 26, 22, 'P3:配料拣选', '管理员', '2025-03-31 15:43:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407081646010000', 'ASRS-0298', '1007000', '2025-03-31 14:15:37', 140, 134, 'P3:配料拣选', '管理员', '2025-03-31 15:44:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407179869010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 415, 411, 'P3:配料拣选', '管理员', '2025-03-31 15:46:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407207636010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 17, 13, 'P3:配料拣选', '管理员', '2025-03-31 15:46:48'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407273282010000', 'ASRS-0329', '8T8987', '2025-03-31 13:01:17', 18, 14, 'P3:配料拣选', '管理员', '2025-03-31 15:47:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407400909010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 434, 426, 'P3:配料拣选', '管理员', '2025-03-31 15:50:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407417255010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1122, 1114, 'P3:配料拣选', '管理员', '2025-03-31 15:50:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407436966010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 27, 23, 'P3:配料拣选', '管理员', '2025-03-31 15:50:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407465529010002', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 16, 12, 'P3:配料拣选', '管理员', '2025-03-31 15:51:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407491572010000', 'ASRS-1221', '9F6705', '2025-03-25 10:37:32', 47, 43, 'P3:配料拣选', '管理员', '2025-03-31 15:51:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407543822010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 27, 23, 'P3:配料拣选', '管理员', '2025-03-31 15:52:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407634718010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 486, 478, 'P3:配料拣选', '管理员', '2025-03-31 15:53:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407784854010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 554, 546, 'P3:配料拣选', '管理员', '2025-03-31 15:56:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407810735010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 927, 923, 'P3:配料拣选', '管理员', '2025-03-31 15:56:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407832735010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 154, 146, 'P3:配料拣选', '管理员', '2025-03-31 15:57:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743407945816010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 27, 23, 'P3:配料拣选', '管理员', '2025-03-31 15:59:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408305161010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 86, 80, 'P3:配料拣选', '管理员', '2025-03-31 16:05:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408338205010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 146, 142, 'P3:配料拣选', '管理员', '2025-03-31 16:05:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408359715010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 23, 21, 'P3:配料拣选', '管理员', '2025-03-31 16:06:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408379415010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 780, 778, 'P3:配料拣选', '管理员', '2025-03-31 16:06:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408399571010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 406, 404, 'P3:配料拣选', '管理员', '2025-03-31 16:06:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408411842010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 515, 513, 'P3:配料拣选', '管理员', '2025-03-31 16:06:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408516491010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 625, 613, 'P3:配料拣选', '管理员', '2025-03-31 16:08:36'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743408529254010000', 'ASRS-0313', '9S4189', '2025-03-28 09:39:56', 73, 71, 'P3:配料拣选', '管理员', '2025-03-31 16:08:49'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467538886010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2491, 2481, 'P3:配料拣选', '管理员', '2025-04-01 08:32:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467562502010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 590, 580, 'P3:配料拣选', '管理员', '2025-04-01 08:32:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467597967010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 35, 25, 'P3:配料拣选', '管理员', '2025-04-01 08:33:18'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467941812010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 807, 805, 'P3:配料拣选', '管理员', '2025-04-01 08:39:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467965512010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1889, 1887, 'P3:配料拣选', '管理员', '2025-04-01 08:39:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467979126010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 423, 421, 'P3:配料拣选', '管理员', '2025-04-01 08:39:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743467990141010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2629, 2627, 'P3:配料拣选', '管理员', '2025-04-01 08:39:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468024329010000', 'ASRS-0359', '1007000', '2025-03-28 21:26:47', 140, 136, 'P3:配料拣选', '管理员', '2025-04-01 08:40:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468041468010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 22, 20, 'P3:配料拣选', '管理员', '2025-04-01 08:40:41'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468056601010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2481, 2479, 'P3:配料拣选', '管理员', '2025-04-01 08:40:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468067489010000', 'ASRS-0517', '9S4191', '2025-03-24 03:55:59', 490, 488, 'P3:配料拣选', '管理员', '2025-04-01 08:41:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468170563010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 13, 11, 'P3:配料拣选', '管理员', '2025-04-01 08:42:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468224506010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 411, 409, 'P3:配料拣选', '管理员', '2025-04-01 08:43:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468323624010000', 'ASRS-0329', '8T8987', '2025-03-31 13:01:17', 14, 12, 'P3:配料拣选', '管理员', '2025-04-01 08:45:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468436013010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1114, 1110, 'P3:配料拣选', '管理员', '2025-04-01 08:47:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468484408010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 23, 21, 'P3:配料拣选', '管理员', '2025-04-01 08:48:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468518719010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 12, 10, 'P3:配料拣选', '管理员', '2025-04-01 08:48:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468544221010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 426, 422, 'P3:配料拣选', '管理员', '2025-04-01 08:49:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468559423010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 23, 21, 'P3:配料拣选', '管理员', '2025-04-01 08:49:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468578575010000', 'ASRS-1221', '9F6705', '2025-03-25 10:37:32', 43, 41, 'P3:配料拣选', '管理员', '2025-04-01 08:49:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468661075010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 478, 474, 'P3:配料拣选', '管理员', '2025-04-01 08:51:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468796799010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 923, 921, 'P3:配料拣选', '管理员', '2025-04-01 08:53:17'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468812631010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 546, 542, 'P3:配料拣选', '管理员', '2025-04-01 08:53:33'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743468844954010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 146, 142, 'P3:配料拣选', '管理员', '2025-04-01 08:54:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469131655010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 23, 21, 'P3:配料拣选', '管理员', '2025-04-01 08:58:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469760417010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 142, 134, 'P3:配料拣选', '管理员', '2025-04-01 09:09:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469785758010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 80, 68, 'P3:配料拣选', '管理员', '2025-04-01 09:09:46'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469794791010000', 'ASRS-1900', '9S8002', '2025-03-24 03:51:40', 778, 774, 'P3:配料拣选', '管理员', '2025-04-01 09:09:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469812618010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 21, 17, 'P3:配料拣选', '管理员', '2025-04-01 09:10:13'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469853779010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 613, 589, 'P3:配料拣选', '管理员', '2025-04-01 09:10:54'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469868560010000', 'ASRS-0313', '9S4189', '2025-03-28 09:39:56', 71, 67, 'P3:配料拣选', '管理员', '2025-04-01 09:11:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469883767010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 404, 400, 'P3:配料拣选', '管理员', '2025-04-01 09:11:24'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743469925077010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 513, 509, 'P3:配料拣选', '管理员', '2025-04-01 09:12:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470073930010000', 'ASRS-0384', '9S4185', '2025-03-24 03:57:23', 25, 5, 'P3:配料拣选', '管理员', '2025-04-01 09:14:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470101928010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 580, 560, 'P3:配料拣选', '管理员', '2025-04-01 09:15:02'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470309477010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2479, 2459, 'P3:配料拣选', '管理员', '2025-04-01 09:18:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470429221010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1887, 1883, 'P3:配料拣选', '管理员', '2025-04-01 09:20:29'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470450033010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 421, 417, 'P3:配料拣选', '管理员', '2025-04-01 09:20:50'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470462577010000', 'ASRS-1245', '6V3965', '2025-03-24 03:48:27', 223, 219, 'P3:配料拣选', '管理员', '2025-04-01 09:21:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470492294010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 805, 801, 'P3:配料拣选', '管理员', '2025-04-01 09:21:32'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470505404010000', 'ASRS-0336', '3J1907', '2025-03-24 03:51:13', 2627, 2623, 'P3:配料拣选', '管理员', '2025-04-01 09:21:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470571541010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2459, 2455, 'P3:配料拣选', '管理员', '2025-04-01 09:22:52'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470609871010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 20, 16, 'P3:配料拣选', '管理员', '2025-04-01 09:23:30'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470650993010000', 'ASRS-0359', '1007000', '2025-03-28 21:26:47', 136, 128, 'P3:配料拣选', '管理员', '2025-04-01 09:24:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470786420010000', 'ASRS-0318', '2S4078', '2025-03-21 14:36:39', 409, 405, 'P3:配料拣选', '管理员', '2025-04-01 09:26:26'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743470802244010000', 'ASRS-0383', '6V9833', '2025-03-24 03:53:38', 11, 7, 'P3:配料拣选', '管理员', '2025-04-01 09:26:42'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743471910399010000', 'ASRS-0329', '8T8987', '2025-03-31 13:01:17', 12, 8, 'P3:配料拣选', '管理员', '2025-04-01 09:45:10'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472023128010000', 'ASRS-0317', '9S8001', '2025-03-21 14:37:01', 1110, 1102, 'P3:配料拣选', '管理员', '2025-04-01 09:47:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472151099010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 21, 17, 'P3:配料拣选', '管理员', '2025-04-01 09:49:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472174359010000', 'ASRS-0527', '4J7533', '2025-03-24 09:10:12', 422, 414, 'P3:配料拣选', '管理员', '2025-04-01 09:49:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472187028010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 10, 6, 'P3:配料拣选', '管理员', '2025-04-01 09:49:47'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472205907010000', 'ASRS-1221', '9F6705', '2025-03-25 10:37:32', 41, 37, 'P3:配料拣选', '管理员', '2025-04-01 09:50:06'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472239569010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 21, 17, 'P3:配料拣选', '管理员', '2025-04-01 09:50:40'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472258513010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 474, 466, 'P3:配料拣选', '管理员', '2025-04-01 09:50:59'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472399667010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 921, 917, 'P3:配料拣选', '管理员', '2025-04-01 09:53:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472441465010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 542, 534, 'P3:配料拣选', '管理员', '2025-04-01 09:54:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472505314010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 142, 134, 'P3:配料拣选', '管理员', '2025-04-01 09:55:05'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472676647010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 21, 17, 'P3:配料拣选', '管理员', '2025-04-01 09:57:57'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472778148010000', 'ASRS-1683', '6V0852', '2025-03-24 03:49:27', 73, 69, 'P3:配料拣选', '管理员', '2025-04-01 09:59:38'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472979897010000', 'ASRS-0315', '9S4182', '2025-03-22 08:21:36', 68, 56, 'P3:配料拣选', '管理员', '2025-04-01 10:03:00'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743472988778010000', 'ASRS-0304', '4K1388', '2025-03-22 08:24:46', 509, 505, 'P3:配料拣选', '管理员', '2025-04-01 10:03:09'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473024723010000', 'ASRS-0332', '9S8009', '2025-03-22 08:22:27', 17, 13, 'P3:配料拣选', '管理员', '2025-04-01 10:03:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473040919010000', 'ASRS-0388', '6V8647', '2025-03-22 14:25:21', 134, 126, 'P3:配料拣选', '管理员', '2025-04-01 10:04:01'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473070769010000', 'ASRS-0313', '9S4189', '2025-03-28 09:39:56', 67, 63, 'P3:配料拣选', '管理员', '2025-04-01 10:04:31'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473083130010000', 'ASRS-0350', '3D2824', '2025-03-24 03:50:18', 560, 556, 'P3:配料拣选', '管理员', '2025-04-01 10:04:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473166518010000', 'ASRS-0520', '2M9780', '2025-03-24 03:54:58', 400, 396, 'P3:配料拣选', '管理员', '2025-04-01 10:06:07'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473263073010000', 'ASRS-0334', '3J7354', '2025-03-24 03:56:58', 589, 569, 'P3:配料拣选', '管理员', '2025-04-01 10:07:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473355778010000', 'ASRS-0305', '9S8003', '2025-03-22 08:24:34', 417, 413, 'P3:配料拣选', '管理员', '2025-04-01 10:09:16'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473368105010000', 'ASRS-0324', '6V8398', '2025-03-21 13:24:35', 1883, 1879, 'P3:配料拣选', '管理员', '2025-04-01 10:09:28'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473404222010000', 'ASRS-0340', '1J9671', '2025-03-22 14:24:32', 801, 797, 'P3:配料拣选', '管理员', '2025-04-01 10:10:04'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473471198010000', 'ASRS-1027', '3K0360', '2025-03-24 03:57:51', 2455, 2435, 'P3:配料拣选', '管理员', '2025-04-01 10:11:11'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473556569010000', 'ASRS-1032', '3603693', '2025-03-25 10:50:49', 40, 24, 'P3:配料拣选', '管理员', '2025-04-01 10:12:37'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473601418010000', 'ASRS-0359', '1007000', '2025-03-28 21:26:47', 128, 120, 'P3:配料拣选', '管理员', '2025-04-01 10:13:21'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473713605010000', 'ASRS-0333', '3676001', '2025-03-22 08:22:06', 80, 72, 'P3:配料拣选', '管理员', '2025-04-01 10:15:14'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473743105010000', 'ASRS-0306', '5M2057', '2025-03-21 14:35:07', 917, 913, 'P3:配料拣选', '管理员', '2025-04-01 10:15:43'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473794873010000', 'ASRS-1526', '3676002', '2025-03-24 03:55:22', 560, 556, 'P3:配料拣选', '管理员', '2025-04-01 10:16:35'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473816090010000', 'ASRS-1902', '3P9498', '2025-03-22 14:27:44', 17, 13, 'P3:配料拣选', '管理员', '2025-04-01 10:16:56'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473839048010000', 'ASRS-1221', '9F6705', '2025-03-25 10:37:32', 37, 33, 'P3:配料拣选', '管理员', '2025-04-01 10:17:19'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473865063010000', 'ASRS-0331', '3T8236', '2025-03-29 14:29:12', 16, 12, 'P3:配料拣选', '管理员', '2025-04-01 10:17:45'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743473931242010000', 'ASRS-0303', '8J6815', '2025-03-31 13:05:17', 466, 458, 'P3:配料拣选', '管理员', '2025-04-01 10:18:51'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474054650010000', 'ASRS-1034', '6E1925', '2025-03-24 09:10:38', 6, 2, 'P3:配料拣选', '管理员', '2025-04-01 10:20:55'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474153792010000', 'ASRS-0519', '6E1924', '2025-03-25 10:40:46', 17, 13, 'P3:配料拣选', '管理员', '2025-04-01 10:22:34'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474254914010000', 'ASRS-0316', '8M3175', '2025-03-21 14:37:32', 534, 526, 'P3:配料拣选', '管理员', '2025-04-01 10:24:15'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474267364010000', 'ASRS-0338', '6V5230', '2025-03-26 08:36:59', 134, 126, 'P3:配料拣选', '管理员', '2025-04-01 10:24:27'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474338926010000', 'ASRS-1031', '6E1923', '2025-03-28 09:27:26', 17, 13, 'P3:配料拣选', '管理员', '2025-04-01 10:25:39'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474445126010000', 'ASRS-0337', '6V9834', '2025-03-25 10:40:21', 9, 5, 'P3:配料拣选', '管理员', '2025-04-01 10:27:25'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743474542658010000', 'ASRS-0501', '1488356', '2025-03-28 09:39:08', 6, 2, 'P3:配料拣选', '管理员', '2025-04-01 10:29:03'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743478852871010000', 'ASRS-1524', '2191891', '2025-03-24 03:51:09', 108, 104, 'P3:配料拣选', '管理员', '2025-04-01 11:40:53'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743478872072010000', 'ASRS-0522', '2965987', '2025-03-24 03:57:55', 460, 456, 'P3:配料拣选', '管理员', '2025-04-01 11:41:12'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1743478999596010000', 'ASRS-1088', '2191893', '2025-03-25 10:50:16', 39, 23, 'P3:配料拣选', '管理员', '2025-04-01 11:43:20'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1744535722773010000', 'ASRS-0326', '7X0448', '2025-03-21 13:23:03', 320, 310, 'P1:盘点确认', '管理员', '2025-04-13 17:15:23'); -INSERT INTO `t_app_stock_update` (`update_id`, `vehicle_id`, `goods_id`, `first_in_time`, `before_num`, `after_num`, `reason`, `update_user`, `update_time`) VALUES ('1744535841320010000', 'ASRS-0326', '7X0448', '2025-03-21 13:23:03', 310, 320, 'P1:盘点确认', '管理员', '2025-04-13 17:17:21'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_task --- ---------------------------- -DROP TABLE IF EXISTS `t_app_task`; -CREATE TABLE `t_app_task` ( - `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号', - `task_type` int NOT NULL COMMENT '任务类型', - `task_status` int NOT NULL COMMENT '任务状态', - `task_priority` int NOT NULL COMMENT '任务优先级,默认为1', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `origin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '起点', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '终点', - `wcs_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '发送给wcs的任务号', - `create_time` datetime NOT NULL COMMENT '创建时间', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料编号', - `op_num` int DEFAULT NULL COMMENT '操作数量', - `stock_num` int DEFAULT NULL COMMENT '库存数量', - `op_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作用户', - `pre_task` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '前置任务', - `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', - `call_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '请求的站台', - `goods_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - PRIMARY KEY (`task_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_task --- ---------------------------- -BEGIN; -INSERT INTO `t_app_task` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1745222923297010000', 2, 0, 1, 'ASRS-0872', 'A01-02-09', NULL, NULL, '2025-04-21 16:08:43', NULL, '000000000', 0, 0, '管理员', NULL, '', 'P1', ''); -COMMIT; - --- ---------------------------- --- Table structure for t_app_task_bak --- ---------------------------- -DROP TABLE IF EXISTS `t_app_task_bak`; -CREATE TABLE `t_app_task_bak` ( - `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '任务号', - `task_type` int NOT NULL COMMENT '任务类型', - `task_status` int NOT NULL COMMENT '任务状态', - `task_priority` int NOT NULL COMMENT '任务优先级,默认为1', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `origin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '起点', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '终点', - `wcs_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '发送给wcs的任务号', - `create_time` datetime NOT NULL COMMENT '创建时间', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '物料编号', - `op_num` int DEFAULT NULL COMMENT '操作数量', - `stock_num` int DEFAULT NULL COMMENT '库存数量', - `op_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '操作用户', - `pre_task` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '前置任务', - `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注', - `call_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '请求的站台', - `goods_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, - PRIMARY KEY (`task_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_task_bak --- ---------------------------- -BEGIN; -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534583430010000', 1, 4, 1, 'ASRS-0326', 'P3', 'A02-23-09', '1742534631843010000', '2025-03-21 13:23:03', '2025-03-21 13:24:49', '7X0448', 320, 0, 'clc', NULL, NULL, 'P3', 'NUT-HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534636321010000', 1, 4, 1, 'ASRS-0325', 'P3', 'A04-29-04', '1742534677130010000', '2025-03-21 13:23:56', '2025-03-21 13:25:24', '6V8676', 300, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534674979010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-29-07', '1742534702914010000', '2025-03-21 13:24:35', '2025-03-21 13:26:00', '6V8398', 2000, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING-ORFS'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534695355010000', 1, 4, 1, 'ASRS-0323', 'P3', 'A04-30-03', '1742534724230010000', '2025-03-21 13:24:55', '2025-03-21 13:26:19', '8T4182', 300, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534739897010000', 1, 4, 1, 'ASRS-0322', 'P3', 'A01-26-11', '1742534768342010000', '2025-03-21 13:25:40', '2025-03-21 13:27:06', '4J0519', 500, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534779218010000', 1, 4, 1, 'ASRS-0312', 'P3', 'A04-31-02', '1742534809712010000', '2025-03-21 13:26:19', '2025-03-21 13:27:45', '3D4603', 250, 0, 'clc', NULL, NULL, 'P3', 'PLUG-PIPE'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534833754010000', 1, 4, 1, 'ASRS-0311', 'P3', 'A01-31-06', '1742534870631010000', '2025-03-21 13:27:14', '2025-03-21 13:28:49', '5S7383', 400, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534899637010000', 1, 4, 1, 'ASRS-0310', 'P3', 'A04-28-06', '1742534928212010000', '2025-03-21 13:28:20', '2025-03-21 13:29:43', '1159977', 30, 0, 'clc', NULL, NULL, 'P3', 'PLUG-LDSTOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534962250010000', 1, 4, 1, 'ASRS-0309', 'P3', 'A01-32-05', '1742534990030010000', '2025-03-21 13:29:22', '2025-03-21 13:30:50', '9X8256', 2000, 0, 'clc', NULL, NULL, 'P3', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742534995753010000', 1, 4, 1, 'ASRS-0308', 'P3', 'A04-29-05', '1742535023616010000', '2025-03-21 13:29:56', '2025-03-21 13:31:18', '1H1023', 500, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538827911010000', 1, 4, 1, 'ASRS-0321', 'P3', 'A02-33-04', '1742538854366010000', '2025-03-21 14:33:48', '2025-03-21 14:35:14', '7T8797', 228, 0, 'clc', NULL, NULL, 'P3', 'SPACER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538859945010000', 1, 4, 1, 'ASRS-0307', 'P3', 'A03-27-08', '1742538887664010000', '2025-03-21 14:34:20', '2025-03-21 14:35:42', '6K0806', 800, 0, 'clc', NULL, NULL, 'P3', 'STRAP-CABLE'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538887184010000', 1, 4, 1, 'ASRS-0320', 'P3', 'A02-34-04', '1742538915563010000', '2025-03-21 14:34:47', '2025-03-21 14:36:16', '5H6005', 1400, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538906576010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A01-31-08', '1742538934770010000', '2025-03-21 14:35:07', '2025-03-21 14:37:02', '5M2057', 1000, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538966761010000', 1, 4, 1, 'ASRS-0319', 'P3', 'A03-28-07', '1742538997155010000', '2025-03-21 14:36:07', '2025-03-21 14:37:32', '4J0527', 250, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742538999297010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A01-33-06', '1742539027162010000', '2025-03-21 14:36:39', '2025-03-21 14:38:07', '2S4078', 450, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742539021049010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A01-35-04', '1742539048462010000', '2025-03-21 14:37:01', '2025-03-21 14:38:53', '9S8001', 1188, 0, 'clc', NULL, NULL, 'P3', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742539052138010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A03-29-06', '1742539080257010000', '2025-03-21 14:37:32', '2025-03-21 14:38:55', '8M3175', 700, 0, 'clc', NULL, NULL, 'P3', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602862595010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742602889987010000', '2025-03-22 08:21:03', '2025-03-22 08:22:31', '6J4568', 70, 0, 'clc', NULL, NULL, 'P3', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602896069010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-31-04', '1742602925054010000', '2025-03-22 08:21:36', '2025-03-22 08:23:00', '9S4182', 350, 0, 'clc', NULL, NULL, 'P3', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602925972010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A02-39-01', '1742603056434010000', '2025-03-22 08:22:06', '2025-03-22 08:26:25', '3676001', 160, 0, 'clc', NULL, NULL, 'P3', 'PLUG AS-HD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602947180010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1742602983849010000', '2025-03-22 08:22:27', '2025-03-22 08:24:03', '9S8009', 100, 0, 'clc', NULL, NULL, 'P3', 'PLUG-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602964323010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A03-32-03', '1742602991651010000', '2025-03-22 08:22:44', '2025-03-22 08:24:06', '6E1923', 20, 0, 'clc', NULL, NULL, 'P3', 'TUBE AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602977370010000', 1, 4, 1, 'ASRS-0330', 'P3', 'A02-37-03', '1742603005449010000', '2025-03-22 08:22:57', '2025-03-22 08:24:50', '6E1925', 50, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742602990812010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A04-29-06', '1742603028537010000', '2025-03-22 08:23:11', '2025-03-22 08:24:52', '3603693', 100, 0, 'clc', NULL, NULL, 'P3', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603008962010000', 1, 4, 1, 'ASRS-0328', 'P3', 'A02-38-02', '1742603035753010000', '2025-03-22 08:23:29', '2025-03-22 08:25:37', '6E1924', 50, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603023843010000', 1, 4, 1, 'ASRS-0327', 'P3', 'A04-31-04', '1742603052251010000', '2025-03-22 08:23:44', '2025-03-22 08:25:34', '6V9834', 30, 0, 'clc', NULL, NULL, 'P3', 'CAP-ORFS'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603039818010000', 1, 4, 1, 'ASRS-0314', 'P3', 'A04-32-03', '1742603066934010000', '2025-03-22 08:24:00', '2025-03-22 08:26:20', '9F6705', 60, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603055178010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A01-39-02', '1742603083435010000', '2025-03-22 08:24:15', '2025-03-22 08:27:12', '9S4189', 75, 0, 'clc', NULL, NULL, 'P3', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603074097010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-05', '1742603102638010000', '2025-03-22 08:24:34', '2025-03-22 08:27:04', '9S8003', 500, 0, 'clc', NULL, NULL, 'P3', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603086162010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A02-32-09', '1742603112838010000', '2025-03-22 08:24:46', '2025-03-22 08:27:59', '4K1388', 600, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603099193010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A03-31-06', '1742603126637010000', '2025-03-22 08:24:59', '2025-03-22 08:27:49', '2191893', 100, 0, 'clc', NULL, NULL, 'P3', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742603112897010000', 1, 4, 1, 'ASRS-0302', 'P3', 'A02-41-01', '1742603141339010000', '2025-03-22 08:25:13', '2025-03-22 08:28:46', '9S4183', 60, 0, 'clc', NULL, NULL, 'P3', 'Plug-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615342432010000', 1, 4, 1, 'ASRS-0301', 'P3', 'A01-32-11', '1742615369164010000', '2025-03-22 11:49:02', '2025-03-22 11:50:29', '1061791', 5, 0, 'clc', NULL, NULL, 'P3', 'SWITCH GP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615367710010000', 1, 4, 1, 'ASRS-0300', 'P3', 'A03-34-05', '1742615393754010000', '2025-03-22 11:49:28', '2025-03-22 11:50:49', '4F4097', 275, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615404836010000', 1, 4, 1, 'ASRS-0297', 'P3', 'A01-33-10', '1742615430955010000', '2025-03-22 11:50:05', '2025-03-22 11:51:29', '7B8194', 183, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615431592010000', 1, 4, 1, 'ASRS-0299', 'P3', 'A03-35-04', '1742615452258010000', '2025-03-22 11:50:32', '2025-03-22 11:51:48', '9J0477', 46, 0, 'clc', NULL, NULL, 'P3', 'PLUG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615453264010000', 1, 4, 1, 'ASRS-0269', 'P3', 'A01-36-07', '1742615480147010000', '2025-03-22 11:50:53', '2025-03-22 11:52:20', '8T9535', 288, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX SKT HD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615470809010000', 1, 4, 1, 'ASRS-0249', 'P3', 'A01-37-06', '1742615497556010000', '2025-03-22 11:51:11', '2025-03-22 11:53:07', '2P5755', 117, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615490153010000', 1, 4, 1, 'ASRS-0250', 'P3', 'A03-38-01', '1742615516756010000', '2025-03-22 11:51:30', '2025-03-22 11:52:53', '6J4694', 297, 0, 'clc', NULL, NULL, 'P3', 'PLUG-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615513994010000', 1, 4, 1, 'ASRS-0248', 'P3', 'A01-40-03', '1742615542558010000', '2025-03-22 11:51:54', '2025-03-22 11:53:56', '8T4776', 313, 0, 'clc', NULL, NULL, 'P3', 'BOLT-SOCKET HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615536247010000', 1, 4, 1, 'ASRS-0247', 'P3', 'A04-28-11', '1742615563241010000', '2025-03-22 11:52:16', '2025-03-22 11:53:38', '7T8810', 271, 0, 'clc', NULL, NULL, 'P3', 'PLUNGER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615561555010000', 1, 4, 1, 'ASRS-1246', 'P3', 'A01-41-02', '1742615588158010000', '2025-03-22 11:52:42', '2025-03-22 11:54:44', '6Y2522', 132, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615578442010000', 1, 4, 1, 'ASRS-0275', 'P3', 'A04-29-10', '1742615605247010000', '2025-03-22 11:52:58', '2025-03-22 11:54:21', '6Y2584', 279, 0, 'clc', NULL, NULL, 'P3', 'RETAINER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615595795010000', 1, 4, 1, 'ASRS-0276', 'P3', 'A04-30-09', '1742615622356010000', '2025-03-22 11:53:16', '2025-03-22 11:55:05', '8P0346', 235, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615612013010000', 1, 4, 1, 'ASRS-0274', 'P3', 'A01-42-01', '1742615638259010000', '2025-03-22 11:53:32', '2025-03-22 11:55:33', '1488356', 12, 0, 'clc', NULL, NULL, 'P3', 'ADAPTER AS-ELBOW'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615696050010000', 1, 4, 1, 'ASRS-0273', 'P3', 'A04-31-08', '1742615722546010000', '2025-03-22 11:54:56', '2025-03-22 11:56:16', '8C5176', 40, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615709389010000', 1, 4, 1, 'ASRS-0272', 'P3', 'A02-32-11', '1742615737246010000', '2025-03-22 11:55:09', '2025-03-22 11:56:37', '8C5176', 68, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615754572010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A04-32-07', '1742615781947010000', '2025-03-22 11:55:55', '2025-03-22 11:57:17', '2935263', 175, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742615840418010001', 2, 4, 1, 'ASRS-0271', 'A04-32-07', NULL, '1742615841406010000', '2025-03-22 11:57:20', '2025-03-22 11:57:59', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742616250734010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A02-33-10', '1742616279374010000', '2025-03-22 12:04:11', '2025-03-22 12:05:38', '2935263', 169, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742623935087010000', 1, 4, 1, 'ASRS-0270', 'P3', 'A02-35-08', '1742624024821010000', '2025-03-22 14:12:15', '2025-03-22 14:15:05', '7X0272', 100, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742623957743010000', 1, 4, 1, 'ASRS-1907', 'P3', 'A02-34-09', '1742623997530010000', '2025-03-22 14:12:38', '2025-03-22 14:14:18', '5H3193', 200, 0, 'clc', NULL, NULL, 'P3', 'PIN-SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742623980521010000', 1, 4, 1, 'ASRS-0371', 'P3', 'A04-32-07', '1742624007705010000', '2025-03-22 14:13:01', '2025-03-22 14:14:16', '2D6648', 200, 0, 'clc', NULL, NULL, 'P3', 'RING-RETAINING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624015351010000', 1, 4, 1, 'ASRS-0370', 'P3', 'A04-33-06', '1742624044020010000', '2025-03-22 14:13:35', '2025-03-22 14:15:01', '8T4224', 3700, 0, 'clc', NULL, NULL, 'P3', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624028756010000', 1, 4, 1, 'ASRS-0369', 'P3', 'A02-36-07', '1742624057833010000', '2025-03-22 14:13:49', '2025-03-22 14:15:51', '4J9780', 125, 0, 'clc', NULL, NULL, 'P3', 'PLUG-NPTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624061472010000', 1, 4, 1, 'ASRS-0368', 'P3', 'A04-34-05', '1742624089004010000', '2025-03-22 14:14:21', '2025-03-22 14:15:47', '8T9383', 300, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624078985010000', 1, 4, 1, 'ASRS-0367', 'P3', 'A02-37-06', '1742624111220010000', '2025-03-22 14:14:39', '2025-03-22 14:16:38', '8T4896', 2500, 0, 'clc', NULL, NULL, 'P3', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624091925010000', 1, 4, 1, 'ASRS-0366', 'P3', 'A04-35-04', '1742624118407010000', '2025-03-22 14:14:52', '2025-03-22 14:16:32', '9J8126', 300, 0, 'clc', NULL, NULL, 'P3', 'PLUG-NPTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624105449010000', 1, 4, 1, 'ASRS-0365', 'P3', 'A02-38-05', '1742624132505010000', '2025-03-22 14:15:05', '2025-03-22 14:17:26', '9T4697', 40, 0, 'clc', NULL, NULL, 'P3', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624125136010000', 1, 4, 1, 'ASRS-1033', 'P3', 'A04-36-03', '1742624151721010000', '2025-03-22 14:15:25', '2025-03-22 14:17:19', '1212051', 200, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624132607010000', 1, 4, 1, 'ASRS-0361', 'P3', 'A02-39-04', '1742624158922010000', '2025-03-22 14:15:33', '2025-03-22 14:18:15', '0304605', 260, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624157535010000', 1, 4, 1, 'ASRS-0363', 'P3', 'A04-37-02', '1742624184408010000', '2025-03-22 14:15:58', '2025-03-22 14:18:06', '9T4685', 200, 0, 'clc', NULL, NULL, 'P3', 'SHIM'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624169536010000', 1, 4, 1, 'ASRS-0362', 'P3', 'A04-38-01', '1742624196120010000', '2025-03-22 14:16:10', '2025-03-22 14:18:53', '4D9986', 100, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624184503010000', 1, 4, 1, 'ASRS-0267', 'P3', 'A02-40-03', '1742624211706010000', '2025-03-22 14:16:25', '2025-03-22 14:19:03', '7J9933', 300, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624196105010000', 1, 4, 1, 'ASRS-0268', 'P3', 'A02-41-02', '1742624222506010000', '2025-03-22 14:16:36', '2025-03-22 14:19:52', '4H5232', 1000, 0, 'clc', NULL, NULL, 'P3', 'PIN-SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624216265010000', 1, 4, 1, 'ASRS-0266', 'P3', 'A03-29-11', '1742624243521010000', '2025-03-22 14:16:56', '2025-03-22 14:19:38', '6V4432', 100, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624227255010000', 1, 4, 1, 'ASRS-0265', 'P3', 'A02-42-01', '1742624253726010000', '2025-03-22 14:17:07', '2025-03-22 14:20:42', '4J2506', 720, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624243280010000', 1, 4, 1, 'ASRS-0382', 'P3', 'A03-30-10', '1742624272911010000', '2025-03-22 14:17:23', '2025-03-22 14:20:21', '8T2396', 500, 0, 'clc', NULL, NULL, 'P3', 'BOLT-SOCKET HD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624254657010000', 1, 4, 1, 'ASRS-0381', 'P3', 'A01-33-11', '1742624280722010000', '2025-03-22 14:17:35', '2025-03-22 14:21:29', '7J0204', 1000, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624263577010000', 1, 4, 1, 'ASRS-0380', 'P3', 'A03-31-09', '1742624290023010000', '2025-03-22 14:17:44', '2025-03-22 14:21:05', '7X7888', 250, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624273518010000', 1, 4, 1, 'ASRS-0379', 'P3', 'A01-34-10', '1742624306806010000', '2025-03-22 14:17:54', '2025-03-22 14:22:16', '6V5391', 250, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624324129010000', 1, 4, 1, 'ASRS-0378', 'P3', 'A03-32-08', '1742624390208010000', '2025-03-22 14:18:44', '2025-03-22 14:21:51', '8F9206', 3385, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624427170010000', 1, 4, 1, 'ASRS-0377', 'P3', 'A01-35-09', '1742624455604010000', '2025-03-22 14:20:27', '2025-03-22 14:23:03', '6J5899', 20, 0, 'clc', NULL, NULL, 'P3', 'COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624447089010000', 1, 4, 1, 'ASRS-0376', 'P3', 'A03-33-07', '1742624474823010000', '2025-03-22 14:20:47', '2025-03-22 14:22:36', '7X0352', 40, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624545531010000', 1, 4, 1, 'ASRS-0354', 'P3', 'A03-34-06', '1742624574406010000', '2025-03-22 14:22:26', '2025-03-22 14:23:51', '4J0524', 400, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624557134010000', 1, 4, 1, 'ASRS-0346', 'P3', 'A01-36-08', '1742624583425010000', '2025-03-22 14:22:37', '2025-03-22 14:24:05', '4T1021', 60, 0, 'clc', NULL, NULL, 'P3', 'RETAINER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624567927010000', 1, 4, 1, 'ASRS-0347', 'P3', 'A01-37-07', '1742624595121010000', '2025-03-22 14:22:48', '2025-03-22 14:24:52', '7X0272', 400, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624593894010000', 1, 4, 1, 'ASRS-0348', 'P3', 'A03-35-05', '1742624621202010000', '2025-03-22 14:23:14', '2025-03-22 14:24:38', '4D9986', 900, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624606586010000', 1, 4, 1, 'ASRS-0341', 'P3', 'A03-36-04', '1742624632920010000', '2025-03-22 14:23:27', '2025-03-22 14:25:25', '4T0993', 100, 0, 'clc', NULL, NULL, 'P3', 'RETAINER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624616429010000', 1, 4, 1, 'ASRS-0372', 'P3', 'A01-38-06', '1742624643103010000', '2025-03-22 14:23:36', '2025-03-22 14:25:40', '2458472/X', 250, 0, 'clc', NULL, NULL, 'P3', 'PLUG-EXPANSION'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624626317010000', 1, 4, 1, 'ASRS-0387', 'P3', 'A01-39-05', '1742624652704010000', '2025-03-22 14:23:46', '2025-03-22 14:26:28', '4J8997', 600, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624636429010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A03-37-03', '1742624662904010000', '2025-03-22 14:23:56', '2025-03-22 14:26:12', '3T8236', 30, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624646572010000', 1, 4, 1, 'ASRS-0391', 'P3', 'A01-40-04', '1742624673106010000', '2025-03-22 14:24:07', '2025-03-22 14:27:17', '4D0514', 150, 0, 'clc', NULL, NULL, 'P3', 'PLUG-PTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624654349010000', 1, 4, 1, 'ASRS-0390', 'P3', 'A03-38-02', '1742624682118010000', '2025-03-22 14:24:14', '2025-03-22 14:26:59', '1089402', 20, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624662070010000', 1, 4, 1, 'ASRS-0389', 'P3', 'A03-39-01', '1742624732803010000', '2025-03-22 14:24:22', '2025-03-22 14:27:47', '4T4207', 75, 0, 'clc', NULL, NULL, 'P3', 'PLUG-NPTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624672088010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A01-41-03', '1742624705219010000', '2025-03-22 14:24:32', '2025-03-22 14:28:05', '1J9671', 900, 0, 'clc', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624710709010000', 1, 4, 1, 'ASRS-1898', 'P3', 'A04-29-11', '1742624737000010000', '2025-03-22 14:25:11', '2025-03-22 14:28:33', '7M1297', 55, 0, 'clc', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624721125010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A01-42-02', '1742624748105010000', '2025-03-22 14:25:21', '2025-03-22 14:28:55', '6V8647', 300, 0, 'clc', NULL, NULL, 'P3', 'ADAPTER-STR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624761014010000', 1, 4, 1, 'ASRS-0364', 'P3', 'A02-33-11', '1742624789819010000', '2025-03-22 14:26:01', '2025-03-22 14:29:43', '6V1849', 8, 0, 'clc', NULL, NULL, 'P3', 'COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624773661010000', 1, 4, 1, 'ASRS-1901', 'P3', 'A04-30-10', '1742624800004010000', '2025-03-22 14:26:14', '2025-03-22 14:29:49', '3J5553', 150, 0, 'clc', NULL, NULL, 'P3', 'GASKET'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624798509010000', 1, 4, 1, 'ASRS-0349', 'P3', 'A04-31-09', '1742624825202010000', '2025-03-22 14:26:39', '2025-03-22 14:31:04', '6V5195', 200, 0, 'clc', NULL, NULL, 'P3', 'BOLT-SOCKET HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624815069010000', 1, 4, 1, 'ASRS-0344', 'P3', 'A02-34-10', '1742624842020010000', '2025-03-22 14:26:55', '2025-03-22 14:30:29', '1749194', 700, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX FLG HD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624830983010000', 1, 4, 1, 'ASRS-0339', 'P3', 'A02-35-09', '1742624859404010000', '2025-03-22 14:27:11', '2025-03-22 14:31:15', '1D4566', 100, 0, 'clc', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624855476010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A04-32-08', '1742624881905010000', '2025-03-22 14:27:35', '2025-03-22 14:31:49', '6V5230', 50, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624863636010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A02-36-08', '1742624890020010000', '2025-03-22 14:27:44', '2025-03-22 14:32:02', '3P9498', 100, 0, 'clc', NULL, NULL, 'P3', 'PLUG-NPTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624872541010000', 1, 4, 1, 'ASRS-1905', 'P3', 'A04-33-07', '1742624901101010000', '2025-03-22 14:27:53', '2025-03-22 14:32:34', '7X2535', 600, 0, 'clc', NULL, NULL, 'P3', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624892412010001', 2, 4, 1, 'ASRS-0371', 'A04-32-07', NULL, '1742624893406010000', '2025-03-22 14:28:12', '2025-03-22 14:29:11', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742624952411010001', 2, 4, 1, 'ASRS-0378', 'A03-32-08', NULL, '1742624953406010000', '2025-03-22 14:29:12', '2025-03-22 14:30:27', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742625090532010000', 1, 4, 1, 'ASRS-0371', 'P3', 'A02-37-07', '1742625117418010000', '2025-03-22 14:31:31', '2025-03-22 14:32:59', '2D6648', 500, 0, '管理员', NULL, NULL, 'P3', 'RING-RETAINING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742625140747010000', 1, 4, 1, 'ASRS-0378', 'P3', 'A04-32-07', '1742625168406010000', '2025-03-22 14:32:21', '2025-03-22 14:33:45', '8F9206', 100, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742626925410010001', 2, 4, 9, 'ASRS-0371', 'A02-37-07', NULL, '1742626926407010000', '2025-03-22 15:02:05', '2025-03-22 15:02:46', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742626948412010001', 2, 4, 9, 'ASRS-0362', 'A04-38-01', NULL, '1742626949407010000', '2025-03-22 15:02:28', '2025-03-22 15:03:14', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742626970410010001', 2, 4, 9, 'ASRS-0270', 'A02-35-08', NULL, '1742626971407010000', '2025-03-22 15:02:50', '2025-03-22 15:03:42', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742626995409010001', 2, 4, 9, 'ASRS-0348', 'A03-35-05', NULL, '1742626996406010000', '2025-03-22 15:03:15', '2025-03-22 15:04:07', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627023412010001', 2, 4, 9, 'ASRS-0347', 'A01-37-07', NULL, '1742627024410010000', '2025-03-22 15:03:43', '2025-03-22 15:04:35', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627048411010001', 2, 4, 9, 'ASRS-0378', 'A04-32-07', NULL, '1742627049408010000', '2025-03-22 15:04:08', '2025-03-22 15:04:58', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627319410010001', 2, 4, 9, 'ASRS-0348', 'A02-35-08', NULL, '1742627320406010000', '2025-03-22 15:08:39', '2025-03-22 15:09:20', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627343410010001', 2, 4, 9, 'ASRS-0347', 'A04-32-07', NULL, '1742627344406010000', '2025-03-22 15:09:03', '2025-03-22 15:09:43', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627592216010000', 1, 4, 1, 'ASRS-0352', 'P3', 'A02-35-08', '1742627626341010000', '2025-03-22 15:13:12', '2025-03-22 15:14:39', '7X0272', 500, 0, '管理员', NULL, NULL, 'P3', 'BOLT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627659138010000', 1, 4, 1, 'ASRS-0345', 'P3', 'A01-37-07', '1742627688140010000', '2025-03-22 15:14:19', '2025-03-22 15:15:50', '4D9986', 1000, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627681913010000', 1, 4, 1, 'ASRS-0343', 'P3', 'A04-32-07', '1742627708843010000', '2025-03-22 15:14:42', '2025-03-22 15:15:57', '2D6648', 700, 0, '管理员', NULL, NULL, 'P3', 'RING-RETAINING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742627741432010000', 1, 4, 1, 'ASRS-0335', 'P3', 'A02-37-07', '1742627769435010000', '2025-03-22 15:15:41', '2025-03-22 15:17:11', '8F9206', 3485, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742758793115010000', 1, 4, 1, 'ASRS-1713', 'P1', 'A02-38-06', '1742759107455010000', '2025-03-24 03:39:53', '2025-03-24 03:46:09', '8T5005', 235, 0, '管理员', NULL, NULL, 'P1', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759280690010000', 1, 4, 1, 'ASRS-0545', 'P3', 'A02-39-05', '1742759309931010000', '2025-03-24 03:48:01', '2025-03-24 03:49:32', '8T4121', 2000, 0, '管理员', NULL, NULL, 'P3', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759307193010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A04-38-01', '1742759334529010000', '2025-03-24 03:48:27', '2025-03-24 03:49:52', '6V3965', 250, 0, '管理员', NULL, NULL, 'P3', 'NIPPLE-QDISC'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759328726010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A02-40-04', '1742759360344010000', '2025-03-24 03:48:49', '2025-03-24 03:50:24', '9S4183', 60, 0, '管理员', NULL, NULL, 'P3', 'Plug-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759333295010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-32-08', '1742759364545010000', '2025-03-24 03:48:53', '2025-03-24 03:50:38', '9F6705', 60, 0, '管理员', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759360703010000', 1, 4, 1, 'ASRS-1528', 'P3', 'A02-41-03', '1742759394545010000', '2025-03-24 03:49:21', '2025-03-24 03:51:12', '8C3206', 70, 0, '管理员', NULL, NULL, 'P3', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759366646010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A03-35-05', '1742759398743010000', '2025-03-24 03:49:27', '2025-03-24 03:51:24', '6V0852', 100, 0, '管理员', NULL, NULL, 'P3', 'CAP-DUST'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759391678010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A02-42-02', '1742759423645010000', '2025-03-24 03:49:52', '2025-03-24 03:52:02', '6E1923', 20, 0, '管理员', NULL, NULL, 'P3', 'TUBE AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759395574010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A01-34-11', '1742759427842010000', '2025-03-24 03:49:56', '2025-03-24 03:52:50', '8T4196', 425, 0, '管理员', NULL, NULL, 'P3', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759417671010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-34-06', '1742759444043010000', '2025-03-24 03:50:18', '2025-03-24 03:52:09', '3D2824', 1000, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759425056010000', 1, 4, 1, 'ASRS-0351', 'P3', 'A04-35-05', '1742759451825010000', '2025-03-24 03:50:25', '2025-03-24 03:52:56', '7J1089', 100, 0, '管理员', NULL, NULL, 'P3', 'PLUG-O-RING SPL'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759445727010000', 1, 4, 1, 'ASRS-0342', 'P3', 'A01-35-10', '1742759476140010000', '2025-03-24 03:50:46', '2025-03-24 03:53:37', '7S0530', 60, 0, '管理员', NULL, NULL, 'P3', 'CLIP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759449406010000', 1, 4, 1, 'ASRS-0337', 'P3', 'A01-36-09', '1742759480348010000', '2025-03-24 03:50:49', '2025-03-24 03:54:24', '6V9834', 30, 0, '管理员', NULL, NULL, 'P3', 'CAP-ORFS'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759469111010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A04-36-04', '1742759499534010000', '2025-03-24 03:51:09', '2025-03-24 03:53:43', '2191891', 150, 0, '管理员', NULL, NULL, 'P3', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759472911010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A04-37-03', '1742759503727010000', '2025-03-24 03:51:13', '2025-03-24 03:54:30', '3J1907', 2700, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759495698010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A01-37-08', '1742759531941010000', '2025-03-24 03:51:36', '2025-03-24 03:55:10', '6E5289', 100, 0, '管理员', NULL, NULL, 'P3', 'ADAPTER-STR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759499759010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A04-38-02', '1742759536145010000', '2025-03-24 03:51:40', '2025-03-24 03:55:16', '9S8002', 1000, 0, '管理员', NULL, NULL, 'P3', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759538399010000', 1, 4, 1, 'ASRS-1023', 'P3', 'A01-38-07', '1742759570955010000', '2025-03-24 03:52:18', '2025-03-24 03:55:57', '4564624', 25, 0, '管理员', NULL, NULL, 'P3', 'VALVE GP-D RLF-B'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759542183010000', 1, 4, 1, 'ASRS-1899', 'P3', 'A01-39-06', '1742759575144010000', '2025-03-24 03:52:22', '2025-03-24 03:56:46', '9S8006', 200, 0, '管理员', NULL, NULL, 'P3', 'PLUG-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759587216010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A04-39-01', '1742759618346010000', '2025-03-24 03:53:07', '2025-03-24 03:56:03', '2521631', 200, 0, '管理员', NULL, NULL, 'P3', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759591433010000', 1, 4, 1, 'ASRS-0270', 'P3', 'A01-40-05', '1742759622586010000', '2025-03-24 03:53:11', '2025-03-24 03:57:34', '4564633', 25, 0, '管理员', NULL, NULL, 'P3', 'VALVE GP-D RLF-B'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759618458010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-30-11', '1742759645631010000', '2025-03-24 03:53:38', '2025-03-24 03:57:36', '6V9833', 50, 0, '管理员', NULL, NULL, 'P3', 'CAP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759626659010000', 1, 4, 1, 'ASRS-0284', 'P3', 'A03-31-10', '1742759660339010000', '2025-03-24 03:53:47', '2025-03-24 03:56:50', '6V9830', 200, 0, '管理员', NULL, NULL, 'P3', 'CAP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759645299010000', 1, 4, 1, 'ASRS-0523', 'P3', 'A01-41-04', '1742759679547010000', '2025-03-24 03:54:05', '2025-03-24 03:58:23', '8T8987', 10, 0, '管理员', NULL, NULL, 'P3', 'ADPTR-ELB 90 DEG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759648994010000', 1, 4, 1, 'ASRS-1180', 'P3', 'A03-32-09', '1742759683749010000', '2025-03-24 03:54:09', '2025-03-24 03:58:21', '6J4568', 70, 0, '管理员', NULL, NULL, 'P3', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759672948010000', 1, 4, 1, 'ASRS-1030', 'P3', 'A01-42-03', '1742759703837010000', '2025-03-24 03:54:33', '2025-03-24 03:59:11', '1298222', 15, 0, '管理员', NULL, NULL, 'P3', 'VALVE GP-D RLF-'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759676588010000', 1, 4, 1, 'ASRS-1249', 'P3', 'A03-33-08', '1742759708052010000', '2025-03-24 03:54:37', '2025-03-24 04:01:24', '1268473', 100, 0, '管理员', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759698444010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A02-34-11', '1742759724853010000', '2025-03-24 03:54:58', '2025-03-24 04:02:19', '2M9780', 500, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759704902010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A03-34-07', '1742759732056010000', '2025-03-24 03:55:05', '2025-03-24 03:59:06', '4B9782', 200, 0, '管理员', NULL, NULL, 'P3', 'BALL'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759721773010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A02-35-10', '1742759748236010000', '2025-03-24 03:55:22', '2025-03-24 03:59:59', '3676002', 600, 0, '管理员', NULL, NULL, 'P3', 'PLUG AS-HD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759729853010000', 1, 4, 1, 'ASRS-0244', 'P3', 'A03-35-06', '1742759767156010000', '2025-03-24 03:55:30', '2025-03-24 03:59:51', '5J2974', 150, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759758959010000', 1, 4, 1, 'ASRS-0517', 'P3', 'A02-36-09', '1742759790240010000', '2025-03-24 03:55:59', '2025-03-24 04:01:33', '9S4191', 500, 0, '管理员', NULL, NULL, 'P3', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759762405010000', 1, 4, 1, 'ASRS-1088', 'P3', 'A02-37-08', '1742759806760010000', '2025-03-24 03:56:02', '2025-03-24 04:00:46', '2191893', 100, 0, '管理员', NULL, NULL, 'P3', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759811657010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A03-36-05', '1742759837939010000', '2025-03-24 03:56:52', '2025-03-24 04:00:38', '4J0520', 300, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759818257010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A03-37-04', '1742759844839010000', '2025-03-24 03:56:58', '2025-03-24 04:02:58', '3J7354', 1200, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759842601010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A02-38-07', '1742759874838010000', '2025-03-24 03:57:23', '2025-03-24 04:03:06', '9S4185', 250, 0, '管理员', NULL, NULL, 'P3', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759846672010000', 1, 4, 1, 'ASRS-0525', 'P3', 'A03-38-03', '1742759906662010000', '2025-03-24 03:57:27', '2025-03-24 04:02:11', '5H4019', 150, 0, '管理员', NULL, NULL, 'P3', 'COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759870777010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-39-06', '1742759914742010000', '2025-03-24 03:57:51', '2025-03-24 04:04:43', '3K0360', 3000, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759874617010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A03-39-02', '1742759949840010000', '2025-03-24 03:57:55', '2025-03-24 04:03:45', '2965987', 500, 0, '管理员', NULL, NULL, 'P3', 'PLUG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759897506010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-40-05', '1742759954054010000', '2025-03-24 03:58:18', '2025-03-24 04:03:55', '6E1924', 50, 0, '管理员', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742759905480010000', 1, 4, 1, 'ASRS-1025', 'P3', 'A03-40-01', '1742759992455010000', '2025-03-24 03:58:25', '2025-03-24 04:04:34', '6E1925', 22, 0, '管理员', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775438409010001', 2, 4, 1, 'ASRS-0315', 'A03-31-04', NULL, '1742775439407010000', '2025-03-24 08:17:18', '2025-03-24 08:18:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775438409010004', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1742775439407010001', '2025-03-24 08:17:18', '2025-03-24 08:18:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775485408010001', 2, 4, 1, 'ASRS-0313', 'A01-39-02', NULL, '1742775486407010000', '2025-03-24 08:18:05', '2025-03-24 08:18:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775487416010001', 2, 4, 1, 'ASRS-0350', 'A04-34-06', NULL, '1742775488407010000', '2025-03-24 08:18:07', '2025-03-24 08:19:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775539420010001', 2, 4, 1, 'ASRS-0304', 'A02-32-09', NULL, '1742775540406010000', '2025-03-24 08:18:59', '2025-03-24 08:19:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775541422010002', 2, 4, 1, 'ASRS-0334', 'A03-37-04', NULL, '1742775542406010000', '2025-03-24 08:19:01', '2025-03-24 08:19:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775590420010001', 2, 4, 1, 'ASRS-0302', 'A02-41-01', NULL, '1742775591407010000', '2025-03-24 08:19:50', '2025-03-24 08:20:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775645407010001', 2, 4, 1, 'ASRS-0388', 'A01-42-02', NULL, '1742775646409010000', '2025-03-24 08:20:45', '2025-03-24 08:21:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742775892408010001', 2, 4, 1, 'ASRS-0520', 'A02-34-11', NULL, '1742775893407010000', '2025-03-24 08:24:52', '2025-03-24 08:25:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776528410010001', 2, 4, 1, 'ASRS-0324', 'A01-29-07', NULL, '1742776529406010000', '2025-03-24 08:35:28', '2025-03-24 08:36:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776528410010004', 2, 4, 1, 'ASRS-0329', 'A04-29-06', NULL, '1742776529406010001', '2025-03-24 08:35:28', '2025-03-24 08:36:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776596408010001', 2, 4, 1, 'ASRS-0340', 'A01-41-03', NULL, '1742776597404010000', '2025-03-24 08:36:36', '2025-03-24 08:37:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776618409010001', 2, 4, 1, 'ASRS-0305', 'A04-31-05', NULL, '1742776619407010000', '2025-03-24 08:36:58', '2025-03-24 08:37:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776676422010002', 2, 4, 1, 'ASRS-1027', 'A02-39-06', NULL, '1742776677404010000', '2025-03-24 08:37:56', '2025-03-24 08:38:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776838407010001', 2, 4, 1, 'ASRS-0306', 'A01-31-08', NULL, '1742776839407010000', '2025-03-24 08:40:38', '2025-03-24 08:41:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776838408010002', 2, 4, 1, 'ASRS-0314', 'A04-32-03', NULL, '1742776839407010001', '2025-03-24 08:40:38', '2025-03-24 08:41:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776884415010001', 2, 4, 1, 'ASRS-0392', 'A03-37-03', NULL, '1742776885408010000', '2025-03-24 08:41:24', '2025-03-24 08:42:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776886409010001', 2, 4, 1, 'ASRS-0333', 'A02-39-01', NULL, '1742776887407010000', '2025-03-24 08:41:26', '2025-03-24 08:42:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742776964408010001', 2, 4, 1, 'ASRS-1902', 'A02-36-08', NULL, '1742776965406010000', '2025-03-24 08:42:44', '2025-03-24 08:43:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777017415010001', 2, 4, 1, 'ASRS-1526', 'A02-35-10', NULL, '1742777018406010000', '2025-03-24 08:43:37', '2025-03-24 08:44:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777483406010001', 2, 4, 1, 'ASRS-0330', 'A02-37-03', NULL, '1742777484407010000', '2025-03-24 08:51:23', '2025-03-24 08:52:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777494322010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A02-41-04', '1742777516796010000', '2025-03-24 08:51:34', '2025-03-24 08:54:07', '1007000', 48, 0, 'clc', NULL, NULL, 'P2', 'Ring-back up'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777529406010001', 2, 4, 1, 'ASRS-0328', 'A02-38-02', NULL, '1742777530407010000', '2025-03-24 08:52:09', '2025-03-24 08:53:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777698407010001', 2, 4, 1, 'ASRS-1529', 'A02-41-04', NULL, '1742777699406010000', '2025-03-24 08:54:58', '2025-03-24 08:55:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777838421010001', 2, 4, 1, 'ASRS-0316', 'A03-29-06', NULL, '1742777839406010000', '2025-03-24 08:57:18', '2025-03-24 08:58:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777883407010001', 2, 4, 1, 'ASRS-0331', 'A03-32-03', NULL, '1742777884406010000', '2025-03-24 08:58:03', '2025-03-24 08:58:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777934407010001', 2, 4, 1, 'ASRS-0338', 'A04-32-08', NULL, '1742777935407010000', '2025-03-24 08:58:54', '2025-03-24 08:59:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742777966155010000', 1, 4, 1, 'ASRS-0528', 'P2', 'A03-29-06', '1742777988691010000', '2025-03-24 08:59:26', '2025-03-24 09:00:36', '8J6815', 159, 0, 'clc', NULL, NULL, 'P2', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778038407010001', 2, 4, 1, 'ASRS-0327', 'A04-31-04', NULL, '1742778039407010000', '2025-03-24 09:00:38', '2025-03-24 09:01:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778038407010004', 2, 4, 1, 'ASRS-0274', 'A01-42-01', NULL, '1742778039407010001', '2025-03-24 09:00:38', '2025-03-24 09:01:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778178407010001', 2, 4, 1, 'ASRS-0528', 'A03-29-06', NULL, '1742778179406010000', '2025-03-24 09:02:58', '2025-03-24 09:03:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778357408010001', 2, 4, 1, 'ASRS-0528', 'A01-35-11', NULL, '1742778358407010000', '2025-03-24 09:05:57', '2025-03-24 09:06:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778448406010001', 2, 4, 1, 'ASRS-1524', 'A04-36-04', NULL, '1742778449406010000', '2025-03-24 09:07:28', '2025-03-24 09:08:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778495406010001', 2, 4, 1, 'ASRS-0522', 'A03-39-02', NULL, '1742778496406010000', '2025-03-24 09:08:15', '2025-03-24 09:09:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778603408010001', 2, 4, 1, 'ASRS-0303', 'A03-31-06', NULL, '1742778604405010000', '2025-03-24 09:10:03', '2025-03-24 09:10:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778612138010000', 1, 4, 1, 'ASRS-0527', 'P2', 'A01-37-09', '1742778633403010000', '2025-03-24 09:10:12', '2025-03-24 09:11:36', '4J7533', 500, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778637541010000', 1, 4, 1, 'ASRS-1034', 'P2', 'A01-38-08', '1742778659499010000', '2025-03-24 09:10:38', '2025-03-24 09:12:23', '6E1925', 50, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778667692010000', 1, 4, 1, 'ASRS-1032', 'P2', 'A03-31-06', '1742778689797010000', '2025-03-24 09:11:08', '2025-03-24 09:12:25', '3603693', 100, 0, 'clc', NULL, NULL, 'P2', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778808407010001', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1742778809407010000', '2025-03-24 09:13:28', '2025-03-24 09:14:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778808407010004', 2, 4, 1, 'ASRS-0332', 'A03-31-04', NULL, '1742778809407010001', '2025-03-24 09:13:28', '2025-03-24 09:14:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778852415010001', 2, 4, 1, 'ASRS-0313', 'A04-34-06', NULL, '1742778853407010000', '2025-03-24 09:14:12', '2025-03-24 09:15:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778863409010001', 2, 4, 1, 'ASRS-0304', 'A01-42-02', NULL, '1742778864407010000', '2025-03-24 09:14:23', '2025-03-24 09:15:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778904420010001', 2, 4, 1, 'ASRS-0388', 'A03-37-04', NULL, '1742778905407010000', '2025-03-24 09:15:04', '2025-03-24 09:15:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778918410010001', 2, 4, 1, 'ASRS-0302', 'A02-32-09', NULL, '1742778919407010000', '2025-03-24 09:15:18', '2025-03-24 09:16:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742778970411010000', 2, 4, 1, 'ASRS-0350', 'A01-39-02', NULL, '1742778971408010000', '2025-03-24 09:16:10', '2025-03-24 09:17:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779025411010000', 2, 4, 1, 'ASRS-0520', 'A02-34-11', NULL, '1742779026410010000', '2025-03-24 09:17:05', '2025-03-24 09:17:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779077410010001', 2, 4, 1, 'ASRS-0334', 'A02-41-01', NULL, '1742779078407010000', '2025-03-24 09:17:57', '2025-03-24 09:19:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779157407010001', 2, 4, 1, 'ASRS-0315', 'A03-31-04', NULL, '1742779158407010000', '2025-03-24 09:19:17', '2025-03-24 09:19:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779708407010001', 2, 4, 1, 'ASRS-0324', 'A01-29-07', NULL, '1742779709406010000', '2025-03-24 09:28:28', '2025-03-24 09:29:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779708407010004', 2, 4, 1, 'ASRS-0329', 'A04-29-06', NULL, '1742779709406010001', '2025-03-24 09:28:28', '2025-03-24 09:29:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779754410010001', 2, 4, 1, 'ASRS-0340', 'A04-31-05', NULL, '1742779755409010000', '2025-03-24 09:29:14', '2025-03-24 09:30:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779756407010001', 2, 4, 1, 'ASRS-0305', 'A01-41-03', NULL, '1742779757404010000', '2025-03-24 09:29:16', '2025-03-24 09:30:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779837410010001', 2, 4, 1, 'ASRS-1027', 'A02-39-06', NULL, '1742779838408010000', '2025-03-24 09:30:37', '2025-03-24 09:31:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742779892407010001', 2, 4, 1, 'ASRS-1529', 'A02-38-02', NULL, '1742779893406010000', '2025-03-24 09:31:32', '2025-03-24 09:32:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780276446010000', 2, 4, 9, 'ASRS-0301', 'A01-32-11', NULL, '1742780277405010000', '2025-03-24 09:37:56', '2025-03-24 09:38:42', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780298433010001', 2, 4, 9, 'ASRS-0274', 'A04-31-04', NULL, '1742780299406010000', '2025-03-24 09:38:18', '2025-03-24 09:39:00', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780555993010000', 1, 4, 1, 'ASRS-0348', 'P2', 'A04-31-04', '1742780596000010000', '2025-03-24 09:42:36', '2025-03-24 09:44:04', '1488356', 11, 0, '管理员', NULL, NULL, 'P2', 'ADAPTER AS-ELBOW'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780566299010000', 1, 4, 1, 'ASRS-1261', 'P2', 'A01-41-03', '1742780600210010000', '2025-03-24 09:42:46', '2025-03-24 09:44:21', '1061791', 5, 0, '管理员', NULL, NULL, 'P2', 'SWITCH GP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780613408010001', 2, 4, 1, 'ASRS-1027', 'A01-32-11', NULL, '1742780614407010000', '2025-03-24 09:43:33', '2025-03-24 09:45:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742780883436010001', 2, 4, 1, 'ASRS-1529', 'A02-39-06', NULL, '1742780884407010000', '2025-03-24 09:48:03', '2025-03-24 09:48:45', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781018409010001', 2, 4, 1, 'ASRS-0306', 'A02-39-01', NULL, '1742781019406010000', '2025-03-24 09:50:18', '2025-03-24 09:51:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781018411010001', 2, 4, 1, 'ASRS-0392', 'A04-32-03', NULL, '1742781019407010000', '2025-03-24 09:50:18', '2025-03-24 09:51:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781046044010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A04-32-03', '1742781067924010000', '2025-03-24 09:50:46', '2025-03-24 09:52:31', '1007000', 100, 0, '管理员', NULL, NULL, 'P2', 'Ring-back up'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781062415010001', 2, 4, 1, 'ASRS-1526', 'A03-37-03', NULL, '1742781063406010000', '2025-03-24 09:51:02', '2025-03-24 09:51:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781072409010001', 2, 4, 1, 'ASRS-0333', 'A02-36-08', NULL, '1742781073406010000', '2025-03-24 09:51:12', '2025-03-24 09:52:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781150415010001', 2, 4, 1, 'ASRS-0314', 'A01-31-08', NULL, '1742781151408010000', '2025-03-24 09:52:30', '2025-03-24 09:53:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781201409010001', 2, 4, 1, 'ASRS-1902', 'A02-35-10', NULL, '1742781202405010000', '2025-03-24 09:53:21', '2025-03-24 09:54:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781254419010001', 2, 4, 1, 'ASRS-0528', 'A01-35-11', NULL, '1742781255406010000', '2025-03-24 09:54:14', '2025-03-24 09:55:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781703408010001', 2, 4, 1, 'ASRS-0330', 'A02-37-03', NULL, '1742781704407010000', '2025-03-24 10:01:43', '2025-03-24 10:02:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781703408010004', 2, 4, 1, 'ASRS-0328', 'A04-30-11', NULL, '1742781704407010001', '2025-03-24 10:01:43', '2025-03-24 10:02:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781898408010001', 2, 4, 1, 'ASRS-0316', 'A02-41-04', NULL, '1742781899409010000', '2025-03-24 10:04:58', '2025-03-24 10:05:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781898409010001', 2, 4, 1, 'ASRS-0338', 'A03-32-03', NULL, '1742781899409010001', '2025-03-24 10:04:58', '2025-03-24 10:05:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742781946410010001', 2, 4, 1, 'ASRS-0331', 'A02-42-03', NULL, '1742781947406010000', '2025-03-24 10:05:46', '2025-03-24 10:07:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782026438010000', 2, 4, 9, 'ASRS-0339', 'A02-35-09', NULL, '1742782027407010000', '2025-03-24 10:07:06', '2025-03-24 10:07:58', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782265407010001', 2, 4, 1, 'ASRS-0327', 'A01-42-01', NULL, '1742782266408010000', '2025-03-24 10:11:05', '2025-03-24 10:12:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782265408010001', 2, 4, 1, 'ASRS-0348', 'A04-31-04', NULL, '1742782266408010001', '2025-03-24 10:11:05', '2025-03-24 10:11:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782478408010000', 2, 4, 1, 'ASRS-0337', 'A01-36-09', NULL, '1742782479406010000', '2025-03-24 10:14:38', '2025-03-24 10:15:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782593407010001', 2, 4, 1, 'ASRS-1524', 'A01-36-10', NULL, '1742782594407010000', '2025-03-24 10:16:33', '2025-03-24 10:17:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782593407010004', 2, 4, 1, 'ASRS-0522', 'A03-29-06', NULL, '1742782594407010001', '2025-03-24 10:16:33', '2025-03-24 10:17:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742782753415010000', 2, 4, 1, 'ASRS-0303', 'A01-39-07', NULL, '1742782754404010000', '2025-03-24 10:19:13', '2025-03-24 10:20:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742789876415010001', 2, 4, 9, 'ASRS-0376', 'A03-33-07', NULL, '1742789877404010000', '2025-03-24 12:17:56', '2025-03-24 12:18:40', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742789905412010001', 2, 4, 9, 'ASRS-0364', 'A02-33-11', NULL, '1742789906406010000', '2025-03-24 12:18:25', '2025-03-24 12:19:10', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794048408010001', 2, 4, 1, 'ASRS-0271', 'A02-33-10', NULL, '1742794049407010000', '2025-03-24 13:27:28', '2025-03-24 13:28:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794048409010001', 2, 4, 1, 'ASRS-0350', 'A03-31-04', NULL, '1742794049407010001', '2025-03-24 13:27:28', '2025-03-24 13:28:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794223407010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742794224404010000', '2025-03-24 13:30:23', '2025-03-24 13:31:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794223407010004', 2, 4, 1, 'ASRS-0386', 'A04-39-01', NULL, '1742794224404010001', '2025-03-24 13:30:23', '2025-03-24 13:31:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794478407010001', 2, 4, 1, 'ASRS-0271', 'A03-31-04', NULL, '1742794479406010000', '2025-03-24 13:34:38', '2025-03-24 13:35:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794478407010004', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742794479406010001', '2025-03-24 13:34:38', '2025-03-24 13:35:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794638408010001', 2, 4, 1, 'ASRS-0298', 'A04-31-04', NULL, '1742794639406010000', '2025-03-24 13:37:18', '2025-03-24 13:38:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794638408010004', 2, 4, 1, 'ASRS-0386', 'A01-36-03', NULL, '1742794639406010001', '2025-03-24 13:37:18', '2025-03-24 13:38:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794913409010001', 2, 4, 1, 'ASRS-0271', 'A03-31-04', NULL, '1742794914406010000', '2025-03-24 13:41:53', '2025-03-24 13:42:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742794913409010004', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742794914406010001', '2025-03-24 13:41:53', '2025-03-24 13:42:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795093410010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742795094407010000', '2025-03-24 13:44:53', '2025-03-24 13:46:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795164407010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742795165405010000', '2025-03-24 13:46:04', '2025-03-24 13:46:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795333406010001', 2, 4, 1, 'ASRS-0271', 'A02-33-10', NULL, '1742795334406010000', '2025-03-24 13:48:53', '2025-03-24 13:50:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795333406010004', 2, 4, 1, 'ASRS-0350', 'A03-31-04', NULL, '1742795334406010001', '2025-03-24 13:48:53', '2025-03-24 13:49:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795503408010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742795504406010000', '2025-03-24 13:51:43', '2025-03-24 13:52:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795557407010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742795558407010000', '2025-03-24 13:52:37', '2025-03-24 13:53:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742795798409010001', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742795799407010000', '2025-03-24 13:56:38', '2025-03-24 13:57:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742796358406010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742796359404010000', '2025-03-24 14:05:58', '2025-03-24 14:06:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742863567950010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-39-07', '1742863595204010000', '2025-03-25 08:46:08', '2025-03-25 08:47:36', '2521631', 200, 0, '管理员', NULL, NULL, 'P3', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742863606631010000', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742863607605010000', '2025-03-25 08:46:47', '2025-03-25 08:48:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742863881608010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742863882608010000', '2025-03-25 08:51:22', '2025-03-25 08:52:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864041608010001', 2, 4, 1, 'ASRS-0271', 'A03-31-04', NULL, '1742864042604010000', '2025-03-25 08:54:02', '2025-03-25 08:54:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864041608010004', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742864042604010001', '2025-03-25 08:54:02', '2025-03-25 08:55:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864196610010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742864197604010000', '2025-03-25 08:56:37', '2025-03-25 08:57:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864268608010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742864269609010000', '2025-03-25 08:57:49', '2025-03-25 08:58:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864466608010001', 2, 4, 1, 'ASRS-0271', 'A02-33-10', NULL, '1742864467605010000', '2025-03-25 09:01:07', '2025-03-25 09:01:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864466608010004', 2, 4, 1, 'ASRS-0350', 'A03-31-04', NULL, '1742864467605010001', '2025-03-25 09:01:07', '2025-03-25 09:01:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864591614010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742864592605010000', '2025-03-25 09:03:12', '2025-03-25 09:04:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864644607010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742864645603010000', '2025-03-25 09:04:05', '2025-03-25 09:05:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864851603010001', 2, 4, 1, 'ASRS-0271', 'A03-31-04', NULL, '1742864852606010000', '2025-03-25 09:07:32', '2025-03-25 09:08:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864851603010004', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742864852606010001', '2025-03-25 09:07:32', '2025-03-25 09:08:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742864991607010001', 2, 4, 1, 'ASRS-0298', 'A01-36-03', NULL, '1742864992605010000', '2025-03-25 09:09:52', '2025-03-25 09:10:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742865044621010000', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742865045603010000', '2025-03-25 09:10:45', '2025-03-25 09:12:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742865121610010001', 2, 4, 1, 'ASRS-1531', 'A01-39-07', NULL, '1742865122605010000', '2025-03-25 09:12:02', '2025-03-25 09:12:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742865876212010000', 1, 4, 1, 'ASRS-1531', 'P2', 'A01-36-10', '1742865900981010000', '2025-03-25 09:24:36', '2025-03-25 09:26:01', '2521631', 172, 0, '管理员', NULL, NULL, 'P2', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742865962606010001', 2, 4, 1, 'ASRS-1531', 'A01-36-10', NULL, '1742865963604010000', '2025-03-25 09:26:03', '2025-03-25 09:26:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866003612010001', 2, 4, 9, 'ASRS-0298', 'A01-36-03', NULL, '1742866004604010000', '2025-03-25 09:26:44', '2025-03-25 09:27:34', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866003612010004', 2, 4, 9, 'ASRS-1180', 'A03-32-09', NULL, '1742866004604010001', '2025-03-25 09:26:44', '2025-03-25 09:27:26', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866106606010001', 2, 4, 1, 'ASRS-0271', 'A02-33-10', NULL, '1742866107605010000', '2025-03-25 09:28:27', '2025-03-25 09:29:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866106607010001', 2, 4, 1, 'ASRS-0350', 'A03-31-04', NULL, '1742866107605010001', '2025-03-25 09:28:27', '2025-03-25 09:29:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866251612010001', 2, 4, 1, 'ASRS-1531', 'A01-36-03', NULL, '1742866252605010000', '2025-03-25 09:30:52', '2025-03-25 09:31:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866517392010000', 1, 4, 1, 'ASRS-0298', 'P2', 'A01-36-10', '1742866553208010000', '2025-03-25 09:35:17', '2025-03-25 09:36:54', '6J4568', 2, 0, '管理员', NULL, NULL, 'P2', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866615607010001', 2, 4, 1, 'ASRS-0298', 'A01-36-10', NULL, '1742866616605010000', '2025-03-25 09:36:56', '2025-03-25 09:37:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866860461010000', 1, 4, 1, 'ASRS-0386', 'P2', 'A01-36-10', '1742866883200010000', '2025-03-25 09:41:00', '2025-03-25 09:42:15', '6J4568', 70, 0, '管理员', NULL, NULL, 'P2', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742866946607010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742866947603010000', '2025-03-25 09:42:27', '2025-03-25 09:43:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867256606010001', 2, 4, 1, 'ASRS-0304', 'A04-32-08', NULL, '1742867257608010000', '2025-03-25 09:47:37', '2025-03-25 09:48:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867256606010004', 2, 4, 1, 'ASRS-0340', 'A02-38-02', NULL, '1742867257608010001', '2025-03-25 09:47:37', '2025-03-25 09:48:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867301606010001', 2, 4, 1, 'ASRS-0299', 'A03-35-04', NULL, '1742867302605010000', '2025-03-25 09:48:22', '2025-03-25 09:49:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867354607010001', 2, 4, 1, 'ASRS-0250', 'A03-38-01', NULL, '1742867355604010000', '2025-03-25 09:49:15', '2025-03-25 09:50:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867491607010001', 2, 4, 1, 'ASRS-0297', 'A01-33-10', NULL, '1742867492605010000', '2025-03-25 09:51:32', '2025-03-25 09:53:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867491607010004', 2, 4, 1, 'ASRS-1189', 'A03-34-07', NULL, '1742867492605010001', '2025-03-25 09:51:32', '2025-03-25 09:52:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867686603010001', 2, 4, 1, 'ASRS-0340', 'A04-31-04', NULL, '1742867687609010000', '2025-03-25 09:54:47', '2025-03-25 09:55:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742867686603010004', 2, 4, 1, 'ASRS-1531', 'A01-36-03', NULL, '1742867687609010001', '2025-03-25 09:54:47', '2025-03-25 09:55:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742868202612010001', 2, 4, 9, 'ASRS-1529', 'A04-32-03', NULL, '1742868203605010000', '2025-03-25 10:03:23', '2025-03-25 10:04:06', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742868778614010001', 2, 4, 9, 'ASRS-0303', 'A01-35-11', NULL, '1742868779605010000', '2025-03-25 10:12:59', '2025-03-25 10:13:43', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742868944623010001', 2, 4, 9, 'ASRS-0329', 'A01-29-07', NULL, '1742868945602010000', '2025-03-25 10:15:45', '2025-03-25 10:16:33', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742868994609010001', 2, 4, 9, 'ASRS-0331', 'A02-35-09', NULL, '1742868995608010000', '2025-03-25 10:16:35', '2025-03-25 10:17:25', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869006610010001', 2, 4, 9, 'ASRS-0330', 'A03-37-04', NULL, '1742869007605010000', '2025-03-25 10:16:47', '2025-03-25 10:17:37', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869046614010001', 2, 4, 9, 'ASRS-0328', 'A02-37-03', NULL, '1742869047604010000', '2025-03-25 10:17:27', '2025-03-25 10:18:18', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869058612010001', 2, 4, 9, 'ASRS-0273', 'A04-31-08', NULL, '1742869059604010000', '2025-03-25 10:17:39', '2025-03-25 10:18:27', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869099613010001', 2, 4, 9, 'ASRS-0327', 'A01-42-01', NULL, '1742869100604010000', '2025-03-25 10:18:20', '2025-03-25 10:19:13', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869327614010001', 2, 4, 9, 'ASRS-0272', 'A02-32-11', NULL, '1742869328604010000', '2025-03-25 10:22:08', '2025-03-25 10:22:57', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869378610010001', 2, 4, 9, 'ASRS-0314', 'A02-35-10', NULL, '1742869379608010000', '2025-03-25 10:22:59', '2025-03-25 10:23:49', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869426201010000', 1, 4, 1, 'ASRS-0364', 'P2', 'A01-29-07', '1742869442518010000', '2025-03-25 10:23:46', '2025-03-25 10:28:43', '8C5176', 40, 0, '管理员', NULL, NULL, 'P2', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869430610010001', 2, 4, 9, 'ASRS-0302', 'A02-32-09', NULL, '1742869431605010000', '2025-03-25 10:23:51', '2025-03-25 10:24:40', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869828613010001', 2, 4, 1, 'ASRS-0364', 'A01-29-07', NULL, '1742869829604010000', '2025-03-25 10:30:29', '2025-03-25 10:31:06', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869980603010001', 2, 4, 1, 'ASRS-0519', 'A02-40-05', NULL, '1742869981604010000', '2025-03-25 10:33:01', '2025-03-25 10:33:55', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742869980603010003', 2, 4, 1, 'ASRS-1025', 'A03-40-01', NULL, '1742869981604010001', '2025-03-25 10:33:01', '2025-03-25 10:33:53', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870034610010001', 2, 4, 1, 'ASRS-1221', 'A03-32-08', NULL, '1742870035603010000', '2025-03-25 10:33:55', '2025-03-25 10:34:44', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870036620010001', 2, 4, 1, 'ASRS-0337', 'A01-36-09', NULL, '1742870037605010000', '2025-03-25 10:33:57', '2025-03-25 10:34:48', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870089609010001', 2, 4, 1, 'ASRS-1436', 'A02-40-04', NULL, '1742870090603010000', '2025-03-25 10:34:50', '2025-03-25 10:35:42', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870216551010000', 1, 4, 1, 'ASRS-1025', 'P2', 'A01-29-07', '1742870239606010000', '2025-03-25 10:36:57', '2025-03-25 10:38:10', '6E1925', 38, 0, '管理员', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870251877010000', 1, 4, 1, 'ASRS-1221', 'P2', 'A04-32-03', '1742870273235010000', '2025-03-25 10:37:32', '2025-03-25 10:38:41', '9F6705', 48, 0, '管理员', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870346207010000', 1, 4, 1, 'ASRS-1436', 'P2', 'A02-37-03', '1742870373102010000', '2025-03-25 10:39:06', '2025-03-25 10:40:34', '9S4183', 48, 0, '管理员', NULL, NULL, 'P2', 'Plug-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870420685010000', 1, 4, 1, 'ASRS-0337', 'P2', 'A02-32-09', '1742870442426010000', '2025-03-25 10:40:21', '2025-03-25 10:41:43', '6V9834', 18, 0, '管理员', NULL, NULL, 'P2', 'CAP-ORFS'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870446323010000', 1, 4, 1, 'ASRS-0519', 'P2', 'A04-31-08', '1742870467617010000', '2025-03-25 10:40:46', '2025-03-25 10:42:02', '6E1924', 38, 0, '管理员', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870669611010000', 2, 4, 1, 'ASRS-1088', 'A02-37-08', NULL, '1742870670603010000', '2025-03-25 10:44:30', '2025-03-25 10:45:15', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870669611010002', 2, 4, 1, 'ASRS-1032', 'A03-31-06', NULL, '1742870670603010001', '2025-03-25 10:44:30', '2025-03-25 10:45:11', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870716610010001', 2, 4, 1, 'ASRS-1031', 'A02-42-02', NULL, '1742870717605010000', '2025-03-25 10:45:17', '2025-03-25 10:46:10', '000000000', 0, 0, '管理员', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870863038010000', 1, 4, 1, 'ASRS-0364', 'P2', 'A01-42-01', '1742870884894010000', '2025-03-25 10:47:43', '2025-03-25 10:48:58', '8C5176', 1, 0, '管理员', NULL, NULL, 'P2', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742870943935010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A02-32-11', '1742870966195010000', '2025-03-25 10:49:04', '2025-03-25 13:24:01', '6E1923', 8, 0, '管理员', NULL, NULL, 'P2', 'TUBE AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742871015862010000', 1, 4, 1, 'ASRS-1088', 'P2', 'A03-31-06', '1742871039704010000', '2025-03-25 10:50:16', '2025-03-25 10:51:28', '2191893', 51, 0, '管理员', NULL, NULL, 'P2', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742871048831010000', 1, 4, 1, 'ASRS-1032', 'P2', 'A02-35-09', '1742871071515010000', '2025-03-25 10:50:49', '2025-03-25 13:25:19', '3603693', 50, 0, '管理员', NULL, NULL, 'P2', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742871078548010000', 1, 4, 1, 'ASRS-0274', 'P2', 'A03-32-08', '1742871100933010000', '2025-03-25 10:51:19', '2025-03-25 10:52:35', '8C5176', 67, 0, '管理员', NULL, NULL, 'P2', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742879817614010001', 2, 4, 9, 'ASRS-0341', 'A03-36-04', NULL, '1742879818606010000', '2025-03-25 13:16:58', '2025-03-25 13:17:43', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742879830615010001', 2, 4, 9, 'ASRS-0346', 'A01-36-08', NULL, '1742879831605010000', '2025-03-25 13:17:11', '2025-03-25 13:24:41', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742882916609010001', 2, 4, 1, 'ASRS-0315', 'A02-34-11', NULL, '1742882917605010000', '2025-03-25 14:08:37', '2025-03-25 14:09:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742882916610010001', 2, 4, 1, 'ASRS-0520', 'A04-34-06', NULL, '1742882917605010001', '2025-03-25 14:08:37', '2025-03-25 14:09:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742882962607010001', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1742882963605010000', '2025-03-25 14:09:23', '2025-03-25 14:10:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883014607010001', 2, 4, 1, 'ASRS-0313', 'A01-39-02', NULL, '1742883015602010000', '2025-03-25 14:10:15', '2025-03-25 14:11:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883068616010001', 2, 4, 1, 'ASRS-0304', 'A02-38-02', NULL, '1742883069605010000', '2025-03-25 14:11:09', '2025-03-25 14:12:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883122607010001', 2, 4, 1, 'ASRS-0334', 'A01-42-02', NULL, '1742883123605010000', '2025-03-25 14:12:03', '2025-03-25 14:12:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883331609010000', 2, 4, 1, 'ASRS-0388', 'A02-41-01', NULL, '1742883332605010000', '2025-03-25 14:15:32', '2025-03-25 14:16:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883403613010001', 2, 4, 1, 'ASRS-1436', 'A02-37-03', NULL, '1742883404611010000', '2025-03-25 14:16:44', '2025-03-25 14:18:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883483612010001', 2, 4, 1, 'ASRS-0350', 'A02-33-10', NULL, '1742883484605010000', '2025-03-25 14:18:04', '2025-03-25 14:18:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883535607010001', 2, 4, 1, 'ASRS-0334', 'A01-39-02', NULL, '1742883536604010000', '2025-03-25 14:18:56', '2025-03-25 14:20:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883676607010001', 2, 4, 1, 'ASRS-0305', 'A04-31-05', NULL, '1742883677604010000', '2025-03-25 14:21:17', '2025-03-25 14:22:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883676607010004', 2, 4, 1, 'ASRS-0340', 'A01-36-03', NULL, '1742883677604010001', '2025-03-25 14:21:17', '2025-03-25 14:22:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883721609010001', 2, 4, 1, 'ASRS-1027', 'A01-32-11', NULL, '1742883722605010000', '2025-03-25 14:22:02', '2025-03-25 14:23:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883802609010001', 2, 4, 1, 'ASRS-1032', 'A02-35-09', NULL, '1742883803604010000', '2025-03-25 14:23:23', '2025-03-25 14:24:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883911609010001', 2, 4, 1, 'ASRS-0324', 'A04-29-06', NULL, '1742883912604010000', '2025-03-25 14:25:12', '2025-03-25 14:26:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883911609010004', 2, 4, 1, 'ASRS-0392', 'A02-39-01', NULL, '1742883912604010001', '2025-03-25 14:25:12', '2025-03-25 14:25:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883958608010001', 2, 4, 1, 'ASRS-1526', 'A02-36-08', NULL, '1742883959605010000', '2025-03-25 14:25:59', '2025-03-25 14:27:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742883980606010001', 2, 4, 1, 'ASRS-0333', 'A03-37-03', NULL, '1742883981605010000', '2025-03-25 14:26:21', '2025-03-25 14:27:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884033607010001', 2, 4, 1, 'ASRS-1902', 'A04-36-04', NULL, '1742884034605010000', '2025-03-25 14:27:14', '2025-03-25 14:28:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884035608010001', 2, 4, 1, 'ASRS-1529', 'A01-40-06', NULL, '1742884036604010000', '2025-03-25 14:27:16', '2025-03-25 14:28:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884085610010000', 2, 4, 1, 'ASRS-1027', 'A03-32-09', NULL, '1742884086605010000', '2025-03-25 14:28:06', '2025-03-25 14:29:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884089608010001', 2, 4, 1, 'ASRS-0528', 'A02-39-06', NULL, '1742884090604010000', '2025-03-25 14:28:10', '2025-03-25 14:29:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884236606010001', 2, 4, 1, 'ASRS-0306', 'A01-31-08', NULL, '1742884237605010000', '2025-03-25 14:30:37', '2025-03-25 14:31:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884236607010002', 2, 4, 1, 'ASRS-0316', 'A03-32-03', NULL, '1742884237605010001', '2025-03-25 14:30:37', '2025-03-25 14:31:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884286606010001', 2, 4, 1, 'ASRS-1221', 'A04-32-03', NULL, '1742884287605010000', '2025-03-25 14:31:27', '2025-03-25 14:32:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884296607010001', 2, 4, 1, 'ASRS-0338', 'A02-41-04', NULL, '1742884297604010000', '2025-03-25 14:31:37', '2025-03-25 14:32:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884441609010000', 2, 4, 1, 'ASRS-0519', 'A04-31-08', NULL, '1742884442604010000', '2025-03-25 14:34:02', '2025-03-25 14:34:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884441609010003', 2, 4, 1, 'ASRS-1025', 'A01-29-07', NULL, '1742884442604010001', '2025-03-25 14:34:02', '2025-03-25 14:34:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884556607010001', 2, 4, 1, 'ASRS-0318', 'A01-33-06', NULL, '1742884557604010000', '2025-03-25 14:35:57', '2025-03-25 14:36:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884601607010000', 2, 4, 1, 'ASRS-1031', 'A02-32-11', NULL, '1742884602604010000', '2025-03-25 14:36:42', '2025-03-25 14:37:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884726607010001', 2, 4, 1, 'ASRS-0337', 'A02-32-09', NULL, '1742884727605010000', '2025-03-25 14:38:47', '2025-03-25 14:39:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884726607010004', 2, 4, 1, 'ASRS-1524', 'A03-29-06', NULL, '1742884727605010001', '2025-03-25 14:38:47', '2025-03-25 14:39:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884851607010001', 2, 4, 1, 'ASRS-1088', 'A03-31-06', NULL, '1742884852604010000', '2025-03-25 14:40:52', '2025-03-25 14:41:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742884851607010004', 2, 4, 1, 'ASRS-0522', 'A02-42-03', NULL, '1742884852604010001', '2025-03-25 14:40:52', '2025-03-25 14:41:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885081606010001', 2, 4, 1, 'ASRS-0315', 'A03-36-04', NULL, '1742885082605010000', '2025-03-25 14:44:42', '2025-03-25 14:45:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885081606010004', 2, 4, 1, 'ASRS-0332', 'A02-38-02', NULL, '1742885082605010001', '2025-03-25 14:44:42', '2025-03-25 14:45:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885127611010000', 2, 4, 1, 'ASRS-0313', 'A04-32-08', NULL, '1742885128604010000', '2025-03-25 14:45:28', '2025-03-25 14:46:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885129608010001', 2, 4, 1, 'ASRS-0388', 'A02-37-03', NULL, '1742885130602010000', '2025-03-25 14:45:30', '2025-03-25 14:46:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885178611010001', 2, 4, 1, 'ASRS-0304', 'A04-34-06', NULL, '1742885179605010000', '2025-03-25 14:46:19', '2025-03-25 14:47:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885183609010001', 2, 4, 1, 'ASRS-0520', 'A01-34-06', NULL, '1742885184604010000', '2025-03-25 14:46:24', '2025-03-25 14:47:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885230609010000', 2, 4, 1, 'ASRS-1900', 'A04-38-02', NULL, '1742885231605010000', '2025-03-25 14:47:11', '2025-03-25 14:48:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885235609010000', 2, 4, 1, 'ASRS-0334', 'A02-41-01', NULL, '1742885236605010000', '2025-03-25 14:47:16', '2025-03-25 14:48:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885446608010000', 2, 4, 1, 'ASRS-1436', 'A04-39-01', NULL, '1742885447604010000', '2025-03-25 14:50:47', '2025-03-25 14:51:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885446608010003', 2, 4, 1, 'ASRS-0350', 'A01-39-02', NULL, '1742885447604010001', '2025-03-25 14:50:47', '2025-03-25 14:52:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885534609010001', 2, 4, 1, 'ASRS-0384', 'A02-38-07', NULL, '1742885535602010000', '2025-03-25 14:52:15', '2025-03-25 14:53:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885588608010001', 2, 4, 1, 'ASRS-1027', 'A02-35-09', NULL, '1742885589605010000', '2025-03-25 14:53:09', '2025-03-25 14:54:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885736610010001', 2, 4, 1, 'ASRS-0324', 'A04-29-06', NULL, '1742885737605010000', '2025-03-25 14:55:37', '2025-03-25 14:56:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885736610010004', 2, 4, 1, 'ASRS-0305', 'A01-36-03', NULL, '1742885737606010000', '2025-03-25 14:55:37', '2025-03-25 14:57:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885783610010001', 2, 4, 1, 'ASRS-0340', 'A04-31-05', NULL, '1742885784604010000', '2025-03-25 14:56:24', '2025-03-25 14:57:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885859607010001', 2, 4, 1, 'ASRS-0392', 'A02-39-01', NULL, '1742885860604010000', '2025-03-25 14:57:40', '2025-03-25 14:58:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885861610010001', 2, 4, 1, 'ASRS-0336', 'A04-37-03', NULL, '1742885862605010000', '2025-03-25 14:57:42', '2025-03-25 14:58:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885914609010001', 2, 4, 1, 'ASRS-0517', 'A02-36-09', NULL, '1742885915605010000', '2025-03-25 14:58:35', '2025-03-25 14:59:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885916609010001', 2, 4, 1, 'ASRS-1027', 'A03-37-04', NULL, '1742885917606010000', '2025-03-25 14:58:37', '2025-03-25 14:59:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742885969610010001', 2, 4, 1, 'ASRS-1529', 'A04-36-04', NULL, '1742885970604010000', '2025-03-25 14:59:30', '2025-03-25 15:00:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886201607010001', 2, 4, 1, 'ASRS-0318', 'A01-33-06', NULL, '1742886202605010000', '2025-03-25 15:03:22', '2025-03-25 15:04:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886201607010004', 2, 4, 1, 'ASRS-0383', 'A03-30-11', NULL, '1742886202605010001', '2025-03-25 15:03:22', '2025-03-25 15:04:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886258608010001', 2, 4, 1, 'ASRS-0523', 'A01-41-04', NULL, '1742886259604010000', '2025-03-25 15:04:19', '2025-03-25 15:05:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886339632010001', 2, 4, 9, 'ASRS-1261', 'A01-41-03', NULL, '1742886340605010000', '2025-03-25 15:05:40', '2025-03-25 15:06:34', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886441608010001', 2, 4, 1, 'ASRS-0317', 'A01-35-04', NULL, '1742886442605010000', '2025-03-25 15:07:22', '2025-03-25 15:08:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886441608010004', 2, 4, 1, 'ASRS-1025', 'A04-31-08', NULL, '1742886442606010000', '2025-03-25 15:07:22', '2025-03-25 15:08:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886487610010000', 2, 4, 1, 'ASRS-1902', 'A01-42-02', NULL, '1742886488604010000', '2025-03-25 15:08:08', '2025-03-25 15:09:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886489607010001', 2, 4, 1, 'ASRS-0528', 'A03-32-09', NULL, '1742886490607010000', '2025-03-25 15:08:10', '2025-03-25 15:09:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886566609010000', 2, 4, 1, 'ASRS-1221', 'A02-36-08', NULL, '1742886567604010000', '2025-03-25 15:09:27', '2025-03-25 15:10:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886619609010001', 2, 4, 1, 'ASRS-0519', 'A01-29-07', NULL, '1742886620602010000', '2025-03-25 15:10:20', '2025-03-25 15:11:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886695609010000', 2, 4, 1, 'ASRS-0527', 'A01-37-09', NULL, '1742886696605010000', '2025-03-25 15:11:36', '2025-03-25 15:12:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886866606010001', 2, 4, 1, 'ASRS-0306', 'A03-32-03', NULL, '1742886867605010000', '2025-03-25 15:14:27', '2025-03-25 15:15:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886866606010004', 2, 4, 1, 'ASRS-0316', 'A01-31-08', NULL, '1742886867605010001', '2025-03-25 15:14:27', '2025-03-25 15:15:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742886939606010001', 2, 4, 1, 'ASRS-0338', 'A04-32-03', NULL, '1742886940603010000', '2025-03-25 15:15:40', '2025-03-25 15:16:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887051607010001', 2, 4, 1, 'ASRS-1031', 'A03-34-07', NULL, '1742887052604010000', '2025-03-25 15:17:32', '2025-03-25 15:18:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887426610010000', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1742887427605010000', '2025-03-25 15:23:47', '2025-03-25 15:24:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887426610010003', 2, 4, 1, 'ASRS-0332', 'A03-36-04', NULL, '1742887427606010000', '2025-03-25 15:23:47', '2025-03-25 15:24:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887471610010001', 2, 4, 1, 'ASRS-0313', 'A02-37-03', NULL, '1742887472604010000', '2025-03-25 15:24:32', '2025-03-25 15:25:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887478609010001', 2, 4, 1, 'ASRS-0388', 'A04-32-08', NULL, '1742887479605010000', '2025-03-25 15:24:39', '2025-03-25 15:25:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887524608010001', 2, 4, 1, 'ASRS-0304', 'A02-38-02', NULL, '1742887525604010000', '2025-03-25 15:25:25', '2025-03-25 15:26:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887529609010001', 2, 4, 1, 'ASRS-0520', 'A04-34-06', NULL, '1742887530603010000', '2025-03-25 15:25:30', '2025-03-25 15:26:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887578610010001', 2, 4, 1, 'ASRS-1900', 'A02-41-01', NULL, '1742887579605010000', '2025-03-25 15:26:19', '2025-03-25 15:27:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887581609010001', 2, 4, 1, 'ASRS-0334', 'A04-38-02', NULL, '1742887582605010000', '2025-03-25 15:26:22', '2025-03-25 15:27:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887801609010001', 2, 4, 1, 'ASRS-1436', 'A01-39-02', NULL, '1742887802606010000', '2025-03-25 15:30:02', '2025-03-25 15:31:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887801609010004', 2, 4, 1, 'ASRS-0350', 'A04-39-01', NULL, '1742887802606010001', '2025-03-25 15:30:02', '2025-03-25 15:30:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887886608010001', 2, 4, 1, 'ASRS-0384', 'A02-35-09', NULL, '1742887887605010000', '2025-03-25 15:31:27', '2025-03-25 15:32:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742887939607010001', 2, 4, 1, 'ASRS-1027', 'A02-42-02', NULL, '1742887940604010000', '2025-03-25 15:32:20', '2025-03-25 15:33:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888071609010001', 2, 4, 1, 'ASRS-0324', 'A01-36-03', NULL, '1742888072605010000', '2025-03-25 15:34:32', '2025-03-25 15:35:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888071609010004', 2, 4, 1, 'ASRS-0392', 'A04-31-05', NULL, '1742888072606010000', '2025-03-25 15:34:32', '2025-03-25 15:35:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888116608010001', 2, 4, 1, 'ASRS-0340', 'A04-29-06', NULL, '1742888117605010000', '2025-03-25 15:35:17', '2025-03-25 15:36:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888147608010001', 2, 4, 1, 'ASRS-0305', 'A02-39-01', NULL, '1742888148605010000', '2025-03-25 15:35:48', '2025-03-25 15:36:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888196609010001', 2, 4, 1, 'ASRS-1245', 'A04-38-01', NULL, '1742888197605010000', '2025-03-25 15:36:37', '2025-03-25 15:37:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888201609010001', 2, 4, 1, 'ASRS-0336', 'A02-40-04', NULL, '1742888202605010000', '2025-03-25 15:36:42', '2025-03-25 15:37:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888250609010001', 2, 4, 1, 'ASRS-1027', 'A04-39-01', NULL, '1742888251604010000', '2025-03-25 15:37:31', '2025-03-25 15:38:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888255609010001', 2, 4, 1, 'ASRS-1529', 'A01-36-09', NULL, '1742888256605010000', '2025-03-25 15:37:36', '2025-03-25 15:38:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888431608010001', 2, 4, 1, 'ASRS-0318', 'A01-33-06', NULL, '1742888432605010000', '2025-03-25 15:40:32', '2025-03-25 15:42:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888431608010004', 2, 4, 1, 'ASRS-0383', 'A04-37-03', NULL, '1742888432606010000', '2025-03-25 15:40:32', '2025-03-25 15:41:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888526608010001', 2, 4, 1, 'ASRS-0523', 'A01-41-03', NULL, '1742888527605010000', '2025-03-25 15:42:07', '2025-03-25 15:43:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888691606010001', 2, 4, 1, 'ASRS-0317', 'A01-29-07', NULL, '1742888692605010000', '2025-03-25 15:44:52', '2025-03-25 15:45:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888691607010001', 2, 4, 1, 'ASRS-1221', 'A03-30-11', NULL, '1742888692605010001', '2025-03-25 15:44:52', '2025-03-25 15:45:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888738607010001', 2, 4, 1, 'ASRS-0528', 'A04-31-08', NULL, '1742888739605010000', '2025-03-25 15:45:39', '2025-03-25 15:46:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888747608010001', 2, 4, 1, 'ASRS-1902', 'A01-42-02', NULL, '1742888748605010000', '2025-03-25 15:45:48', '2025-03-25 15:46:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888802608010001', 2, 4, 1, 'ASRS-0519', 'A02-36-08', NULL, '1742888803605010000', '2025-03-25 15:46:43', '2025-03-25 15:47:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888855609010001', 2, 4, 1, 'ASRS-1025', 'A01-35-04', NULL, '1742888856605010000', '2025-03-25 15:47:36', '2025-03-25 15:48:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742888932608010001', 2, 4, 1, 'ASRS-0527', 'A01-41-04', NULL, '1742888933604010000', '2025-03-25 15:48:53', '2025-03-25 15:50:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742889081607010001', 2, 4, 1, 'ASRS-0306', 'A03-32-03', NULL, '1742889082605010000', '2025-03-25 15:51:22', '2025-03-25 15:52:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742889081607010004', 2, 4, 1, 'ASRS-0316', 'A01-31-08', NULL, '1742889082606010000', '2025-03-25 15:51:22', '2025-03-25 15:52:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742889127609010000', 2, 4, 1, 'ASRS-0338', 'A02-34-11', NULL, '1742889128605010000', '2025-03-25 15:52:08', '2025-03-25 15:53:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742889266608010001', 2, 4, 1, 'ASRS-1031', 'A02-35-10', NULL, '1742889267604010000', '2025-03-25 15:54:27', '2025-03-25 15:55:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742889386607010001', 2, 4, 1, 'ASRS-1683', 'A03-35-05', NULL, '1742889387605010000', '2025-03-25 15:56:27', '2025-03-25 15:57:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742948964626010001', 2, 4, 1, 'ASRS-1030', 'A01-42-03', NULL, '1742948965614010000', '2025-03-26 08:29:25', '2025-03-26 08:30:16', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949017613010000', 2, 4, 1, 'ASRS-1031', 'A02-34-11', NULL, '1742949018603010000', '2025-03-26 08:30:18', '2025-03-26 08:31:13', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949074613010001', 2, 4, 1, 'ASRS-0386', 'A01-36-10', NULL, '1742949075605010000', '2025-03-26 08:31:15', '2025-03-26 08:32:11', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949128126010000', 1, 4, 1, 'asrs-1392', 'P2', 'A01-42-03', '1742949153066010000', '2025-03-26 08:32:08', '2025-03-26 10:51:10', '1061791', 4, 0, 'clc', NULL, NULL, 'P2', 'SWITCH GP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949132611010000', 2, 4, 1, 'ASRS-0338', 'A01-41-04', NULL, '1742949133605010000', '2025-03-26 08:32:13', '2025-03-26 08:33:10', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949187396010000', 1, 4, 1, 'asrs-1443', 'P2', 'A03-35-05', '1742949209764010000', '2025-03-26 08:33:07', '2025-03-26 10:51:48', '6E5291', 150, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949218312010000', 1, 4, 1, 'ASRS-0501', 'P2', 'A01-41-04', '1742949240650010000', '2025-03-26 08:33:38', '2025-03-26 10:52:03', '1488356', 16, 0, 'clc', NULL, NULL, 'P2', 'ADAPTER AS-ELBOW'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949294675010000', 1, 4, 1, 'ASRS-1030', 'P2', 'A03-30-11', '1742949319264010000', '2025-03-26 08:34:55', '2025-03-26 10:52:33', '1298222', 15, 0, 'clc', NULL, NULL, 'P2', 'VALVE GP-D RLF-'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949398874010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A02-34-11', '1742949421862010000', '2025-03-26 08:36:39', '2025-03-26 10:52:55', '6E1923', 20, 0, 'clc', NULL, NULL, 'P2', 'TUBE AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949419194010000', 1, 4, 1, 'ASRS-0338', 'P2', 'A03-32-09', '1742949442257010000', '2025-03-26 08:36:59', '2025-03-26 10:53:18', '6V5230', 250, 0, 'clc', NULL, NULL, 'P2', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742949439882010000', 1, 4, 1, 'ASRS-0386', 'P2', 'A02-36-09', '1742949461480010000', '2025-03-26 08:37:20', '2025-03-26 10:53:46', '6J4568', 70, 0, 'clc', NULL, NULL, 'P2', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954086610010001', 2, 4, 1, 'ASRS-1907', 'A02-34-09', NULL, '1742954087605010000', '2025-03-26 09:54:47', '2025-03-26 09:55:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954086614010001', 2, 4, 1, 'ASRS-1436', 'A04-38-02', NULL, '1742954087605010001', '2025-03-26 09:54:47', '2025-03-26 09:55:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954140609010001', 2, 4, 1, 'ASRS-0351', 'A04-35-05', NULL, '1742954141604010000', '2025-03-26 09:55:41', '2025-03-26 09:56:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954142615010001', 2, 4, 1, 'ASRS-0350', 'A01-39-02', NULL, '1742954143604010000', '2025-03-26 09:55:43', '2025-03-26 09:56:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954193606010001', 2, 4, 1, 'ASRS-1900', 'A04-34-06', NULL, '1742954194606010000', '2025-03-26 09:56:34', '2025-03-26 09:57:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954201608010001', 2, 4, 1, 'ASRS-0336', 'A02-42-02', NULL, '1742954202605010000', '2025-03-26 09:56:42', '2025-03-26 09:57:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954245609010000', 2, 4, 1, 'ASRS-1027', 'A04-38-01', NULL, '1742954246605010000', '2025-03-26 09:57:26', '2025-03-26 09:58:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742954262608010001', 2, 4, 1, 'ASRS-1899', 'A01-39-06', NULL, '1742954263605010000', '2025-03-26 09:57:43', '2025-03-26 09:58:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742958496775010000', 1, 4, 1, 'ASRS-0551', 'P2', 'A01-39-02', '1742958518844010000', '2025-03-26 11:08:17', '2025-03-26 11:09:44', '3T8236', 20, 0, '管理员', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742958533641010000', 2, 4, 9, 'asrs-1392', 'A01-42-03', NULL, '1742958534606010000', '2025-03-26 11:08:54', '2025-03-26 11:10:27', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742961862608010001', 2, 4, 1, 'ASRS-0520', 'A02-38-02', NULL, '1742961863605010000', '2025-03-26 12:04:23', '2025-03-26 12:05:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742961920615010001', 2, 4, 1, 'ASRS-0384', 'A02-35-09', NULL, '1742961921604010000', '2025-03-26 12:05:21', '2025-03-26 12:06:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962181607010001', 2, 4, 1, 'ASRS-0335', 'A02-37-07', NULL, '1742962182605010000', '2025-03-26 12:09:42', '2025-03-26 12:10:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962181607010004', 2, 4, 1, 'ASRS-0284', 'A03-31-10', NULL, '1742962182605010001', '2025-03-26 12:09:42', '2025-03-26 12:10:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962227609010001', 2, 4, 1, 'ASRS-0244', 'A03-35-06', NULL, '1742962228604010000', '2025-03-26 12:10:28', '2025-03-26 12:11:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962256610010001', 2, 4, 1, 'ASRS-1026', 'A01-34-11', NULL, '1742962257604010000', '2025-03-26 12:10:57', '2025-03-26 12:12:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962305608010001', 2, 4, 1, 'asrs-1443', 'A03-35-05', NULL, '1742962306605010000', '2025-03-26 12:11:46', '2025-03-26 12:12:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962341609010000', 2, 4, 1, 'ASRS-0528', 'A01-42-02', NULL, '1742962342606010000', '2025-03-26 12:12:22', '2025-03-26 12:13:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962906608010001', 2, 4, 1, 'ASRS-0324', 'A04-29-06', NULL, '1742962907605010000', '2025-03-26 12:21:47', '2025-03-26 12:22:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962906609010001', 2, 4, 1, 'ASRS-0521', 'A01-37-08', NULL, '1742962907605010001', '2025-03-26 12:21:47', '2025-03-26 12:22:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962951608010001', 2, 4, 1, 'ASRS-1027', 'A04-34-06', NULL, '1742962952605010000', '2025-03-26 12:22:32', '2025-03-26 12:23:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742962954609010001', 2, 4, 1, 'ASRS-1900', 'A02-42-02', NULL, '1742962955604010000', '2025-03-26 12:22:35', '2025-03-26 12:23:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963039612010001', 2, 4, 1, 'ASRS-1189', 'A01-33-10', NULL, '1742963040602010000', '2025-03-26 12:24:00', '2025-03-26 12:24:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963095610010001', 2, 4, 1, 'ASRS-0334', 'A02-41-01', NULL, '1742963096604010000', '2025-03-26 12:24:56', '2025-03-26 12:25:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963155608010001', 2, 4, 1, 'ASRS-0384', 'A01-42-03', NULL, '1742963156606010000', '2025-03-26 12:25:56', '2025-03-26 12:26:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963621608010001', 2, 4, 1, 'ASRS-1713', 'A02-38-06', NULL, '1742963622606010000', '2025-03-26 12:33:42', '2025-03-26 12:34:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963621608010004', 2, 4, 1, 'ASRS-1249', 'A03-33-08', NULL, '1742963622606010001', '2025-03-26 12:33:42', '2025-03-26 12:34:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742963673609010001', 2, 4, 1, 'ASRS-0385', 'A03-36-05', NULL, '1742963674604010000', '2025-03-26 12:34:34', '2025-03-26 12:35:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964031608010001', 2, 4, 1, 'ASRS-1023', 'A01-38-07', NULL, '1742964032604010000', '2025-03-26 12:40:32', '2025-03-26 12:41:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964098608010001', 2, 4, 1, 'ASRS-0270', 'A01-40-05', NULL, '1742964099606010000', '2025-03-26 12:41:39', '2025-03-26 12:42:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964202332010000', 1, 4, 1, 'ASRS-0301', 'P3', 'A01-40-05', '1742964284284010000', '2025-03-26 12:43:22', '2025-03-26 12:46:24', '1061791', 3, 0, '管理员', NULL, NULL, 'P3', 'SWITCH GP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964336607010001', 2, 4, 1, 'ASRS-0545', 'A02-39-05', NULL, '1742964337605010000', '2025-03-26 12:45:37', '2025-03-26 12:47:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964336607010004', 2, 4, 1, 'ASRS-0525', 'A03-38-03', NULL, '1742964337605010001', '2025-03-26 12:45:37', '2025-03-26 12:46:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964426609010001', 2, 4, 1, 'ASRS-1528', 'A02-41-03', NULL, '1742964427605010000', '2025-03-26 12:47:07', '2025-03-26 12:48:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964507607010001', 2, 4, 1, 'ASRS-1026', 'A01-34-11', NULL, '1742964508605010000', '2025-03-26 12:48:28', '2025-03-26 12:49:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742964563609010001', 2, 4, 1, 'ASRS-0342', 'A01-35-10', NULL, '1742964564606010000', '2025-03-26 12:49:24', '2025-03-26 12:50:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742965542610010001', 2, 4, 1, 'ASRS-0385', 'A04-29-06', NULL, '1742965543605010000', '2025-03-26 13:05:43', '2025-03-26 13:06:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742965981607010001', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1742965982605010000', '2025-03-26 13:13:02', '2025-03-26 13:13:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742965981607010004', 2, 4, 1, 'ASRS-0332', 'A04-32-03', NULL, '1742965982605010001', '2025-03-26 13:13:02', '2025-03-26 13:13:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966028607010000', 2, 4, 1, 'ASRS-0313', 'A02-37-03', NULL, '1742966029604010000', '2025-03-26 13:13:49', '2025-03-26 13:14:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966032608010001', 2, 4, 1, 'ASRS-0304', 'A04-32-08', NULL, '1742966033605010000', '2025-03-26 13:13:53', '2025-03-26 13:14:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966083609010000', 2, 4, 1, 'ASRS-0388', 'A03-36-04', NULL, '1742966084604010000', '2025-03-26 13:14:44', '2025-03-26 13:15:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966085608010001', 2, 4, 1, 'ASRS-0350', 'A02-35-09', NULL, '1742966086606010000', '2025-03-26 13:14:46', '2025-03-26 13:15:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966142610010001', 2, 4, 1, 'ASRS-0520', 'A01-39-06', NULL, '1742966143604010000', '2025-03-26 13:15:43', '2025-03-26 13:17:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966226607010001', 2, 4, 1, 'ASRS-0334', 'A02-38-07', NULL, '1742966227605010000', '2025-03-26 13:17:07', '2025-03-26 13:18:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966308607010001', 2, 4, 1, 'ASRS-1436', 'A02-34-09', NULL, '1742966309605010000', '2025-03-26 13:18:29', '2025-03-26 13:19:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966441607010001', 2, 4, 1, 'ASRS-0324', 'A02-41-01', NULL, '1742966442605010000', '2025-03-26 13:20:42', '2025-03-26 13:21:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966441608010001', 2, 4, 1, 'ASRS-0305', 'A04-31-05', NULL, '1742966442605010001', '2025-03-26 13:20:42', '2025-03-26 13:21:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966490606010001', 2, 4, 1, 'ASRS-0340', 'A02-39-01', NULL, '1742966491605010000', '2025-03-26 13:21:31', '2025-03-26 13:22:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966572606010001', 2, 4, 1, 'ASRS-1027', 'A02-42-02', NULL, '1742966573604010000', '2025-03-26 13:22:53', '2025-03-26 13:23:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966632609010001', 2, 4, 1, 'ASRS-1529', 'A01-36-09', NULL, '1742966633604010000', '2025-03-26 13:23:53', '2025-03-26 13:25:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966715608010001', 2, 4, 1, 'ASRS-1032', 'A01-32-11', NULL, '1742966716608010000', '2025-03-26 13:25:16', '2025-03-26 13:26:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966896605010001', 2, 4, 1, 'ASRS-0306', 'A01-31-08', NULL, '1742966897604010000', '2025-03-26 13:28:17', '2025-03-26 13:29:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966896605010004', 2, 4, 1, 'ASRS-1902', 'A04-37-03', NULL, '1742966897604010001', '2025-03-26 13:28:17', '2025-03-26 13:29:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966944607010001', 2, 4, 1, 'ASRS-1526', 'A03-37-03', NULL, '1742966945604010000', '2025-03-26 13:29:05', '2025-03-26 13:30:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742966980606010001', 2, 4, 1, 'ASRS-0333', 'A02-33-10', NULL, '1742966981604010000', '2025-03-26 13:29:41', '2025-03-26 13:30:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967036607010001', 2, 4, 1, 'ASRS-0392', 'A01-36-03', NULL, '1742967037604010000', '2025-03-26 13:30:37', '2025-03-26 13:31:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967093606010001', 2, 4, 1, 'ASRS-1221', 'A01-29-07', NULL, '1742967094604010000', '2025-03-26 13:31:34', '2025-03-26 13:32:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967170607010001', 2, 4, 1, 'ASRS-0528', 'A02-37-08', NULL, '1742967171605010000', '2025-03-26 13:32:51', '2025-03-26 13:34:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967331608010001', 2, 4, 1, 'ASRS-0519', 'A01-35-04', NULL, '1742967332605010000', '2025-03-26 13:35:32', '2025-03-26 13:37:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967331608010004', 2, 4, 1, 'ASRS-1025', 'A04-39-01', NULL, '1742967332605010001', '2025-03-26 13:35:32', '2025-03-26 13:36:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967491608010001', 2, 4, 1, 'ASRS-0316', 'A03-32-03', NULL, '1742967492604010000', '2025-03-26 13:38:12', '2025-03-26 13:38:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967491608010004', 2, 4, 1, 'ASRS-1031', 'A02-34-11', NULL, '1742967492604010001', '2025-03-26 13:38:12', '2025-03-26 13:39:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967537607010001', 2, 4, 1, 'ASRS-0338', 'A03-32-09', NULL, '1742967538605010000', '2025-03-26 13:38:58', '2025-03-26 13:40:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967711606010001', 2, 4, 1, 'ASRS-0337', 'A03-29-06', NULL, '1742967712605010000', '2025-03-26 13:41:52', '2025-03-26 13:42:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967711607010001', 2, 4, 1, 'ASRS-0501', 'A01-41-04', NULL, '1742967712605010001', '2025-03-26 13:41:52', '2025-03-26 13:42:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967871607010001', 2, 4, 1, 'ASRS-1524', 'A02-32-09', NULL, '1742967872604010000', '2025-03-26 13:44:32', '2025-03-26 13:45:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742967871607010004', 2, 4, 1, 'ASRS-0522', 'A03-31-06', NULL, '1742967872604010001', '2025-03-26 13:44:32', '2025-03-26 13:45:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968006607010001', 2, 4, 1, 'ASRS-1088', 'A02-32-11', NULL, '1742968007604010000', '2025-03-26 13:46:47', '2025-03-26 13:47:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968276607010001', 2, 4, 1, 'ASRS-1907', 'A04-38-01', NULL, '1742968277605010000', '2025-03-26 13:51:17', '2025-03-26 13:52:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968276608010001', 2, 4, 1, 'ASRS-0351', 'A02-38-02', NULL, '1742968277605010001', '2025-03-26 13:51:17', '2025-03-26 13:52:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968324608010001', 2, 4, 1, 'ASRS-0350', 'A03-36-04', NULL, '1742968325605010000', '2025-03-26 13:52:05', '2025-03-26 13:52:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968326608010001', 2, 4, 1, 'ASRS-1900', 'A01-37-08', NULL, '1742968327604010000', '2025-03-26 13:52:07', '2025-03-26 13:53:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968377610010001', 2, 4, 1, 'ASRS-0336', 'A04-35-05', NULL, '1742968378606010000', '2025-03-26 13:52:58', '2025-03-26 13:53:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968384610010001', 2, 4, 1, 'ASRS-0520', 'A01-39-06', NULL, '1742968385605010000', '2025-03-26 13:53:05', '2025-03-26 13:54:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968429611010001', 2, 4, 1, 'ASRS-1899', 'A04-38-02', NULL, '1742968430602010000', '2025-03-26 13:53:50', '2025-03-26 13:54:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968443607010001', 2, 4, 1, 'ASRS-0384', 'A02-39-06', NULL, '1742968444605010000', '2025-03-26 13:54:04', '2025-03-26 13:55:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968501608010001', 2, 4, 1, 'ASRS-1027', 'A02-41-01', NULL, '1742968502605010000', '2025-03-26 13:55:02', '2025-03-26 13:56:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968561610010001', 2, 4, 1, 'ASRS-1436', 'A02-34-09', NULL, '1742968562604010000', '2025-03-26 13:56:02', '2025-03-26 13:57:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968706606010001', 2, 4, 1, 'ASRS-0324', 'A02-39-01', NULL, '1742968707604010000', '2025-03-26 13:58:27', '2025-03-26 13:59:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968706606010004', 2, 4, 1, 'ASRS-1900', 'A03-36-04', NULL, '1742968707604010001', '2025-03-26 13:58:27', '2025-03-26 13:59:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968760607010001', 2, 4, 1, 'ASRS-0334', 'A04-32-08', NULL, '1742968761604010000', '2025-03-26 13:59:21', '2025-03-26 14:00:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968777606010001', 2, 4, 1, 'ASRS-0521', 'A01-33-10', NULL, '1742968778604010000', '2025-03-26 13:59:38', '2025-03-26 14:00:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968834609010001', 2, 4, 1, 'ASRS-1027', 'A04-38-02', NULL, '1742968835605010000', '2025-03-26 14:00:35', '2025-03-26 14:01:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968860608010001', 2, 4, 1, 'ASRS-1189', 'A01-42-03', NULL, '1742968861605010000', '2025-03-26 14:01:01', '2025-03-26 14:02:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742968944606010001', 2, 4, 1, 'ASRS-0384', 'A01-39-06', NULL, '1742968945605010000', '2025-03-26 14:02:25', '2025-03-26 14:03:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969091606010001', 2, 4, 1, 'ASRS-0335', 'A02-37-07', NULL, '1742969092605010000', '2025-03-26 14:04:52', '2025-03-26 14:06:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969091606010004', 2, 4, 1, 'ASRS-0244', 'A03-35-05', NULL, '1742969092605010001', '2025-03-26 14:04:52', '2025-03-26 14:05:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969145610010001', 2, 4, 1, 'ASRS-0528', 'A03-34-07', NULL, '1742969146604010000', '2025-03-26 14:05:46', '2025-03-26 14:07:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969161607010001', 2, 4, 1, 'ASRS-1026', 'A01-35-10', NULL, '1742969162605010000', '2025-03-26 14:06:02', '2025-03-26 14:06:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969218608010001', 2, 4, 1, 'ASRS-0284', 'A01-42-02', NULL, '1742969219604010000', '2025-03-26 14:06:59', '2025-03-26 14:07:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969222608010000', 2, 4, 1, 'asrs-1443', 'A03-31-10', NULL, '1742969223605010000', '2025-03-26 14:07:03', '2025-03-26 14:07:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969336609010001', 2, 4, 1, 'ASRS-0349', 'A04-31-09', NULL, '1742969337605010000', '2025-03-26 14:08:57', '2025-03-26 14:10:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969336609010004', 2, 4, 1, 'ASRS-1713', 'A02-40-05', NULL, '1742969337605010001', '2025-03-26 14:08:57', '2025-03-26 14:10:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969414607010000', 2, 4, 1, 'ASRS-1249', 'A02-38-06', NULL, '1742969415603010000', '2025-03-26 14:10:15', '2025-03-26 14:11:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969473607010001', 2, 4, 1, 'ASRS-0385', 'A01-35-11', NULL, '1742969474604010000', '2025-03-26 14:11:14', '2025-03-26 14:12:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969691608010001', 2, 4, 1, 'ASRS-1023', 'A01-38-07', NULL, '1742969692606010000', '2025-03-26 14:14:52', '2025-03-26 14:15:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969749608010000', 2, 4, 1, 'ASRS-0270', 'A02-41-04', NULL, '1742969750603010000', '2025-03-26 14:15:50', '2025-03-26 14:16:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969871607010001', 2, 4, 1, 'ASRS-0545', 'A02-41-03', NULL, '1742969872605010000', '2025-03-26 14:17:52', '2025-03-26 14:18:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969871607010004', 2, 4, 1, 'ASRS-1026', 'A03-31-10', NULL, '1742969872605010001', '2025-03-26 14:17:52', '2025-03-26 14:19:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969930608010001', 2, 4, 1, 'ASRS-1528', 'A01-34-11', NULL, '1742969931605010000', '2025-03-26 14:18:51', '2025-03-26 14:19:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969945608010001', 2, 4, 1, 'ASRS-0385', 'A03-37-04', NULL, '1742969946605010000', '2025-03-26 14:19:06', '2025-03-26 14:20:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742969985607010001', 2, 4, 1, 'ASRS-0342', 'A02-42-03', NULL, '1742969986605010000', '2025-03-26 14:19:46', '2025-03-26 14:20:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970045609010001', 2, 4, 1, 'ASRS-0525', 'A02-39-05', NULL, '1742970046605010000', '2025-03-26 14:20:46', '2025-03-26 14:21:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970381608010001', 2, 4, 1, 'ASRS-1907', 'A02-38-02', NULL, '1742970382605010000', '2025-03-26 14:26:22', '2025-03-26 14:27:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970381608010004', 2, 4, 1, 'ASRS-0351', 'A04-38-01', NULL, '1742970382605010001', '2025-03-26 14:26:22', '2025-03-26 14:27:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970429606010001', 2, 4, 1, 'ASRS-1900', 'A03-36-04', NULL, '1742970430604010000', '2025-03-26 14:27:10', '2025-03-26 14:28:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970439606010001', 2, 4, 1, 'ASRS-0350', 'A01-37-08', NULL, '1742970440605010000', '2025-03-26 14:27:20', '2025-03-26 14:28:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970481608010001', 2, 4, 1, 'ASRS-1899', 'A03-32-09', NULL, '1742970482604010000', '2025-03-26 14:28:02', '2025-03-26 14:28:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970497609010001', 2, 4, 1, 'ASRS-0336', 'A02-41-01', NULL, '1742970498606010000', '2025-03-26 14:28:18', '2025-03-26 14:29:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970532606010001', 2, 4, 1, 'ASRS-0520', 'A04-35-05', NULL, '1742970533605010000', '2025-03-26 14:28:53', '2025-03-26 14:29:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970556608010001', 2, 4, 1, 'ASRS-1027', 'A01-42-03', NULL, '1742970557607010000', '2025-03-26 14:29:17', '2025-03-26 14:30:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970585607010001', 2, 4, 1, 'ASRS-0384', 'A03-35-06', NULL, '1742970586605010000', '2025-03-26 14:29:46', '2025-03-26 14:31:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970616608010001', 2, 4, 1, 'ASRS-1436', 'A02-34-09', NULL, '1742970617605010000', '2025-03-26 14:30:17', '2025-03-26 14:31:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970736607010001', 2, 4, 1, 'ASRS-0324', 'A02-39-01', NULL, '1742970737605010000', '2025-03-26 14:32:17', '2025-03-26 14:33:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970736608010001', 2, 4, 1, 'ASRS-1189', 'A04-38-02', NULL, '1742970737605010001', '2025-03-26 14:32:17', '2025-03-26 14:33:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970790607010001', 2, 4, 1, 'ASRS-1900', 'A03-32-09', NULL, '1742970791604010000', '2025-03-26 14:33:11', '2025-03-26 14:34:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970795606010001', 2, 4, 1, 'ASRS-0521', 'A01-33-10', NULL, '1742970796605010000', '2025-03-26 14:33:16', '2025-03-26 14:34:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742970868610010001', 2, 4, 1, 'ASRS-0334', 'A04-32-08', NULL, '1742970869605010000', '2025-03-26 14:34:29', '2025-03-26 14:35:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742971027608010001', 2, 4, 1, 'ASRS-0384', 'A04-33-08', NULL, '1742971028605010000', '2025-03-26 14:37:08', '2025-03-26 14:38:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742971762608010001', 2, 4, 1, 'ASRS-1027', 'A02-41-01', NULL, '1742971763604010000', '2025-03-26 14:49:23', '2025-03-26 14:50:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972041608010001', 2, 4, 1, 'ASRS-0335', 'A03-35-05', NULL, '1742972042604010000', '2025-03-26 14:54:02', '2025-03-26 14:54:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972041608010004', 2, 4, 1, 'ASRS-0244', 'A02-37-07', NULL, '1742972042604010001', '2025-03-26 14:54:02', '2025-03-26 14:54:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972086607010001', 2, 4, 1, 'ASRS-1026', 'A03-37-04', NULL, '1742972087604010000', '2025-03-26 14:54:47', '2025-03-26 14:55:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972089608010001', 2, 4, 1, 'ASRS-0528', 'A01-42-02', NULL, '1742972090604010000', '2025-03-26 14:54:50', '2025-03-26 14:56:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972138608010001', 2, 4, 1, 'ASRS-0284', 'A03-34-07', NULL, '1742972139605010000', '2025-03-26 14:55:39', '2025-03-26 14:56:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972171608010001', 2, 4, 1, 'asrs-1443', 'A01-35-10', NULL, '1742972172605010000', '2025-03-26 14:56:12', '2025-03-26 14:57:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972291607010001', 2, 4, 1, 'ASRS-0349', 'A04-31-09', NULL, '1742972292604010000', '2025-03-26 14:58:12', '2025-03-26 14:58:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972291607010004', 2, 4, 1, 'ASRS-1713', 'A02-38-06', NULL, '1742972292604010001', '2025-03-26 14:58:12', '2025-03-26 14:59:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972335609010001', 2, 4, 1, 'ASRS-1249', 'A03-36-05', NULL, '1742972336605010000', '2025-03-26 14:58:56', '2025-03-26 15:00:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972412608010001', 2, 4, 1, 'ASRS-0385', 'A04-30-11', NULL, '1742972413605010000', '2025-03-26 15:00:13', '2025-03-26 15:01:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972551607010001', 2, 4, 1, 'ASRS-1030', 'A03-30-11', NULL, '1742972552605010000', '2025-03-26 15:02:32', '2025-03-26 15:03:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972676607010001', 2, 4, 1, 'ASRS-0545', 'A03-31-10', NULL, '1742972677604010000', '2025-03-26 15:04:37', '2025-03-26 15:05:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972676607010004', 2, 4, 1, 'ASRS-1528', 'A02-39-05', NULL, '1742972677604010001', '2025-03-26 15:04:37', '2025-03-26 15:05:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972724608010001', 2, 4, 1, 'ASRS-0525', 'A02-41-03', NULL, '1742972725602010000', '2025-03-26 15:05:25', '2025-03-26 15:06:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972726607010001', 2, 4, 1, 'ASRS-1026', 'A03-35-05', NULL, '1742972727605010000', '2025-03-26 15:05:27', '2025-03-26 15:06:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972802607010001', 2, 4, 1, 'ASRS-0342', 'A04-31-10', NULL, '1742972803604010000', '2025-03-26 15:06:43', '2025-03-26 15:07:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742972852608010001', 2, 4, 1, 'ASRS-0385', 'A03-37-04', NULL, '1742972853604010000', '2025-03-26 15:07:33', '2025-03-26 15:08:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742973551612010001', 2, 4, 1, 'ASRS-1528', 'A03-31-10', NULL, '1742973552604010000', '2025-03-26 15:19:12', '2025-03-26 15:19:53', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742973728237010000', 1, 4, 1, 'ASRS-1528', 'P2', 'A03-31-10', '1742973755655010000', '2025-03-26 15:22:08', '2025-03-26 15:23:23', '8C3206', 140, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974211610010001', 2, 4, 1, 'ASRS-1907', 'A03-36-04', NULL, '1742974212604010000', '2025-03-26 15:30:12', '2025-03-26 15:30:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974211611010002', 2, 4, 1, 'ASRS-0336', 'A02-38-02', NULL, '1742974212604010001', '2025-03-26 15:30:12', '2025-03-26 15:31:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974257608010001', 2, 4, 1, 'ASRS-0350', 'A04-35-05', NULL, '1742974258604010000', '2025-03-26 15:30:58', '2025-03-26 15:31:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974261609010001', 2, 4, 1, 'ASRS-1900', 'A02-39-01', NULL, '1742974262605010000', '2025-03-26 15:31:02', '2025-03-26 15:31:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974309609010001', 2, 4, 1, 'ASRS-0351', 'A04-38-01', NULL, '1742974310602010000', '2025-03-26 15:31:50', '2025-03-26 15:32:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974320607010001', 2, 4, 1, 'ASRS-1027', 'A02-41-01', NULL, '1742974321605010000', '2025-03-26 15:32:01', '2025-03-26 15:32:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974363608010001', 2, 4, 1, 'ASRS-1899', 'A04-32-09', NULL, '1742974364606010000', '2025-03-26 15:32:44', '2025-03-26 15:33:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974414609010000', 2, 4, 1, 'ASRS-0520', 'A03-35-06', NULL, '1742974415605010000', '2025-03-26 15:33:35', '2025-03-26 15:34:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974493607010001', 2, 4, 1, 'ASRS-0384', 'A04-33-08', NULL, '1742974494605010000', '2025-03-26 15:34:54', '2025-03-26 15:36:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974572608010001', 2, 4, 1, 'ASRS-1436', 'A04-34-07', NULL, '1742974573605010000', '2025-03-26 15:36:13', '2025-03-26 15:37:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974781610010001', 2, 4, 1, 'ASRS-0324', 'A03-32-09', NULL, '1742974782604010000', '2025-03-26 15:39:42', '2025-03-26 15:40:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974781611010001', 2, 4, 1, 'ASRS-1900', 'A02-41-01', NULL, '1742974782604010001', '2025-03-26 15:39:42', '2025-03-26 15:40:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974830609010001', 2, 4, 1, 'ASRS-0384', 'A01-37-08', NULL, '1742974831605010000', '2025-03-26 15:40:31', '2025-03-26 15:41:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974832608010001', 2, 4, 1, 'ASRS-0521', 'A04-35-06', NULL, '1742974833604010000', '2025-03-26 15:40:33', '2025-03-26 15:41:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974883609010001', 2, 4, 1, 'ASRS-1189', 'A04-38-02', NULL, '1742974884604010000', '2025-03-26 15:41:24', '2025-03-26 15:42:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974911610010001', 2, 4, 1, 'ASRS-1027', 'A01-34-11', NULL, '1742974912606010000', '2025-03-26 15:41:52', '2025-03-26 15:42:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1742974936609010001', 2, 4, 1, 'ASRS-0334', 'A04-32-08', NULL, '1742974937605010000', '2025-03-26 15:42:17', '2025-03-26 15:43:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743038482607010001', 2, 4, 1, 'ASRS-1900', 'A04-32-08', NULL, '1743038483605010000', '2025-03-27 09:21:23', '2025-03-27 09:22:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743038523607010001', 2, 4, 1, 'ASRS-0521', 'A01-34-11', NULL, '1743038524605010000', '2025-03-27 09:22:04', '2025-03-27 09:23:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124775603010001', 2, 4, 1, 'ASRS-1436', 'A01-38-07', NULL, '1743124776604010000', '2025-03-28 09:19:36', '2025-03-28 09:20:23', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124775603010003', 2, 4, 1, 'ASRS-1528', 'A03-31-10', NULL, '1743124776605010000', '2025-03-28 09:19:36', '2025-03-28 09:20:18', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124819611010000', 2, 4, 1, 'ASRS-1531', 'A03-38-01', NULL, '1743124820603010000', '2025-03-28 09:20:20', '2025-03-28 09:21:11', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124824613010001', 2, 4, 1, 'ASRS-1683', 'A02-35-10', NULL, '1743124825605010000', '2025-03-28 09:20:25', '2025-03-28 09:21:19', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124872625010001', 2, 4, 1, 'ASRS-1031', 'A03-32-03', NULL, '1743124873605010000', '2025-03-28 09:21:13', '2025-03-28 09:22:01', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124880610010000', 2, 4, 1, 'ASRS-0386', 'A02-36-09', NULL, '1743124881613010000', '2025-03-28 09:21:21', '2025-03-28 09:22:16', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124922612010001', 2, 4, 9, 'ASRS-0271', 'A03-31-04', NULL, '1743124923608010000', '2025-03-28 09:22:03', '2025-03-28 09:22:52', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124937610010001', 2, 4, 9, 'ASRS-0299', 'A01-39-07', NULL, '1743124938605010000', '2025-03-28 09:22:18', '2025-03-28 09:23:15', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124973610010001', 2, 4, 9, 'ASRS-0297', 'A04-31-04', NULL, '1743124974608010000', '2025-03-28 09:22:54', '2025-03-28 09:23:43', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743124994331010000', 1, 4, 1, 'ASRS-1528', 'P2', 'A01-38-07', '1743125019414010000', '2025-03-28 09:23:14', '2025-03-28 09:24:34', '8C3206', 70, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125024625010001', 2, 4, 9, 'ASRS-0250', 'A03-35-04', NULL, '1743125025604010000', '2025-03-28 09:23:45', '2025-03-28 09:24:36', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125086644010000', 1, 4, 1, 'ASRS-1436', 'P2', 'A01-42-03', '1743125111811010000', '2025-03-28 09:24:47', '2025-03-28 09:26:18', '9S4183', 120, 0, 'clc', NULL, NULL, 'P2', 'Plug-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125210340010000', 1, 4, 1, 'ASRS-0386', 'P2', 'A02-36-09', '1743125232424010000', '2025-03-28 09:26:50', '2025-03-28 09:28:51', '6J4568', 70, 0, 'clc', NULL, NULL, 'P2', 'BOOT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125246238010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A04-31-04', '1743125267827010000', '2025-03-28 09:27:26', '2025-03-28 09:28:43', '6E1923', 40, 0, 'clc', NULL, NULL, 'P2', 'TUBE AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125266754010000', 1, 4, 1, 'ASRS-1683', 'P2', 'A02-37-08', '1743125287925010000', '2025-03-28 09:27:47', '2025-03-28 09:29:42', '6V0852', 100, 0, 'clc', NULL, NULL, 'P2', 'CAP-DUST'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125289563010000', 1, 4, 1, 'ASRS-1531', 'P2', 'A03-35-04', '1743125312519010000', '2025-03-28 09:28:10', '2025-03-28 09:29:29', '2521631', 200, 0, 'clc', NULL, NULL, 'P2', 'PLUG AS.'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125303378010000', 1, 4, 1, 'ASRS-0348', 'P2', 'A03-38-01', '1743125324523010000', '2025-03-28 09:28:23', '2025-03-28 09:30:15', '4681134', 17, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125321562010000', 1, 4, 1, 'ASRS-1254', 'P2', 'A02-38-07', '1743125343128010000', '2025-03-28 09:28:42', '2025-03-28 09:30:34', '8C3206', 70, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125338243010000', 1, 4, 1, 'ASRS-1258', 'P2', 'A02-39-06', '1743125359300010000', '2025-03-28 09:28:58', '2025-03-28 09:31:26', '4829841', 100, 0, 'clc', NULL, NULL, 'P2', 'RING-BACKUP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125351347010000', 1, 4, 1, 'ASRS-1250', 'P2', 'A03-31-10', '1743125373122010000', '2025-03-28 09:29:11', '2025-03-28 09:31:01', '3603690', 50, 0, 'clc', NULL, NULL, 'P2', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125364787010000', 1, 4, 1, 'ASRS-1667', 'P2', 'A02-40-05', '1743125386910010000', '2025-03-28 09:29:25', '2025-03-28 09:32:19', '1P4578', 50, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125378082010000', 1, 4, 1, 'ASRS-1592', 'P2', 'A03-35-06', '1743125409409010000', '2025-03-28 09:29:38', '2025-03-28 09:31:47', '4J0522', 400, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125393043010000', 1, 4, 1, 'ASRS-1222', 'P2', 'A02-41-04', '1743125414528010000', '2025-03-28 09:29:53', '2025-03-28 09:33:12', '4681135', 14, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125406147010000', 1, 4, 1, 'ASRS-0378', 'P2', 'A04-31-10', '1743125428313010000', '2025-03-28 09:30:06', '2025-03-28 09:32:31', '2N7029', 50, 0, 'clc', NULL, NULL, 'P2', 'SPRING-CONT PIN'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125420122010000', 1, 4, 1, 'ASRS-1220', 'P2', 'A02-42-03', '1743125442113010000', '2025-03-28 09:30:20', '2025-03-28 09:34:06', '4M8239', 60, 0, 'clc', NULL, NULL, 'P2', 'COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125433731010000', 1, 4, 1, 'ASRS-1259', 'P2', 'A04-32-09', '1743125455910010000', '2025-03-28 09:30:34', '2025-03-28 09:33:16', '9S8005', 200, 0, 'clc', NULL, NULL, 'P2', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125450027010000', 1, 4, 1, 'ASRS-1219', 'P2', 'A04-33-08', '1743125470924010000', '2025-03-28 09:30:50', '2025-03-28 09:34:01', '4681133', 25, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125464310010000', 1, 4, 1, 'ASRS-1223', 'P2', 'A01-35-11', '1743125485613010000', '2025-03-28 09:31:04', '2025-03-28 09:35:27', '9L9068', 300, 0, 'clc', NULL, NULL, 'P2', 'DOWEL'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125478867010000', 1, 4, 1, 'ASRS-1244', 'P2', 'A01-36-10', '1743125501809010000', '2025-03-28 09:31:19', '2025-03-28 09:36:50', '5H4020', 100, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125535450010000', 1, 4, 1, 'ASRS-1271', 'P2', 'A04-34-07', '1743125556728010000', '2025-03-28 09:32:15', '2025-03-28 09:35:20', '7X5308', 100, 0, 'clc', NULL, NULL, 'P2', 'CAP-DUST'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125547130010000', 1, 4, 1, 'ASRS-1660', 'P2', 'A04-35-06', '1743125568422010000', '2025-03-28 09:32:27', '2025-03-28 09:36:37', '2608590', 80, 0, 'clc', NULL, NULL, 'P2', 'VALVE GP-SHTL -B'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125564842010000', 1, 4, 1, 'ASRS-1268', 'P2', 'A01-37-09', '1743125587331010000', '2025-03-28 09:32:45', '2025-03-28 09:38:09', '8T8987', 10, 0, 'clc', NULL, NULL, 'P2', 'ADPTR-ELB 90 DEG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125601612010001', 2, 4, 1, 'ASRS-0301', 'A01-40-05', NULL, '1743125602605010000', '2025-03-28 09:33:22', '2025-03-28 09:34:48', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125601613010001', 2, 4, 1, 'ASRS-0384', 'A04-38-02', NULL, '1743125602605010001', '2025-03-28 09:33:22', '2025-03-28 09:34:42', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125683609010001', 2, 4, 1, 'ASRS-0501', 'A03-29-06', NULL, '1743125684605010000', '2025-03-28 09:34:44', '2025-03-28 09:35:58', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125689615010001', 2, 4, 1, 'ASRS-0525', 'A02-39-05', NULL, '1743125690604010000', '2025-03-28 09:34:50', '2025-03-28 09:36:10', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125771611010001', 2, 4, 1, 'ASRS-0313', 'A02-35-09', NULL, '1743125772605010000', '2025-03-28 09:36:12', '2025-03-28 09:37:29', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125848885010000', 1, 4, 1, 'ASRS-0384', 'P2', 'A03-29-06', '1743125870812010000', '2025-03-28 09:37:29', '2025-03-28 09:38:46', '9S4185', 250, 0, 'clc', NULL, NULL, 'P2', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125904188010000', 1, 4, 1, 'ASRS-0525', 'P2', 'A02-35-09', '1743125927226010000', '2025-03-28 09:38:24', '2025-03-28 09:39:52', '5H4019', 150, 0, 'clc', NULL, NULL, 'P2', 'COVER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125948382010000', 1, 4, 1, 'ASRS-0501', 'P2', 'A04-38-02', '1743125974613010000', '2025-03-28 09:39:08', '2025-03-28 09:40:31', '1488356', 16, 0, 'clc', NULL, NULL, 'P2', 'ADAPTER AS-ELBOW'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743125995830010000', 1, 4, 1, 'ASRS-0313', 'P2', 'A02-39-05', '1743126017834010000', '2025-03-28 09:39:56', '2025-03-28 09:41:23', '9S4189', 75, 0, 'clc', NULL, NULL, 'P2', 'PLUG-EXT HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126011117010000', 1, 4, 1, 'ASRS-0017', 'P2', 'A04-36-05', '1743126032232010000', '2025-03-28 09:40:11', '2025-03-28 09:41:29', '7X5315', 100, 0, 'clc', NULL, NULL, 'P2', 'COUPLING-QDISC'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126023182010000', 1, 4, 1, 'ASRS-1885', 'P2', 'A01-40-05', '1743126046028010000', '2025-03-28 09:40:23', '2025-03-28 09:42:15', '6Y4638', 60, 0, 'clc', NULL, NULL, 'P2', 'PLUG-LD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126036022010000', 1, 4, 1, 'ASRS-1630', 'P2', 'A04-37-04', '1743126057711010000', '2025-03-28 09:40:36', '2025-03-28 09:42:17', '9S8004', 600, 0, 'clc', NULL, NULL, 'P2', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126053982010000', 1, 4, 1, 'ASRS-0999', 'P2', 'A01-39-07', '1743126076916010000', '2025-03-28 09:40:54', '2025-03-28 09:43:07', '3603692', 300, 0, 'clc', NULL, NULL, 'P2', 'PLUG-HD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126084303010000', 1, 4, 1, 'ASRS-0523', 'P2', 'A04-38-03', '1743126105413010000', '2025-03-28 09:41:24', '2025-03-28 09:43:02', '2828827', 500, 0, 'clc', NULL, NULL, 'P2', 'PLUG-EXPANSION'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126097518010000', 1, 4, 1, 'ASRS-0347', 'P2', 'A01-40-06', '1743126119212010000', '2025-03-28 09:41:38', '2025-03-28 09:44:00', '8T4223', 1000, 0, 'clc', NULL, NULL, 'P2', 'WASHER-HARD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126111902010000', 1, 4, 1, 'ASRS-0362', 'P2', 'A04-39-02', '1743126133011010000', '2025-03-28 09:41:52', '2025-03-28 09:43:49', '9T7419', 8, 0, 'clc', NULL, NULL, 'P2', 'VALVE GP-D RLF-B'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126122790010000', 1, 4, 1, 'ASRS-0371', 'P2', 'A01-41-05', '1743126143825010000', '2025-03-28 09:42:03', '2025-03-28 09:44:53', '6V5555', 500, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126135294010000', 1, 4, 1, 'ASRS-0901', 'P2', 'A04-40-01', '1743126157615010000', '2025-03-28 09:42:15', '2025-03-28 09:44:37', '3P1979', 71, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126150583010000', 1, 4, 1, 'ASRS-0889', 'P2', 'A01-42-04', '1743126172014010000', '2025-03-28 09:42:31', '2025-03-28 09:45:46', '1483483', 1000, 0, 'clc', NULL, NULL, 'P2', 'PLUG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126177607010000', 1, 4, 1, 'ASRS-1604', 'P2', 'A03-31-11', '1743126199018010000', '2025-03-28 09:42:58', '2025-03-28 09:45:23', '2660531', 300, 0, 'clc', NULL, NULL, 'P2', 'CAP-CONNECTOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126189944010000', 1, 4, 1, 'ASRS-1261', 'P2', 'A02-35-11', '1743126211015010000', '2025-03-28 09:43:10', '2025-03-28 09:46:39', '1014845', 100, 0, 'clc', NULL, NULL, 'P2', 'PLUG-NPTF'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126203295010000', 1, 4, 1, 'ASRS-1371', 'P2', 'A03-32-10', '1743126224810010000', '2025-03-28 09:43:23', '2025-03-28 09:46:09', '2147568', 500, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126231240010000', 1, 4, 1, 'ASRS-0302', 'P2', 'A02-36-10', '1743126252713010000', '2025-03-28 09:43:51', '2025-03-28 09:47:30', '1160014', 10, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126246024010000', 1, 4, 1, 'ASRS-0314', 'P2', 'A03-33-09', '1743126267118010000', '2025-03-28 09:44:06', '2025-03-28 09:46:54', '1483483', 600, 0, 'clc', NULL, NULL, 'P2', 'PLUG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126259608010000', 1, 4, 1, 'ASRS-0272', 'P2', 'A03-34-08', '1743126280928010000', '2025-03-28 09:44:20', '2025-03-28 09:47:39', '8T8987', 10, 0, 'clc', NULL, NULL, 'P2', 'ADPTR-ELB 90 DEG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126272361010000', 1, 4, 1, 'ASRS-0327', 'P2', 'A02-37-09', '1743126294728010000', '2025-03-28 09:44:32', '2025-03-28 09:48:21', '4681136', 25, 0, 'clc', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743126282226010000', 1, 4, 1, 'ASRS-1257', 'P2', 'A02-38-08', '1743126304616010000', '2025-03-28 09:44:42', '2025-03-28 09:49:13', '7M8485', 800, 0, 'clc', NULL, NULL, 'P2', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743128995155010000', 1, 4, 1, 'ASRS-1530', 'P3', 'A02-39-07', '1743129025961010000', '2025-03-28 10:29:55', '2025-03-28 10:31:31', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129014741010000', 1, 4, 1, 'ASRS-0360', 'P3', 'A03-35-07', '1743129042450010000', '2025-03-28 10:30:15', '2025-03-28 10:31:38', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129028869010000', 1, 4, 1, 'ASRS-0524', 'P3', 'A02-40-06', '1743129053869010000', '2025-03-28 10:30:29', '2025-03-28 10:32:24', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129039589010000', 1, 4, 1, 'ASRS-1028', 'P3', 'A03-36-06', '1743129067664010000', '2025-03-28 10:30:40', '2025-03-28 10:32:26', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129054110010000', 1, 4, 1, 'ASRS-1904', 'P3', 'A02-41-05', '1743129081755010000', '2025-03-28 10:30:54', '2025-03-28 10:33:48', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129064526010000', 1, 4, 1, 'ASRS-1903', 'P3', 'A03-37-05', '1743129091352010000', '2025-03-28 10:31:05', '2025-03-28 10:33:43', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129098610010000', 2, 4, 1, 'ASRS-1093', 'A01-02-11', NULL, '1743129099609010000', '2025-03-28 10:31:39', '2025-03-28 10:33:08', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129098611010000', 2, 4, 1, 'ASRS-1224', 'A03-01-06', NULL, '1743129099609010001', '2025-03-28 10:31:39', '2025-03-28 10:33:04', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129185603010000', 2, 4, 1, 'ASRS-1264', 'A04-01-08', NULL, '1743129186605010000', '2025-03-28 10:33:06', '2025-03-28 10:34:23', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129189611010000', 2, 4, 1, 'ASRS-1544', 'A02-02-10', NULL, '1743129190608010000', '2025-03-28 10:33:10', '2025-03-28 10:34:31', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129264611010000', 2, 4, 1, 'ASRS-0909', 'A04-03-09', NULL, '1743129265603010000', '2025-03-28 10:34:25', '2025-03-28 10:35:02', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743129272618010000', 2, 4, 1, 'ASRS-1242', 'A02-01-03', NULL, '1743129273605010000', '2025-03-28 10:34:33', '2025-03-28 10:35:08', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131607681010000', 1, 4, 1, 'ASRS-0909', 'P3', 'A02-01-03', '1743131635984010000', '2025-03-28 11:13:28', '2025-03-28 11:14:38', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131620177010000', 1, 4, 1, 'ASRS-1242', 'P3', 'A03-01-06', '1743131644982010000', '2025-03-28 11:13:40', '2025-03-28 11:14:46', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131630169010000', 1, 4, 1, 'ASRS-1093', 'P3', 'A02-02-10', '1743131656969010000', '2025-03-28 11:13:50', '2025-03-28 11:15:11', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131654690010000', 1, 4, 1, 'ASRS-1544', 'P3', 'A01-02-11', '1743131682470010000', '2025-03-28 11:14:15', '2025-03-28 11:15:46', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131667833010000', 1, 4, 1, 'ASRS-1264', 'P3', 'A04-01-08', '1743131696284010000', '2025-03-28 11:14:28', '2025-03-28 11:15:39', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743131679585010000', 1, 4, 1, 'ASRS-1224', 'P3', 'A04-03-09', '1743131706772010000', '2025-03-28 11:14:40', '2025-03-28 11:16:14', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743133431612010001', 2, 4, 1, 'ASRS-1254', 'A02-38-07', NULL, '1743133432604010000', '2025-03-28 11:43:52', '2025-03-28 11:44:47', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743133735395010000', 1, 4, 1, 'ASRS-1254', 'P2', 'A02-38-07', '1743133759671010000', '2025-03-28 11:48:55', '2025-03-28 11:50:13', '8C3206', 2, 0, 'clc', NULL, NULL, 'P2', 'FLANGE-SPLIT'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743133775610010001', 2, 4, 9, 'ASRS-1528', 'A01-38-07', NULL, '1743133776604010000', '2025-03-28 11:49:36', '2025-03-28 11:50:52', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134417611010001', 2, 4, 9, 'ASRS-1268', 'A01-37-09', NULL, '1743134418604010000', '2025-03-28 12:00:18', '2025-03-28 12:01:03', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134539611010000', 2, 4, 1, 'ASRS-1251', 'A01-01-06', NULL, '1743134540603010000', '2025-03-28 12:02:20', '2025-03-28 12:02:54', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134539611010001', 2, 4, 1, 'ASRS-0956', 'A04-02-11', NULL, '1743134540603010001', '2025-03-28 12:02:20', '2025-03-28 12:02:57', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134575611010000', 2, 4, 1, 'ASRS-1191', 'A02-01-06', NULL, '1743134576605010000', '2025-03-28 12:02:56', '2025-03-28 12:03:30', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134578614010000', 2, 4, 1, 'ASRS-0958', 'A03-03-01', NULL, '1743134579605010000', '2025-03-28 12:02:59', '2025-03-28 12:03:34', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134611612010000', 2, 4, 1, 'ASRS-1267', 'A01-01-10', NULL, '1743134612604010000', '2025-03-28 12:03:32', '2025-03-28 12:04:53', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134615610010000', 2, 4, 1, 'ASRS-0961', 'A04-05-06', NULL, '1743134616604010000', '2025-03-28 12:03:36', '2025-03-28 12:04:13', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134654609010000', 2, 4, 1, 'ASRS-0964', 'A04-04-05', NULL, '1743134655608010000', '2025-03-28 12:04:15', '2025-03-28 12:04:51', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134692610010000', 2, 4, 1, 'ASRS-0967', 'A03-04-04', NULL, '1743134693604010000', '2025-03-28 12:04:53', '2025-03-28 12:05:29', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134694614010000', 2, 4, 1, 'ASRS-0623', 'A01-05-05', NULL, '1743134695602010000', '2025-03-28 12:04:55', '2025-03-28 12:05:34', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134730612010000', 2, 4, 1, 'ASRS-0970', 'A03-04-05', NULL, '1743134731604010000', '2025-03-28 12:05:31', '2025-03-28 12:06:07', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134795649010000', 1, 4, 1, 'ASRS-1191', 'P3', 'A01-01-06', '1743134822574010000', '2025-03-28 12:06:36', '2025-03-28 12:07:46', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134809773010000', 1, 4, 1, 'ASRS-1251', 'P3', 'A03-03-01', '1743134840838010000', '2025-03-28 12:06:50', '2025-03-28 12:08:01', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134829822010000', 1, 4, 1, 'ASRS-0958', 'P3', 'A02-01-06', '1743134857994010000', '2025-03-28 12:07:10', '2025-03-28 12:08:22', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134843135010000', 1, 4, 1, 'ASRS-0956', 'P3', 'A01-05-05', '1743134871793010000', '2025-03-28 12:07:23', '2025-03-28 12:08:56', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134865271010000', 1, 4, 1, 'ASRS-1267', 'P3', 'A03-04-04', '1743134892495010000', '2025-03-28 12:07:45', '2025-03-28 12:08:54', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134878838010000', 1, 4, 1, 'ASRS-0964', 'P3', 'A01-01-10', '1743134906311010000', '2025-03-28 12:07:59', '2025-03-28 12:09:32', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134891685010000', 1, 4, 1, 'ASRS-0961', 'P3', 'A03-04-05', '1743134920078010000', '2025-03-28 12:08:12', '2025-03-28 12:09:26', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134932886010000', 1, 4, 1, 'ASRS-0970', 'P3', 'A02-42-04', '1743134960290010000', '2025-03-28 12:08:53', '2025-03-28 12:10:19', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134945038010000', 1, 4, 1, 'ASRS-0623', 'P3', 'A04-04-05', '1743134971979010000', '2025-03-28 12:09:05', '2025-03-28 12:10:14', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743134955854010000', 1, 4, 1, 'ASRS-0967', 'P3', 'A01-36-11', '1743134982806010000', '2025-03-28 12:09:16', '2025-03-28 12:11:12', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743135193610010001', 2, 4, 9, 'ASRS-1528', 'A01-38-07', NULL, '1743135194604010000', '2025-03-28 12:13:14', '2025-03-28 12:13:59', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743141217113010000', 1, 4, 1, 'ASRS-0301', 'P2', 'A01-37-10', '1743141239673010000', '2025-03-28 13:53:37', '2025-03-28 13:55:05', '1061791', 2, 0, 'clc', NULL, NULL, 'P2', 'SWITCH GP'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142161611010001', 2, 4, 9, 'ASRS-0364', 'A01-42-01', NULL, '1743142162603010000', '2025-03-28 14:09:22', '2025-03-28 14:10:10', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142161611010005', 2, 4, 9, 'ASRS-0274', 'A03-32-08', NULL, '1743142162603010001', '2025-03-28 14:09:22', '2025-03-28 14:10:13', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142211610010001', 2, 4, 9, 'ASRS-0269', 'A01-36-07', NULL, '1743142212605010000', '2025-03-28 14:10:12', '2025-03-28 14:11:07', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142215611010001', 2, 4, 9, 'ASRS-0247', 'A04-28-11', NULL, '1743142216604010000', '2025-03-28 14:10:16', '2025-03-28 14:11:03', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142514789010000', 1, 4, 1, 'ASRS-0269', 'P3', 'A01-36-07', '1743142541654010000', '2025-03-28 14:15:15', '2025-03-28 14:16:35', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142544344010000', 1, 4, 1, 'ASRS-0247', 'P3', 'A01-42-01', '1743142623539010000', '2025-03-28 14:15:44', '2025-03-28 14:18:09', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142633610010001', 2, 4, 9, 'ASRS-1246', 'A01-41-02', NULL, '1743142634605010000', '2025-03-28 14:17:14', '2025-03-28 14:18:50', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142758609010001', 2, 4, 9, 'ASRS-0300', 'A03-34-05', NULL, '1743142759604010000', '2025-03-28 14:19:19', '2025-03-28 14:20:08', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142811612010001', 2, 4, 9, 'ASRS-0248', 'A01-40-03', NULL, '1743142812604010000', '2025-03-28 14:20:12', '2025-03-28 14:21:10', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142842610010001', 2, 4, 9, 'ASRS-0276', 'A04-30-09', NULL, '1743142843604010000', '2025-03-28 14:20:43', '2025-03-28 14:21:30', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142883614010001', 2, 4, 9, 'ASRS-0249', 'A01-37-06', NULL, '1743142884605010000', '2025-03-28 14:21:24', '2025-03-28 14:22:21', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743142905611010001', 2, 4, 9, 'ASRS-0275', 'A04-29-10', NULL, '1743142906605010000', '2025-03-28 14:21:46', '2025-03-28 14:22:34', '000000000', 0, 0, '管理员', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743168357612010001', 2, 4, 1, 'ASRS-1529', 'A01-32-11', NULL, '1743168358605010000', '2025-03-28 21:25:58', '2025-03-29 08:25:11', '000000000', 0, 0, 'clc', NULL, '', 'R1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743168407357010000', 1, 4, 1, 'ASRS-0359', 'P3', 'A01-37-06', '1743207907451010000', '2025-03-28 21:26:47', '2025-03-29 08:26:01', '1007000', 140, 0, 'clc', NULL, NULL, 'P3', 'Ring-back up'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209094744010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-32-11', '1743209126038010000', '2025-03-29 08:44:55', '2025-03-29 08:46:30', '1007000', 94, 0, '管理员', NULL, NULL, 'P3', 'Ring-back up'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209137200010000', 1, 4, 1, 'ASRS-0249', 'P3', 'A04-05-06', '1743209165032010000', '2025-03-29 08:45:37', '2025-03-29 08:46:47', '6H2948', 240, 0, '管理员', NULL, NULL, 'P3', 'DOWEL'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209163077010000', 1, 4, 1, 'ASRS-0276', 'P3', 'A01-40-03', '1743209196836010000', '2025-03-29 08:46:03', '2025-03-29 08:47:41', '1501285', 50, 0, '管理员', NULL, NULL, 'P3', 'PLUG-BREATHER'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209169610010000', 1, 4, 1, 'ASRS-0300', 'P3', 'A01-41-02', '1743209201016010000', '2025-03-29 08:46:10', '2025-03-29 08:48:34', '9N4049', 100, 0, '管理员', NULL, NULL, 'P3', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209221460010000', 1, 4, 1, 'ASRS-1246', 'P3', 'A04-02-11', '1743209253214010000', '2025-03-29 08:47:01', '2025-03-29 08:48:20', '2385082', 500, 0, '管理员', NULL, NULL, 'P3', 'SEAL-O-RING-STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209226381010000', 1, 4, 1, 'ASRS-0248', 'P3', 'A03-34-05', '1743209257434010000', '2025-03-29 08:47:06', '2025-03-29 08:49:02', '9S8008', 150, 0, '管理员', NULL, NULL, 'P3', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209270741010000', 1, 4, 1, 'ASRS-1035', 'P3', 'A01-38-09', '1743209340516010000', '2025-03-29 08:47:51', '2025-03-29 08:50:07', '0344160', 150, 0, '管理员', NULL, NULL, 'P3', 'BOLT-LOCKING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743209311916010000', 1, 4, 1, 'ASRS-1392', 'P3', 'A04-28-11', '1743209345342010000', '2025-03-29 08:48:32', '2025-03-29 08:50:01', '3603695', 100, 0, '管理员', NULL, NULL, 'P3', 'PLUG-HD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212728610010000', 2, 4, 1, 'ASRS-0315', 'A04-29-06', NULL, '1743212729604010000', '2025-03-29 09:45:29', '2025-03-29 09:46:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212728610010003', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1743212729605010000', '2025-03-29 09:45:29', '2025-03-29 09:46:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212773610010001', 2, 4, 1, 'ASRS-0388', 'A04-32-03', NULL, '1743212774604010000', '2025-03-29 09:46:14', '2025-03-29 09:47:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212777608010001', 2, 4, 1, 'ASRS-0313', 'A02-39-05', NULL, '1743212778605010000', '2025-03-29 09:46:18', '2025-03-29 09:47:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212835608010000', 2, 4, 1, 'ASRS-0304', 'A02-37-03', NULL, '1743212836604010000', '2025-03-29 09:47:16', '2025-03-29 09:48:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212893615010000', 2, 4, 1, 'ASRS-0350', 'A02-39-01', NULL, '1743212894605010000', '2025-03-29 09:48:14', '2025-03-29 09:49:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743212952608010001', 2, 4, 1, 'ASRS-0520', 'A01-35-10', NULL, '1743212953605010000', '2025-03-29 09:49:13', '2025-03-29 09:50:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743213009614010001', 2, 4, 1, 'ASRS-0334', 'A01-39-06', NULL, '1743213010604010000', '2025-03-29 09:50:10', '2025-03-29 09:51:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743214506610010001', 2, 4, 1, 'ASRS-1900', 'A01-34-11', NULL, '1743214507605010000', '2025-03-29 10:15:07', '2025-03-29 10:16:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220242159010000', 2, 4, 1, 'ASRS-1436', 'A01-42-03', NULL, '1743220243157010000', '2025-03-29 11:50:42', '2025-03-29 11:51:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220570055010000', 1, 4, 1, 'ASRS-0273', 'P2', 'A04-29-06', '1743220595440010000', '2025-03-29 11:56:10', '2025-03-29 11:57:23', '8T4196', 425, 0, '管理员', NULL, NULL, 'P2', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220582022010000', 1, 4, 1, 'ASRS-0328', 'P2', 'A02-39-01', '1743220609276010000', '2025-03-29 11:56:22', '2025-03-29 11:57:56', '9S4684', 50, 0, '管理员', NULL, NULL, 'P2', 'PLUG-O-RING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220599391010000', 1, 4, 1, 'ASRS-0330', 'P2', 'A02-39-05', '1743220623043010000', '2025-03-29 11:56:39', '2025-03-29 11:58:49', '3603688', 200, 0, '管理员', NULL, NULL, 'P2', 'PLUG-HD STOR'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220955130010001', 2, 4, 1, 'ASRS-0324', 'A02-41-01', NULL, '1743220956132010000', '2025-03-29 12:02:35', '2025-03-29 12:03:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220955131010002', 2, 4, 1, 'ASRS-0305', 'A04-31-05', NULL, '1743220956133010000', '2025-03-29 12:02:35', '2025-03-29 12:03:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743220999128010001', 2, 4, 1, 'ASRS-0340', 'A04-34-06', NULL, '1743221000124010000', '2025-03-29 12:03:19', '2025-03-29 12:04:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221034127010000', 2, 4, 1, 'ASRS-1027', 'A01-37-08', NULL, '1743221035124010000', '2025-03-29 12:03:54', '2025-03-29 12:05:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221077126010001', 2, 4, 1, 'ASRS-1032', 'A03-33-08', NULL, '1743221078124010000', '2025-03-29 12:04:37', '2025-03-29 12:05:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221116126010000', 2, 4, 1, 'ASRS-1529', 'A01-32-11', NULL, '1743221117124010000', '2025-03-29 12:05:16', '2025-03-29 12:06:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221690125010001', 2, 4, 1, 'ASRS-0306', 'A03-37-03', NULL, '1743221691125010000', '2025-03-29 12:14:50', '2025-03-29 12:15:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221690126010001', 2, 4, 1, 'ASRS-0333', 'A02-33-10', NULL, '1743221691125010001', '2025-03-29 12:14:50', '2025-03-29 12:15:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221737126010001', 2, 4, 1, 'ASRS-0392', 'A04-37-03', NULL, '1743221738133010000', '2025-03-29 12:15:37', '2025-03-29 12:16:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221740126010001', 2, 4, 1, 'ASRS-1902', 'A01-31-08', NULL, '1743221741125010000', '2025-03-29 12:15:40', '2025-03-29 12:17:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221821128010000', 2, 4, 1, 'ASRS-1221', 'A01-29-07', NULL, '1743221822124010000', '2025-03-29 12:17:01', '2025-03-29 12:17:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221874128010001', 2, 4, 1, 'ASRS-1526', 'A01-36-03', NULL, '1743221875126010000', '2025-03-29 12:17:54', '2025-03-29 12:18:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221931130010001', 2, 4, 1, 'ASRS-0528', 'A01-42-02', NULL, '1743221932127010000', '2025-03-29 12:18:51', '2025-03-29 12:19:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743221991133010001', 2, 4, 1, 'ASRS-0551', 'A01-39-02', NULL, '1743221992126010000', '2025-03-29 12:19:51', '2025-03-29 12:21:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225765529010001', 2, 4, 1, 'ASRS-0551', 'A02-33-10', NULL, '1743225766532010000', '2025-03-29 13:22:46', '2025-03-29 13:23:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225876529010001', 2, 4, 1, 'ASRS-0519', 'A04-39-01', NULL, '1743225877529010000', '2025-03-29 13:24:37', '2025-03-29 13:25:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225876529010004', 2, 4, 1, 'ASRS-1025', 'A01-35-04', NULL, '1743225877529010001', '2025-03-29 13:24:37', '2025-03-29 13:25:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225933528010001', 2, 4, 1, 'ASRS-1034', 'A01-38-08', NULL, '1743225934530010000', '2025-03-29 13:25:34', '2025-03-29 13:27:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225941528010001', 2, 4, 1, 'ASRS-0350', 'A01-34-06', NULL, '1743225942530010000', '2025-03-29 13:25:42', '2025-03-29 13:26:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743225941528010004', 2, 4, 1, 'ASRS-0384', 'A03-29-06', NULL, '1743225942530010001', '2025-03-29 13:25:42', '2025-03-29 13:26:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226013530010000', 2, 4, 1, 'ASRS-1027', 'A01-39-08', NULL, '1743226014530010000', '2025-03-29 13:26:54', '2025-03-29 13:28:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226118528010001', 2, 4, 1, 'ASRS-1436', 'A02-37-03', NULL, '1743226119529010000', '2025-03-29 13:28:39', '2025-03-29 13:29:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226146530010001', 2, 4, 1, 'ASRS-1025', 'A03-29-06', NULL, '1743226147531010000', '2025-03-29 13:29:07', '2025-03-29 13:29:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226241529010001', 2, 4, 1, 'ASRS-0316', 'A02-42-02', NULL, '1743226242530010000', '2025-03-29 13:30:42', '2025-03-29 13:31:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226241530010001', 2, 4, 1, 'ASRS-1031', 'A04-31-04', NULL, '1743226242530010001', '2025-03-29 13:30:42', '2025-03-29 13:31:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226293529010001', 2, 4, 1, 'ASRS-0338', 'A01-36-09', NULL, '1743226294529010000', '2025-03-29 13:31:34', '2025-03-29 13:32:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226481527010001', 2, 4, 1, 'ASRS-0324', 'A04-29-10', NULL, '1743226482529010000', '2025-03-29 13:34:42', '2025-03-29 13:35:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226481527010004', 2, 4, 1, 'ASRS-0305', 'A01-32-11', NULL, '1743226482529010001', '2025-03-29 13:34:42', '2025-03-29 13:35:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226527530010001', 2, 4, 1, 'ASRS-0336', 'A04-38-01', NULL, '1743226528529010000', '2025-03-29 13:35:28', '2025-03-29 13:36:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226530529010001', 2, 4, 1, 'ASRS-0340', 'A01-37-08', NULL, '1743226531530010000', '2025-03-29 13:35:31', '2025-03-29 13:36:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226580528010001', 2, 4, 1, 'ASRS-1529', 'A04-30-09', NULL, '1743226581530010000', '2025-03-29 13:36:21', '2025-03-29 13:37:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226614527010001', 2, 4, 1, 'ASRS-1245', 'A02-40-04', NULL, '1743226615530010000', '2025-03-29 13:36:55', '2025-03-29 13:37:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226671527010001', 2, 4, 1, 'ASRS-0337', 'A01-41-04', NULL, '1743226672530010002', '2025-03-29 13:37:52', '2025-03-29 13:40:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226671527010004', 2, 4, 1, 'ASRS-0501', 'A04-38-02', NULL, '1743226672530010004', '2025-03-29 13:37:52', '2025-03-29 13:38:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226672530010001', 2, 4, 1, 'ASRS-1027', 'A01-42-02', NULL, '1743226673530010000', '2025-03-29 13:37:53', '2025-03-29 13:39:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226758529010001', 2, 4, 1, 'ASRS-0551', 'A02-33-10', NULL, '1743226759529010000', '2025-03-29 13:39:19', '2025-03-29 13:41:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226991527010001', 2, 4, 1, 'ASRS-1524', 'A03-31-06', NULL, '1743226992530010000', '2025-03-29 13:43:12', '2025-03-29 13:44:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743226991527010004', 2, 4, 1, 'ASRS-0522', 'A02-32-09', NULL, '1743226992530010001', '2025-03-29 13:43:12', '2025-03-29 13:44:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227106527010001', 2, 4, 1, 'ASRS-0318', 'A01-41-03', NULL, '1743227107529010000', '2025-03-29 13:45:07', '2025-03-29 13:45:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227156528010001', 2, 4, 1, 'ASRS-0383', 'A01-33-06', NULL, '1743227157529010000', '2025-03-29 13:45:57', '2025-03-29 13:47:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227234528010000', 2, 4, 1, 'ASRS-1268', 'A01-37-09', NULL, '1743227235529010000', '2025-03-29 13:47:15', '2025-03-29 13:48:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227234528010003', 2, 4, 1, 'ASRS-0272', 'A03-34-08', NULL, '1743227235529010001', '2025-03-29 13:47:15', '2025-03-29 13:47:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227278522010000', 1, 4, 1, 'ASRS-0273', 'P1', 'A01-33-06', '1743227306327010000', '2025-03-29 13:47:59', '2025-03-29 13:49:18', '8T4196', 425, 0, '管理员', NULL, NULL, 'P1', 'BOLT-HEX HEAD'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227396529010001', 2, 4, 1, 'ASRS-1088', 'A02-32-11', NULL, '1743227397531010000', '2025-03-29 13:49:57', '2025-03-29 13:51:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227554528010001', 2, 4, 1, 'ASRS-1268', 'A03-38-04', NULL, '1743227555529010000', '2025-03-29 13:52:35', '2025-03-29 13:53:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227641527010001', 2, 4, 1, 'ASRS-0317', 'A04-31-08', NULL, '1743227642531010000', '2025-03-29 13:54:02', '2025-03-29 13:54:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227641527010004', 2, 4, 1, 'ASRS-1902', 'A01-31-08', NULL, '1743227642531010001', '2025-03-29 13:54:02', '2025-03-29 13:54:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227688529010001', 2, 4, 1, 'ASRS-0519', 'A01-35-04', NULL, '1743227689529010000', '2025-03-29 13:54:49', '2025-03-29 13:56:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227691527010000', 2, 4, 1, 'ASRS-1221', 'A03-37-03', NULL, '1743227692531010000', '2025-03-29 13:54:52', '2025-03-29 13:55:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227769527010001', 2, 4, 1, 'ASRS-0528', 'A01-39-02', NULL, '1743227770530010000', '2025-03-29 13:56:10', '2025-03-29 13:57:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227851529010001', 2, 4, 1, 'ASRS-0527', 'A02-36-08', NULL, '1743227852529010000', '2025-03-29 13:57:32', '2025-03-29 13:58:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227871529010000', 2, 4, 1, 'ASRS-0315', 'A04-34-06', NULL, '1743227872530010000', '2025-03-29 13:57:52', '2025-03-29 13:58:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227871529010003', 2, 4, 1, 'ASRS-0332', 'A01-35-10', NULL, '1743227872530010001', '2025-03-29 13:57:52', '2025-03-29 13:59:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227907533010001', 2, 4, 1, 'ASRS-1034', 'A01-34-06', NULL, '1743227908529010000', '2025-03-29 13:58:28', '2025-03-29 14:00:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227923530010001', 2, 4, 1, 'ASRS-0388', 'A04-32-03', NULL, '1743227924529010000', '2025-03-29 13:58:44', '2025-03-29 13:59:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227958529010001', 2, 4, 1, 'ASRS-0313', 'A01-34-11', NULL, '1743227959530010000', '2025-03-29 13:59:19', '2025-03-29 14:00:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743227973530010000', 2, 4, 1, 'ASRS-0350', 'A04-37-03', NULL, '1743227974529010000', '2025-03-29 13:59:34', '2025-03-29 14:00:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228026529010001', 2, 4, 1, 'ASRS-0334', 'A04-31-05', NULL, '1743228027530010000', '2025-03-29 14:00:27', '2025-03-29 14:01:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228058527010000', 2, 4, 1, 'ASRS-0304', 'A02-41-01', NULL, '1743228059530010000', '2025-03-29 14:00:59', '2025-03-29 14:01:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228117527010001', 2, 4, 1, 'ASRS-0520', 'A01-42-03', NULL, '1743228118529010000', '2025-03-29 14:01:58', '2025-03-29 14:02:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228306527010001', 2, 4, 1, 'ASRS-1436', 'A02-42-02', NULL, '1743228307530010000', '2025-03-29 14:05:07', '2025-03-29 14:05:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228606526010001', 2, 4, 1, 'ASRS-0324', 'A02-40-04', NULL, '1743228607530010000', '2025-03-29 14:10:07', '2025-03-29 14:11:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228606526010004', 2, 4, 1, 'ASRS-0305', 'A04-30-09', NULL, '1743228607530010001', '2025-03-29 14:10:07', '2025-03-29 14:10:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228654530010001', 2, 4, 1, 'ASRS-0340', 'A04-38-01', NULL, '1743228655529010000', '2025-03-29 14:10:55', '2025-03-29 14:12:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228688527010001', 2, 4, 1, 'ASRS-1032', 'A01-40-07', NULL, '1743228689531010000', '2025-03-29 14:11:29', '2025-03-29 14:12:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228732528010001', 2, 4, 1, 'ASRS-1027', 'A03-33-08', NULL, '1743228733530010000', '2025-03-29 14:12:13', '2025-03-29 14:13:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228770528010001', 2, 4, 1, 'ASRS-1529', 'A02-33-10', NULL, '1743228771529010000', '2025-03-29 14:12:51', '2025-03-29 14:14:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228811527010001', 2, 4, 1, 'ASRS-0306', 'A01-29-07', NULL, '1743228812529010000', '2025-03-29 14:13:32', '2025-03-29 14:15:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228811528010001', 2, 4, 1, 'ASRS-0338', 'A04-29-10', NULL, '1743228812529010001', '2025-03-29 14:13:32', '2025-03-29 14:14:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743228903527010001', 2, 4, 1, 'ASRS-0316', 'A01-32-11', NULL, '1743228904531010000', '2025-03-29 14:15:04', '2025-03-29 14:16:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229006527010003', 2, 4, 1, 'ASRS-0333', 'A03-32-08', NULL, '1743229007529010000', '2025-03-29 14:16:47', '2025-03-29 14:17:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229006527010006', 2, 4, 1, 'ASRS-1902', 'A02-41-01', NULL, '1743229007529010001', '2025-03-29 14:16:47', '2025-03-29 14:17:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229065531010001', 2, 4, 1, 'ASRS-1526', 'A01-36-03', NULL, '1743229066529010000', '2025-03-29 14:17:46', '2025-03-29 14:19:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229074527010001', 2, 4, 1, 'ASRS-1221', 'A03-37-03', NULL, '1743229075530010000', '2025-03-29 14:17:55', '2025-03-29 14:18:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229146529010000', 2, 4, 1, 'ASRS-0528', 'A02-40-04', NULL, '1743229147530010000', '2025-03-29 14:19:07', '2025-03-29 14:20:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229230531010000', 2, 4, 1, 'ASRS-0551', 'A02-32-09', NULL, '1743229231529010000', '2025-03-29 14:20:31', '2025-03-29 14:21:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229556528010001', 2, 4, 1, 'ASRS-1031', 'A04-31-04', NULL, '1743229557530010000', '2025-03-29 14:25:57', '2025-03-29 14:26:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229571528010001', 2, 4, 1, 'ASRS-0519', 'A01-34-11', NULL, '1743229572529010000', '2025-03-29 14:26:12', '2025-03-29 14:26:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229617527010001', 2, 4, 1, 'ASRS-1034', 'A01-35-10', NULL, '1743229618530010000', '2025-03-29 14:26:58', '2025-03-29 14:28:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229752430010000', 1, 4, 1, 'ASRS-0331', 'P2', 'A04-31-04', '1743229774447010000', '2025-03-29 14:29:12', '2025-03-29 14:30:30', '3T8236', 44, 0, '管理员', NULL, NULL, 'P2', 'SPRING'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229781526010001', 2, 4, 1, 'ASRS-0316', 'A02-33-10', NULL, '1743229782530010000', '2025-03-29 14:29:42', '2025-03-29 14:30:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229781527010003', 2, 4, 1, 'ASRS-0338', 'A03-38-04', NULL, '1743229782531010000', '2025-03-29 14:29:42', '2025-03-29 14:31:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229806528010001', 2, 4, 1, 'ASRS-1683', 'A02-37-08', NULL, '1743229807529010000', '2025-03-29 14:30:07', '2025-03-29 14:31:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743229996528010001', 2, 4, 1, 'ASRS-0331', 'A04-31-04', NULL, '1743229997531010000', '2025-03-29 14:33:17', '2025-03-29 14:34:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230161528010001', 2, 4, 1, 'ASRS-0337', 'A01-36-09', NULL, '1743230162530010000', '2025-03-29 14:36:02', '2025-03-29 14:36:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230161528010005', 2, 4, 1, 'ASRS-0501', 'A04-38-02', NULL, '1743230162531010000', '2025-03-29 14:36:02', '2025-03-29 14:36:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230396527010001', 2, 4, 1, 'ASRS-1524', 'A01-37-08', NULL, '1743230397530010000', '2025-03-29 14:39:57', '2025-03-29 14:41:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230477526010001', 2, 4, 1, 'ASRS-0522', 'A01-41-03', NULL, '1743230478529010000', '2025-03-29 14:41:18', '2025-03-29 14:42:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230596528010001', 2, 4, 1, 'ASRS-1088', 'A01-31-08', NULL, '1743230597529010000', '2025-03-29 14:43:17', '2025-03-29 14:44:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230796526010001', 2, 4, 1, 'ASRS-0271', 'A03-31-04', NULL, '1743230797530010000', '2025-03-29 14:46:37', '2025-03-29 14:47:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230838527010001', 2, 4, 1, 'ASRS-0350', 'A04-31-05', NULL, '1743230839529010000', '2025-03-29 14:47:19', '2025-03-29 14:48:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230866528010001', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1743230867529010000', '2025-03-29 14:47:47', '2025-03-29 14:48:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230866528010004', 2, 4, 1, 'ASRS-0332', 'A04-32-03', NULL, '1743230867529010001', '2025-03-29 14:47:47', '2025-03-29 14:48:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230913530010001', 2, 4, 1, 'ASRS-0313', 'A02-36-08', NULL, '1743230914529010000', '2025-03-29 14:48:34', '2025-03-29 14:49:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230934529010000', 2, 4, 1, 'ASRS-0520', 'A04-34-06', NULL, '1743230935529010000', '2025-03-29 14:48:55', '2025-03-29 14:49:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230970529010001', 2, 4, 1, 'ASRS-0304', 'A02-42-02', NULL, '1743230971529010000', '2025-03-29 14:49:31', '2025-03-29 14:50:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743230986529010001', 2, 4, 1, 'ASRS-0334', 'A04-31-08', NULL, '1743230987529010000', '2025-03-29 14:49:47', '2025-03-29 14:50:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231030528010001', 2, 4, 1, 'ASRS-0388', 'A01-39-02', NULL, '1743231031529010000', '2025-03-29 14:50:31', '2025-03-29 14:51:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231036526010001', 2, 4, 1, 'ASRS-1436', 'A04-37-03', NULL, '1743231037531010000', '2025-03-29 14:50:37', '2025-03-29 14:51:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231141528010001', 2, 4, 1, 'ASRS-1531', 'A03-35-04', NULL, '1743231142529010000', '2025-03-29 14:52:22', '2025-03-29 14:53:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231141528010005', 2, 4, 1, 'ASRS-0386', 'A02-36-09', NULL, '1743231142529010001', '2025-03-29 14:52:22', '2025-03-29 14:53:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231236526010001', 2, 4, 1, 'ASRS-0324', 'A01-41-04', NULL, '1743231237530010000', '2025-03-29 14:53:57', '2025-03-29 14:55:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231236527010001', 2, 4, 1, 'ASRS-0305', 'A04-30-09', NULL, '1743231237530010001', '2025-03-29 14:53:57', '2025-03-29 14:55:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231310527010001', 2, 4, 1, 'ASRS-0340', 'A03-33-08', NULL, '1743231311529010000', '2025-03-29 14:55:11', '2025-03-29 14:56:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231326527010001', 2, 4, 1, 'ASRS-1032', 'A01-29-07', NULL, '1743231327529010000', '2025-03-29 14:55:27', '2025-03-29 14:56:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231389529010001', 2, 4, 1, 'ASRS-1027', 'A04-29-10', NULL, '1743231390530010000', '2025-03-29 14:56:30', '2025-03-29 14:57:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231407527010001', 2, 4, 1, 'ASRS-1529', 'A01-32-11', NULL, '1743231408529010000', '2025-03-29 14:56:48', '2025-03-29 14:58:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231576528010000', 2, 4, 1, 'ASRS-0306', 'A03-39-03', NULL, '1743231577529010000', '2025-03-29 14:59:37', '2025-03-29 15:00:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231576528010003', 2, 4, 1, 'ASRS-1902', 'A01-36-03', NULL, '1743231577529010001', '2025-03-29 14:59:37', '2025-03-29 15:00:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231625526010001', 2, 4, 1, 'ASRS-0333', 'A03-32-08', NULL, '1743231626530010000', '2025-03-29 15:00:26', '2025-03-29 15:01:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231644529010001', 2, 4, 1, 'ASRS-1221', 'A02-41-01', NULL, '1743231645530010000', '2025-03-29 15:00:45', '2025-03-29 15:02:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231700530010000', 2, 4, 1, 'ASRS-1526', 'A03-37-03', NULL, '1743231701529010000', '2025-03-29 15:01:41', '2025-03-29 15:02:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231727528010000', 2, 4, 1, 'ASRS-0528', 'A02-32-09', NULL, '1743231728530010000', '2025-03-29 15:02:08', '2025-03-29 15:03:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231807530010001', 2, 4, 1, 'ASRS-0331', 'A02-37-08', NULL, '1743231808530010000', '2025-03-29 15:03:28', '2025-03-29 15:04:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743231931528010001', 2, 4, 1, 'ASRS-0519', 'A02-40-04', NULL, '1743231932530010000', '2025-03-29 15:05:32', '2025-03-29 15:06:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232001527010001', 2, 4, 1, 'ASRS-1034', 'A01-34-11', NULL, '1743232002530010000', '2025-03-29 15:06:42', '2025-03-29 15:08:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232141527010001', 2, 4, 1, 'ASRS-0316', 'A03-38-04', NULL, '1743232142529010000', '2025-03-29 15:09:02', '2025-03-29 15:09:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232141527010004', 2, 4, 1, 'ASRS-1031', 'A02-33-10', NULL, '1743232142529010001', '2025-03-29 15:09:02', '2025-03-29 15:11:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232166532010001', 2, 4, 1, 'ASRS-0271', 'A02-42-02', NULL, '1743232167530010000', '2025-03-29 15:09:27', '2025-03-29 15:10:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232166532010004', 2, 4, 1, 'ASRS-0350', 'A04-31-08', NULL, '1743232167530010001', '2025-03-29 15:09:27', '2025-03-29 15:10:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232268527010001', 2, 4, 1, 'ASRS-0338', 'A01-42-03', NULL, '1743232269530010000', '2025-03-29 15:11:09', '2025-03-29 15:12:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232401527010001', 2, 4, 1, 'ASRS-0337', 'A04-31-04', NULL, '1743232402529010000', '2025-03-29 15:13:22', '2025-03-29 15:14:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232401527010004', 2, 4, 1, 'ASRS-0501', 'A01-36-09', NULL, '1743232402529010001', '2025-03-29 15:13:22', '2025-03-29 15:14:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232521527010001', 2, 4, 1, 'ASRS-1531', 'A01-38-08', NULL, '1743232522529010000', '2025-03-29 15:15:22', '2025-03-29 15:16:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232521527010004', 2, 4, 1, 'ASRS-0386', 'A04-37-03', NULL, '1743232522529010001', '2025-03-29 15:15:22', '2025-03-29 15:16:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232576526010001', 2, 4, 1, 'ASRS-1524', 'A01-41-03', NULL, '1743232577529010000', '2025-03-29 15:16:17', '2025-03-29 15:17:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232653528010001', 2, 4, 1, 'ASRS-0522', 'A01-37-08', NULL, '1743232654530010000', '2025-03-29 15:17:34', '2025-03-29 15:18:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743232841528010001', 2, 4, 1, 'ASRS-1088', 'A01-31-08', NULL, '1743232842530010000', '2025-03-29 15:20:42', '2025-03-29 15:21:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743233031527010000', 2, 4, 1, 'ASRS-0271', 'A04-31-04', NULL, '1743233032530010000', '2025-03-29 15:23:52', '2025-03-29 15:24:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743233031527010003', 2, 4, 1, 'ASRS-0350', 'A01-34-11', NULL, '1743233032530010001', '2025-03-29 15:23:52', '2025-03-29 15:25:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743233151528010001', 2, 4, 1, 'ASRS-1531', 'A01-37-08', NULL, '1743233152530010000', '2025-03-29 15:25:52', '2025-03-29 15:26:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743233209527010000', 2, 4, 1, 'ASRS-0386', 'A01-41-03', NULL, '1743233210529010000', '2025-03-29 15:26:50', '2025-03-29 15:28:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743383836518010001', 2, 4, 1, 'ASRS-0271', 'A01-34-11', NULL, '1743383837535010000', '2025-03-31 09:17:17', '2025-03-31 09:18:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743383836518010004', 2, 4, 1, 'ASRS-0350', 'A04-31-04', NULL, '1743383837536010000', '2025-03-31 09:17:17', '2025-03-31 09:17:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743384121542010001', 2, 4, 1, 'ASRS-1531', 'A01-41-03', NULL, '1743384122529010000', '2025-03-31 09:22:02', '2025-03-31 09:22:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743384172528010000', 2, 4, 1, 'ASRS-0386', 'A01-37-08', NULL, '1743384173529010000', '2025-03-31 09:22:53', '2025-03-31 09:24:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743384466528010001', 2, 4, 1, 'ASRS-0350', 'A01-34-11', NULL, '1743384467530010000', '2025-03-31 09:27:47', '2025-03-31 09:28:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743384786529010001', 2, 4, 1, 'ASRS-1531', 'A01-41-03', NULL, '1743384787529010000', '2025-03-31 09:33:07', '2025-03-31 09:33:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395121528010001', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1743395122529010000', '2025-03-31 12:25:22', '2025-03-31 12:26:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395121528010004', 2, 4, 1, 'ASRS-0332', 'A03-31-04', NULL, '1743395122529010001', '2025-03-31 12:25:22', '2025-03-31 12:26:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395170527010001', 2, 4, 1, 'ASRS-0313', 'A02-36-08', NULL, '1743395171529010000', '2025-03-31 12:26:11', '2025-03-31 12:27:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395172532010000', 2, 4, 1, 'ASRS-0304', 'A04-31-05', NULL, '1743395173529010000', '2025-03-31 12:26:13', '2025-03-31 12:27:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395223529010001', 2, 4, 1, 'ASRS-0388', 'A03-35-04', NULL, '1743395224529010000', '2025-03-31 12:27:04', '2025-03-31 12:27:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395227518010001', 2, 4, 1, 'ASRS-1900', 'A01-39-06', NULL, '1743395228530010000', '2025-03-31 12:27:08', '2025-03-31 12:28:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395275527010001', 2, 4, 1, 'ASRS-0520', 'A04-32-03', NULL, '1743395276530010000', '2025-03-31 12:27:56', '2025-03-31 12:28:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395286518010001', 2, 4, 1, 'ASRS-0334', 'A01-39-02', NULL, '1743395287530010000', '2025-03-31 12:28:07', '2025-03-31 12:29:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395751518010001', 2, 4, 1, 'ASRS-0350', 'A01-34-11', NULL, '1743395752531010000', '2025-03-31 12:35:52', '2025-03-31 12:37:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395751518010004', 2, 4, 1, 'ASRS-0384', 'A03-29-06', NULL, '1743395752531010001', '2025-03-31 12:35:52', '2025-03-31 12:36:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395795529010001', 2, 4, 1, 'ASRS-1027', 'A04-29-10', NULL, '1743395796531010000', '2025-03-31 12:36:36', '2025-03-31 12:37:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743395834538010001', 2, 4, 1, 'ASRS-1436', 'A02-36-09', NULL, '1743395835532010000', '2025-03-31 12:37:15', '2025-03-31 12:38:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396031530010001', 2, 4, 1, 'ASRS-0324', 'A04-30-09', NULL, '1743396032530010000', '2025-03-31 12:40:32', '2025-03-31 12:41:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396031530010004', 2, 4, 1, 'ASRS-0305', 'A01-41-04', NULL, '1743396032530010001', '2025-03-31 12:40:32', '2025-03-31 12:41:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396075529010001', 2, 4, 1, 'ASRS-1245', 'A04-39-01', NULL, '1743396076530010000', '2025-03-31 12:41:16', '2025-03-31 12:42:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396092518010001', 2, 4, 1, 'ASRS-0340', 'A01-29-07', NULL, '1743396093530010000', '2025-03-31 12:41:33', '2025-03-31 12:42:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396174518010001', 2, 4, 1, 'ASRS-0336', 'A01-42-02', NULL, '1743396175528010000', '2025-03-31 12:42:55', '2025-03-31 12:44:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396259518010001', 2, 4, 1, 'ASRS-1027', 'A02-36-09', NULL, '1743396260530010000', '2025-03-31 12:44:20', '2025-03-31 12:45:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396340535010001', 2, 4, 1, 'ASRS-1529', 'A01-37-09', NULL, '1743396341535010000', '2025-03-31 12:45:41', '2025-03-31 12:46:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396398518010001', 2, 4, 1, 'ASRS-0331', 'A02-37-08', NULL, '1743396399534010000', '2025-03-31 12:46:39', '2025-03-31 12:48:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396546534010001', 2, 4, 1, 'ASRS-0318', 'A03-31-06', NULL, '1743396547529010000', '2025-03-31 12:49:07', '2025-03-31 12:49:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396546535010001', 2, 4, 1, 'ASRS-1268', 'A02-32-11', NULL, '1743396547529010001', '2025-03-31 12:49:07', '2025-03-31 12:50:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396590528010001', 2, 4, 1, 'ASRS-0383', 'A03-34-08', NULL, '1743396591535010000', '2025-03-31 12:49:51', '2025-03-31 12:50:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396766528010001', 2, 4, 1, 'ASRS-0317', 'A01-35-04', NULL, '1743396767536010000', '2025-03-31 12:52:47', '2025-03-31 12:53:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396766528010004', 2, 4, 1, 'ASRS-1902', 'A03-32-08', NULL, '1743396767536010001', '2025-03-31 12:52:47', '2025-03-31 12:53:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396814536010001', 2, 4, 1, 'ASRS-0519', 'A02-40-04', NULL, '1743396815530010000', '2025-03-31 12:53:35', '2025-03-31 12:54:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396817527010001', 2, 4, 1, 'ASRS-1221', 'A03-37-03', NULL, '1743396818530010000', '2025-03-31 12:53:38', '2025-03-31 12:54:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396898536010001', 2, 4, 1, 'ASRS-0528', 'A04-34-06', NULL, '1743396899534010000', '2025-03-31 12:54:59', '2025-03-31 12:55:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743396950528010001', 2, 4, 1, 'ASRS-0527', 'A04-38-01', NULL, '1743396951535010000', '2025-03-31 12:55:51', '2025-03-31 12:56:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397003518010001', 2, 4, 1, 'ASRS-1034', 'A04-38-02', NULL, '1743397004534010000', '2025-03-31 12:56:44', '2025-03-31 12:58:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397236528010001', 2, 4, 1, 'ASRS-0306', 'A01-36-03', NULL, '1743397237530010000', '2025-03-31 13:00:37', '2025-03-31 13:01:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397276515010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A03-37-03', '1743397305161010000', '2025-03-31 13:01:17', '2025-03-31 13:02:43', '8T8987', 20, 0, '管理员', NULL, NULL, 'P3', 'ADPTR-ELB 90 DEG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397283518010001', 2, 4, 1, 'ASRS-0316', 'A02-33-10', NULL, '1743397284534010000', '2025-03-31 13:01:24', '2025-03-31 13:02:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397309673010000', 1, 4, 1, 'ASRS-0364', 'P3', 'A01-36-03', '1743397337284010000', '2025-03-31 13:01:50', '2025-03-31 13:03:26', '8T8987', 10, 0, '管理员', NULL, NULL, 'P3', 'ADPTR-ELB 90 DEG'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397367529010001', 2, 4, 1, 'ASRS-0338', 'A02-42-02', NULL, '1743397368530010000', '2025-03-31 13:02:48', '2025-03-31 13:04:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397517344010000', 1, 4, 1, 'ASRS-0303', 'P2', 'A02-33-10', '1743397539458010000', '2025-03-31 13:05:17', '2025-03-31 13:06:32', '8J6815', 500, 0, '管理员', NULL, NULL, 'P2', 'PLUG-INTL HEX'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397811540010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743397812529010000', '2025-03-31 13:10:12', '2025-03-31 13:11:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743397986518010001', 2, 4, 1, 'ASRS-1031', 'A04-31-08', NULL, '1743397987529010000', '2025-03-31 13:13:07', '2025-03-31 13:13:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398121518010001', 2, 4, 1, 'ASRS-1683', 'A01-35-10', NULL, '1743398122529010000', '2025-03-31 13:15:22', '2025-03-31 13:16:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398481518010001', 2, 4, 1, 'ASRS-0315', 'A03-31-04', NULL, '1743398482530010000', '2025-03-31 13:21:22', '2025-03-31 13:22:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398481518010004', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1743398482530010001', '2025-03-31 13:21:22', '2025-03-31 13:22:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398527529010001', 2, 4, 1, 'ASRS-0304', 'A01-39-02', NULL, '1743398528530010000', '2025-03-31 13:22:08', '2025-03-31 13:23:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398531529010001', 2, 4, 1, 'ASRS-0313', 'A04-31-04', NULL, '1743398532530010000', '2025-03-31 13:22:12', '2025-03-31 13:23:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398581531010001', 2, 4, 1, 'ASRS-1900', 'A04-32-03', NULL, '1743398582535010000', '2025-03-31 13:23:02', '2025-03-31 13:23:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398586533010001', 2, 4, 1, 'ASRS-0388', 'A02-36-08', NULL, '1743398587535010000', '2025-03-31 13:23:07', '2025-03-31 13:24:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398632531010001', 2, 4, 1, 'ASRS-0334', 'A04-31-05', NULL, '1743398633530010000', '2025-03-31 13:23:53', '2025-03-31 13:24:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398643530010001', 2, 4, 1, 'ASRS-0520', 'A01-39-06', NULL, '1743398644530010000', '2025-03-31 13:24:04', '2025-03-31 13:25:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398806518010001', 2, 4, 1, 'ASRS-0350', 'A03-29-06', NULL, '1743398807535010000', '2025-03-31 13:26:47', '2025-03-31 13:27:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398806518010004', 2, 4, 1, 'ASRS-0384', 'A01-34-11', NULL, '1743398807535010001', '2025-03-31 13:26:47', '2025-03-31 13:27:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398850529010001', 2, 4, 1, 'ASRS-1027', 'A04-30-09', NULL, '1743398851530010000', '2025-03-31 13:27:31', '2025-03-31 13:28:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743398857529010001', 2, 4, 1, 'ASRS-1436', 'A01-38-08', NULL, '1743398858535010000', '2025-03-31 13:27:38', '2025-03-31 13:28:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399021541010001', 2, 4, 1, 'ASRS-0324', 'A01-41-04', NULL, '1743399022535010000', '2025-03-31 13:30:22', '2025-03-31 13:31:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399021541010004', 2, 4, 1, 'ASRS-0305', 'A03-35-04', NULL, '1743399022535010001', '2025-03-31 13:30:22', '2025-03-31 13:31:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399071529010001', 2, 4, 1, 'ASRS-1245', 'A01-29-07', NULL, '1743399072529010000', '2025-03-31 13:31:12', '2025-03-31 13:32:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399082529010001', 2, 4, 1, 'ASRS-0340', 'A04-29-10', NULL, '1743399083530010000', '2025-03-31 13:31:23', '2025-03-31 13:32:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399155529010001', 2, 4, 1, 'ASRS-0336', 'A01-42-02', NULL, '1743399156530010000', '2025-03-31 13:32:36', '2025-03-31 13:33:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399214527010001', 2, 4, 1, 'ASRS-1027', 'A01-38-08', NULL, '1743399215530010000', '2025-03-31 13:33:35', '2025-03-31 13:34:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399297537010001', 2, 4, 1, 'ASRS-1529', 'A02-36-09', NULL, '1743399298530010000', '2025-03-31 13:34:58', '2025-03-31 13:35:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399354530010001', 2, 4, 1, 'ASRS-0331', 'A02-37-08', NULL, '1743399355530010000', '2025-03-31 13:35:55', '2025-03-31 13:37:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399491518010001', 2, 4, 1, 'ASRS-0318', 'A02-32-11', NULL, '1743399492535010000', '2025-03-31 13:38:12', '2025-03-31 13:38:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399491518010004', 2, 4, 1, 'ASRS-0383', 'A03-31-06', NULL, '1743399492535010001', '2025-03-31 13:38:12', '2025-03-31 13:38:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399540536010001', 2, 4, 1, 'ASRS-1268', 'A01-37-09', NULL, '1743399541529010000', '2025-03-31 13:39:01', '2025-03-31 13:40:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399540536010004', 2, 4, 1, 'ASRS-0329', 'A03-37-03', NULL, '1743399541530010000', '2025-03-31 13:39:01', '2025-03-31 13:39:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399681531010001', 2, 4, 1, 'ASRS-0317', 'A03-32-08', NULL, '1743399682535010000', '2025-03-31 13:41:22', '2025-03-31 13:42:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399681531010004', 2, 4, 1, 'ASRS-1902', 'A01-35-04', NULL, '1743399682535010001', '2025-03-31 13:41:22', '2025-03-31 13:42:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399725529010001', 2, 4, 1, 'ASRS-0519', 'A04-38-01', NULL, '1743399726535010000', '2025-03-31 13:42:06', '2025-03-31 13:42:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399729536010001', 2, 4, 1, 'ASRS-1221', 'A02-40-04', NULL, '1743399730529010000', '2025-03-31 13:42:10', '2025-03-31 13:43:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399812529010001', 2, 4, 1, 'ASRS-0527', 'A01-39-08', NULL, '1743399813531010000', '2025-03-31 13:43:33', '2025-03-31 13:44:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399870531010000', 2, 4, 1, 'ASRS-1034', 'A01-40-07', NULL, '1743399871530010000', '2025-03-31 13:44:31', '2025-03-31 13:45:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743399952518010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743399953530010000', '2025-03-31 13:45:53', '2025-03-31 13:47:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400096518010001', 2, 4, 1, 'ASRS-0306', 'A02-42-02', NULL, '1743400097530010000', '2025-03-31 13:48:17', '2025-03-31 13:49:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400096518010004', 2, 4, 1, 'ASRS-0316', 'A04-34-06', NULL, '1743400097530010001', '2025-03-31 13:48:17', '2025-03-31 13:49:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400146541010001', 2, 4, 1, 'ASRS-0338', 'A01-41-06', NULL, '1743400147530010000', '2025-03-31 13:49:07', '2025-03-31 13:50:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400296518010001', 2, 4, 1, 'ASRS-1031', 'A01-42-05', NULL, '1743400297535010000', '2025-03-31 13:51:37', '2025-03-31 13:52:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400406527010001', 2, 4, 1, 'ASRS-1683', 'A01-35-10', NULL, '1743400407535010000', '2025-03-31 13:53:27', '2025-03-31 13:54:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400601542010001', 2, 4, 1, 'ASRS-0315', 'A03-31-04', NULL, '1743400602533010000', '2025-03-31 13:56:42', '2025-03-31 13:57:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400601542010004', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1743400602533010001', '2025-03-31 13:56:42', '2025-03-31 13:57:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400645529010000', 2, 4, 1, 'ASRS-0304', 'A04-31-04', NULL, '1743400646535010000', '2025-03-31 13:57:26', '2025-03-31 13:58:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400647518010001', 2, 4, 1, 'ASRS-0313', 'A01-39-02', NULL, '1743400648530010000', '2025-03-31 13:57:28', '2025-03-31 13:58:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400696531010001', 2, 4, 1, 'ASRS-0388', 'A04-32-03', NULL, '1743400697535010000', '2025-03-31 13:58:17', '2025-03-31 13:59:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400706531010001', 2, 4, 1, 'ASRS-1900', 'A02-36-08', NULL, '1743400707530010000', '2025-03-31 13:58:27', '2025-03-31 13:59:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400747532010001', 2, 4, 1, 'ASRS-0520', 'A04-31-05', NULL, '1743400748535010000', '2025-03-31 13:59:08', '2025-03-31 13:59:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400762529010001', 2, 4, 1, 'ASRS-0334', 'A01-39-06', NULL, '1743400763530010000', '2025-03-31 13:59:23', '2025-03-31 14:00:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400906529010000', 2, 4, 1, 'ASRS-0350', 'A01-34-11', NULL, '1743400907535010000', '2025-03-31 14:01:47', '2025-03-31 14:02:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400906529010003', 2, 4, 1, 'ASRS-0384', 'A03-29-06', NULL, '1743400907535010001', '2025-03-31 14:01:47', '2025-03-31 14:02:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400964528010001', 2, 4, 1, 'ASRS-1436', 'A04-30-09', NULL, '1743400965530010000', '2025-03-31 14:02:45', '2025-03-31 14:03:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743400978529010001', 2, 4, 1, 'ASRS-1027', 'A01-42-02', NULL, '1743400979529010000', '2025-03-31 14:02:59', '2025-03-31 14:04:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401136540010001', 2, 4, 1, 'ASRS-0324', 'A01-41-04', NULL, '1743401137529010000', '2025-03-31 14:05:37', '2025-03-31 14:06:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401136540010004', 2, 4, 1, 'ASRS-0305', 'A03-35-04', NULL, '1743401137529010001', '2025-03-31 14:05:37', '2025-03-31 14:06:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401182518010001', 2, 4, 1, 'ASRS-0340', 'A04-29-10', NULL, '1743401183528010000', '2025-03-31 14:06:23', '2025-03-31 14:07:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401186539010001', 2, 4, 1, 'ASRS-1245', 'A01-29-07', NULL, '1743401187529010000', '2025-03-31 14:06:27', '2025-03-31 14:07:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401257528010001', 2, 4, 1, 'ASRS-0336', 'A04-31-08', NULL, '1743401258535010000', '2025-03-31 14:07:38', '2025-03-31 14:08:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401271536010001', 2, 4, 1, 'ASRS-0331', 'A02-36-09', NULL, '1743401272535010000', '2025-03-31 14:07:52', '2025-03-31 14:08:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401308529010000', 2, 4, 1, 'ASRS-1027', 'A04-30-09', NULL, '1743401309534010000', '2025-03-31 14:08:29', '2025-03-31 14:09:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401391518010001', 2, 4, 1, 'ASRS-1529', 'A04-38-02', NULL, '1743401392529010000', '2025-03-31 14:09:52', '2025-03-31 14:11:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401536528010001', 2, 4, 1, 'ASRS-0318', 'A03-31-06', NULL, '1743401537530010000', '2025-03-31 14:12:17', '2025-03-31 14:12:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401536529010001', 2, 4, 1, 'ASRS-0383', 'A02-32-11', NULL, '1743401537530010001', '2025-03-31 14:12:17', '2025-03-31 14:13:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401580529010001', 2, 4, 1, 'ASRS-1268', 'A03-32-08', NULL, '1743401581530010000', '2025-03-31 14:13:01', '2025-03-31 14:13:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401591530010001', 2, 4, 1, 'ASRS-0329', 'A02-37-08', NULL, '1743401592535010000', '2025-03-31 14:13:12', '2025-03-31 14:14:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401737392010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A04-31-08', '1743401807882010000', '2025-03-31 14:15:37', '2025-03-31 14:17:42', '1007000', 140, 0, '管理员', NULL, NULL, 'P3', 'Ring-back up'); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401766518010001', 2, 4, 1, 'ASRS-0364', 'A01-36-03', NULL, '1743401767528010000', '2025-03-31 14:16:07', '2025-03-31 14:16:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401871531010000', 2, 4, 1, 'ASRS-0317', 'A01-35-04', NULL, '1743401872529010000', '2025-03-31 14:17:52', '2025-03-31 14:18:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401871531010003', 2, 4, 1, 'ASRS-1902', 'A04-38-01', NULL, '1743401872529010001', '2025-03-31 14:17:52', '2025-03-31 14:18:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401918529010000', 2, 4, 1, 'ASRS-1034', 'A01-37-09', NULL, '1743401919534010000', '2025-03-31 14:18:39', '2025-03-31 14:19:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401920527010001', 2, 4, 1, 'ASRS-1221', 'A03-37-03', NULL, '1743401921536010000', '2025-03-31 14:18:41', '2025-03-31 14:19:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401973541010000', 2, 4, 1, 'ASRS-0527', 'A04-39-01', NULL, '1743401974534010000', '2025-03-31 14:19:34', '2025-03-31 14:20:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743401998530010001', 2, 4, 1, 'ASRS-0519', 'A02-40-04', NULL, '1743401999529010000', '2025-03-31 14:19:59', '2025-03-31 14:20:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402057528010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743402058528010000', '2025-03-31 14:20:58', '2025-03-31 14:22:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402251540010001', 2, 4, 1, 'ASRS-0306', 'A04-34-06', NULL, '1743402252536010000', '2025-03-31 14:24:12', '2025-03-31 14:24:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402251540010004', 2, 4, 1, 'ASRS-0316', 'A02-42-02', NULL, '1743402252536010001', '2025-03-31 14:24:12', '2025-03-31 14:24:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402299531010001', 2, 4, 1, 'ASRS-0338', 'A01-38-08', NULL, '1743402300529010000', '2025-03-31 14:25:00', '2025-03-31 14:26:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402446530010001', 2, 4, 1, 'ASRS-1031', 'A01-39-08', NULL, '1743402447530010000', '2025-03-31 14:27:27', '2025-03-31 14:28:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402621527010001', 2, 4, 1, 'ASRS-1683', 'A01-35-10', NULL, '1743402622533010000', '2025-03-31 14:30:22', '2025-03-31 14:31:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402756535010000', 2, 4, 1, 'ASRS-0315', 'A01-34-06', NULL, '1743402757535010000', '2025-03-31 14:32:37', '2025-03-31 14:34:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402756535010003', 2, 4, 1, 'ASRS-0332', 'A03-31-04', NULL, '1743402757535010001', '2025-03-31 14:32:37', '2025-03-31 14:33:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402800529010001', 2, 4, 1, 'ASRS-0313', 'A04-31-04', NULL, '1743402801530010000', '2025-03-31 14:33:21', '2025-03-31 14:34:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402848529010001', 2, 4, 1, 'ASRS-0304', 'A01-39-02', NULL, '1743402849529010000', '2025-03-31 14:34:09', '2025-03-31 14:35:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402850531010001', 2, 4, 1, 'ASRS-0334', 'A04-31-05', NULL, '1743402851535010000', '2025-03-31 14:34:11', '2025-03-31 14:34:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743402906529010001', 2, 4, 1, 'ASRS-0520', 'A01-39-06', NULL, '1743402907536010000', '2025-03-31 14:35:07', '2025-03-31 14:36:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403076518010001', 2, 4, 1, 'ASRS-0388', 'A02-36-08', NULL, '1743403077535010000', '2025-03-31 14:37:57', '2025-03-31 14:38:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403076518010004', 2, 4, 1, 'ASRS-0350', 'A03-29-06', NULL, '1743403077535010001', '2025-03-31 14:37:57', '2025-03-31 14:38:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403119528010001', 2, 4, 1, 'ASRS-0334', 'A04-31-04', NULL, '1743403120529010000', '2025-03-31 14:38:40', '2025-03-31 14:39:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403138531010001', 2, 4, 1, 'ASRS-1436', 'A01-42-02', NULL, '1743403139529010000', '2025-03-31 14:38:59', '2025-03-31 14:40:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403486530010001', 2, 4, 1, 'ASRS-0305', 'A01-29-07', NULL, '1743403487535010000', '2025-03-31 14:44:47', '2025-03-31 14:45:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403559527010001', 2, 4, 1, 'ASRS-0340', 'A01-41-04', NULL, '1743403560528010000', '2025-03-31 14:46:00', '2025-03-31 14:47:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403641518010001', 2, 4, 1, 'ASRS-1027', 'A01-40-07', NULL, '1743403642535010000', '2025-03-31 14:47:22', '2025-03-31 14:48:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403700528010001', 2, 4, 1, 'ASRS-1032', 'A01-32-11', NULL, '1743403701529010000', '2025-03-31 14:48:21', '2025-03-31 14:49:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403811529010001', 2, 4, 1, 'ASRS-0324', 'A03-35-04', NULL, '1743403812530010000', '2025-03-31 14:50:12', '2025-03-31 14:50:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403811529010004', 2, 4, 1, 'ASRS-0333', 'A02-41-01', NULL, '1743403812530010001', '2025-03-31 14:50:12', '2025-03-31 14:51:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403856518010001', 2, 4, 1, 'ASRS-0331', 'A04-30-09', NULL, '1743403857530010000', '2025-03-31 14:50:57', '2025-03-31 14:52:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403887535010001', 2, 4, 1, 'ASRS-1902', 'A01-35-04', NULL, '1743403888530010000', '2025-03-31 14:51:28', '2025-03-31 14:52:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403943518010001', 2, 4, 1, 'ASRS-1526', 'A02-32-09', NULL, '1743403944534010000', '2025-03-31 14:52:24', '2025-03-31 14:53:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743403997529010000', 2, 4, 1, 'ASRS-1027', 'A01-32-11', NULL, '1743403998530010000', '2025-03-31 14:53:18', '2025-03-31 14:54:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404082518010001', 2, 4, 1, 'ASRS-1529', 'A01-41-06', NULL, '1743404083535010000', '2025-03-31 14:54:43', '2025-03-31 14:56:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404165528010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743404166529010000', '2025-03-31 14:56:06', '2025-03-31 14:57:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404306528010000', 2, 4, 1, 'ASRS-0306', 'A02-42-02', NULL, '1743404307529010000', '2025-03-31 14:58:27', '2025-03-31 14:59:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404306528010003', 2, 4, 1, 'ASRS-0316', 'A04-34-06', NULL, '1743404307529010001', '2025-03-31 14:58:27', '2025-03-31 14:59:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404357529010001', 2, 4, 1, 'ASRS-1221', 'A01-37-09', NULL, '1743404358529010000', '2025-03-31 14:59:18', '2025-03-31 15:00:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404414518010001', 2, 4, 1, 'ASRS-0338', 'A01-38-08', NULL, '1743404415530010000', '2025-03-31 15:00:15', '2025-03-31 15:01:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404546529010001', 2, 4, 1, 'ASRS-1034', 'A03-32-08', NULL, '1743404547530010000', '2025-03-31 15:02:27', '2025-03-31 15:03:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404599535010001', 2, 4, 1, 'ASRS-0519', 'A03-37-03', NULL, '1743404600530010000', '2025-03-31 15:03:20', '2025-03-31 15:04:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404811530010001', 2, 4, 1, 'ASRS-0318', 'A02-32-11', NULL, '1743404812530010000', '2025-03-31 15:06:52', '2025-03-31 15:07:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743404859530010001', 2, 4, 1, 'ASRS-1031', 'A01-39-08', NULL, '1743404860530010000', '2025-03-31 15:07:40', '2025-03-31 15:08:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405071536010001', 2, 4, 1, 'ASRS-1524', 'A03-33-08', NULL, '1743405072530010000', '2025-03-31 15:11:12', '2025-03-31 15:12:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405071536010004', 2, 4, 1, 'ASRS-0337', 'A01-36-09', NULL, '1743405072530010001', '2025-03-31 15:11:12', '2025-03-31 15:12:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405201533010001', 2, 4, 1, 'ASRS-0522', 'A03-38-04', NULL, '1743405202529010000', '2025-03-31 15:13:22', '2025-03-31 15:14:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405201533010004', 2, 4, 1, 'ASRS-1088', 'A01-31-08', NULL, '1743405202529010001', '2025-03-31 15:13:22', '2025-03-31 15:14:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405466528010001', 2, 4, 1, 'ASRS-0315', 'A01-39-02', NULL, '1743405467535010000', '2025-03-31 15:17:47', '2025-03-31 15:18:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405466528010004', 2, 4, 1, 'ASRS-0313', 'A03-31-04', NULL, '1743405467535010001', '2025-03-31 15:17:47', '2025-03-31 15:18:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405511531010001', 2, 4, 1, 'ASRS-0388', 'A03-29-06', NULL, '1743405512530010000', '2025-03-31 15:18:32', '2025-03-31 15:19:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405517529010001', 2, 4, 1, 'ASRS-0332', 'A01-34-06', NULL, '1743405518530010000', '2025-03-31 15:18:38', '2025-03-31 15:19:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405561529010001', 2, 4, 1, 'ASRS-1900', 'A04-32-03', NULL, '1743405562530010000', '2025-03-31 15:19:22', '2025-03-31 15:20:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405573518010001', 2, 4, 1, 'ASRS-0304', 'A01-39-06', NULL, '1743405574530010000', '2025-03-31 15:19:34', '2025-03-31 15:20:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405631531010000', 2, 4, 1, 'ASRS-0520', 'A01-42-05', NULL, '1743405632535010000', '2025-03-31 15:20:32', '2025-03-31 15:21:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405716530010001', 2, 4, 1, 'ASRS-0334', 'A02-36-08', NULL, '1743405717529010000', '2025-03-31 15:21:57', '2025-03-31 15:23:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405876530010001', 2, 4, 1, 'ASRS-0350', 'A01-42-02', NULL, '1743405877535010000', '2025-03-31 15:24:37', '2025-03-31 15:25:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405876530010004', 2, 4, 1, 'ASRS-1436', 'A04-31-04', NULL, '1743405877535010001', '2025-03-31 15:24:37', '2025-03-31 15:25:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743405934529010001', 2, 4, 1, 'ASRS-0384', 'A01-34-11', NULL, '1743405935530010000', '2025-03-31 15:25:35', '2025-03-31 15:26:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406017518010001', 2, 4, 1, 'ASRS-1027', 'A02-32-09', NULL, '1743406018530010000', '2025-03-31 15:26:58', '2025-03-31 15:27:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406239568010001', 2, 4, 9, 'ASRS-0301', 'A01-37-10', NULL, '1743406240530010000', '2025-03-31 15:30:40', '2025-03-31 15:31:27', '000000000', 0, 0, '管理员', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406395538010001', 2, 4, 1, 'ASRS-0324', 'A02-41-01', NULL, '1743406396530010000', '2025-03-31 15:33:16', '2025-03-31 15:34:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406395539010002', 2, 4, 1, 'ASRS-0340', 'A04-31-05', NULL, '1743406396530010001', '2025-03-31 15:33:16', '2025-03-31 15:34:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406445529010001', 2, 4, 1, 'ASRS-0517', 'A04-36-04', NULL, '1743406446535010000', '2025-03-31 15:34:06', '2025-03-31 15:34:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406450528010001', 2, 4, 1, 'ASRS-0305', 'A01-29-07', NULL, '1743406451530010000', '2025-03-31 15:34:11', '2025-03-31 15:35:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406531543010001', 2, 4, 1, 'ASRS-0336', 'A02-36-09', NULL, '1743406532535010000', '2025-03-31 15:35:32', '2025-03-31 15:36:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406588530010001', 2, 4, 1, 'ASRS-1027', 'A01-34-11', NULL, '1743406589534010000', '2025-03-31 15:36:29', '2025-03-31 15:37:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406672528010001', 2, 4, 1, 'ASRS-1529', 'A01-32-11', NULL, '1743406673535010000', '2025-03-31 15:37:53', '2025-03-31 15:39:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406750528010001', 2, 4, 1, 'ASRS-0359', 'A01-37-06', NULL, '1743406751530010000', '2025-03-31 15:39:11', '2025-03-31 15:40:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406830529010001', 2, 4, 1, 'ASRS-0331', 'A01-35-04', NULL, '1743406831530010000', '2025-03-31 15:40:31', '2025-03-31 15:41:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743406971518010001', 2, 4, 1, 'ASRS-0298', 'A04-31-08', NULL, '1743406972535010000', '2025-03-31 15:42:52', '2025-03-31 15:43:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407086529010001', 2, 4, 1, 'ASRS-0318', 'A02-32-11', NULL, '1743407087529010000', '2025-03-31 15:44:47', '2025-03-31 15:45:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407086529010004', 2, 4, 1, 'ASRS-0383', 'A03-31-06', NULL, '1743407087530010000', '2025-03-31 15:44:47', '2025-03-31 15:45:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407130529010001', 2, 4, 1, 'ASRS-0329', 'A02-37-08', NULL, '1743407131530010000', '2025-03-31 15:45:31', '2025-03-31 15:46:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407276518010001', 2, 4, 1, 'ASRS-0317', 'A04-38-01', NULL, '1743407277535010000', '2025-03-31 15:47:57', '2025-03-31 15:48:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407276518010004', 2, 4, 1, 'ASRS-0527', 'A02-40-04', NULL, '1743407277535010001', '2025-03-31 15:47:57', '2025-03-31 15:48:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407323529010000', 2, 4, 1, 'ASRS-1902', 'A04-30-09', NULL, '1743407324534010000', '2025-03-31 15:48:44', '2025-03-31 15:49:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407326518010001', 2, 4, 1, 'ASRS-1034', 'A01-37-09', NULL, '1743407327535010000', '2025-03-31 15:48:47', '2025-03-31 15:50:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407373518010001', 2, 4, 1, 'ASRS-1221', 'A03-34-08', NULL, '1743407374530010000', '2025-03-31 15:49:34', '2025-03-31 15:50:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407407518010001', 2, 4, 1, 'ASRS-0519', 'A01-38-08', NULL, '1743407408530010000', '2025-03-31 15:50:08', '2025-03-31 15:51:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407466518010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743407467535010000', '2025-03-31 15:51:07', '2025-03-31 15:52:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407636518010001', 2, 4, 1, 'ASRS-0306', 'A02-42-02', NULL, '1743407637529010000', '2025-03-31 15:53:57', '2025-03-31 15:54:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407636518010004', 2, 4, 1, 'ASRS-0316', 'A04-34-06', NULL, '1743407637529010001', '2025-03-31 15:53:57', '2025-03-31 15:54:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407686529010001', 2, 4, 1, 'ASRS-0338', 'A01-41-04', NULL, '1743407687530010000', '2025-03-31 15:54:47', '2025-03-31 15:56:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743407836527010001', 2, 4, 1, 'ASRS-1031', 'A03-32-08', NULL, '1743407837528010000', '2025-03-31 15:57:17', '2025-03-31 15:58:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408116518010001', 2, 4, 1, 'ASRS-0315', 'A03-29-06', NULL, '1743408117530010000', '2025-03-31 16:01:57', '2025-03-31 16:02:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408116518010004', 2, 4, 1, 'ASRS-0388', 'A01-39-02', NULL, '1743408117530010001', '2025-03-31 16:01:57', '2025-03-31 16:02:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408160529010000', 2, 4, 1, 'ASRS-0332', 'A03-31-04', NULL, '1743408161530010000', '2025-03-31 16:02:41', '2025-03-31 16:03:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408164518010001', 2, 4, 1, 'ASRS-1900', 'A01-39-06', NULL, '1743408165530010000', '2025-03-31 16:02:45', '2025-03-31 16:03:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408211529010001', 2, 4, 1, 'ASRS-0304', 'A04-32-03', NULL, '1743408212535010000', '2025-03-31 16:03:32', '2025-03-31 16:04:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408222518010001', 2, 4, 1, 'ASRS-0520', 'A02-36-08', NULL, '1743408223535010000', '2025-03-31 16:03:43', '2025-03-31 16:04:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408279539010000', 2, 4, 1, 'ASRS-0334', 'A01-39-08', NULL, '1743408280530010000', '2025-03-31 16:04:40', '2025-03-31 16:05:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408337518010001', 2, 4, 1, 'ASRS-0313', 'A01-34-06', NULL, '1743408338535010000', '2025-03-31 16:05:38', '2025-03-31 16:06:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408531530010001', 2, 4, 1, 'ASRS-0350', 'A01-42-02', NULL, '1743408532529010000', '2025-03-31 16:08:52', '2025-03-31 16:09:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408531530010004', 2, 4, 1, 'ASRS-1027', 'A04-36-04', NULL, '1743408532529010001', '2025-03-31 16:08:52', '2025-03-31 16:09:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743408582531010001', 2, 4, 1, 'ASRS-0384', 'A02-32-09', NULL, '1743408583530010000', '2025-03-31 16:09:43', '2025-03-31 16:11:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467601518010001', 2, 4, 1, 'ASRS-0324', 'A04-31-04', NULL, '1743467602533010000', '2025-04-01 08:33:22', '2025-04-01 08:34:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467601518010004', 2, 4, 1, 'ASRS-0340', 'A02-41-01', NULL, '1743467602533010001', '2025-04-01 08:33:22', '2025-04-01 08:34:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467664529010001', 2, 4, 1, 'ASRS-0336', 'A02-36-09', NULL, '1743467665532010000', '2025-04-01 08:34:25', '2025-04-01 08:35:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467686518010001', 2, 4, 1, 'ASRS-0305', 'A04-31-05', NULL, '1743467687537010000', '2025-04-01 08:34:47', '2025-04-01 08:35:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467736518010001', 2, 4, 1, 'ASRS-0331', 'A04-31-08', NULL, '1743467737536010000', '2025-04-01 08:35:37', '2025-04-01 08:36:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467747531010000', 2, 4, 1, 'ASRS-0517', 'A01-29-07', NULL, '1743467748551010000', '2025-04-01 08:35:48', '2025-04-01 08:36:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467801530010001', 2, 4, 1, 'ASRS-1027', 'A02-32-09', NULL, '1743467802535010000', '2025-04-01 08:36:42', '2025-04-01 08:37:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743467856518010001', 2, 4, 1, 'ASRS-0359', 'A01-32-11', NULL, '1743467857535010000', '2025-04-01 08:37:37', '2025-04-01 08:38:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468071528010001', 2, 4, 1, 'ASRS-0318', 'A02-32-11', NULL, '1743468072535010000', '2025-04-01 08:41:12', '2025-04-01 08:42:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468071529010001', 2, 4, 1, 'ASRS-0383', 'A03-31-06', NULL, '1743468072535010001', '2025-04-01 08:41:12', '2025-04-01 08:42:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468163536010001', 2, 4, 1, 'ASRS-0329', 'A01-34-11', NULL, '1743468164530010000', '2025-04-01 08:42:44', '2025-04-01 08:44:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468326529010001', 2, 4, 1, 'ASRS-0317', 'A04-30-09', NULL, '1743468327535010000', '2025-04-01 08:45:27', '2025-04-01 08:46:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468326530010001', 2, 4, 1, 'ASRS-1902', 'A02-37-08', NULL, '1743468327535010001', '2025-04-01 08:45:27', '2025-04-01 08:46:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468370528010001', 2, 4, 1, 'ASRS-1034', 'A04-38-01', NULL, '1743468371536010000', '2025-04-01 08:46:11', '2025-04-01 08:47:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468375527010001', 2, 4, 1, 'ASRS-0527', 'A02-40-04', NULL, '1743468376530010000', '2025-04-01 08:46:16', '2025-04-01 08:47:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468423531010001', 2, 4, 1, 'ASRS-0519', 'A03-34-08', NULL, '1743468424531010000', '2025-04-01 08:47:04', '2025-04-01 08:47:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468459539010001', 2, 4, 1, 'ASRS-1221', 'A01-37-09', NULL, '1743468460529010000', '2025-04-01 08:47:40', '2025-04-01 08:48:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468517529010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743468518535010000', '2025-04-01 08:48:38', '2025-04-01 08:49:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468666518010001', 2, 4, 1, 'ASRS-0306', 'A04-34-06', NULL, '1743468667529010000', '2025-04-01 08:51:07', '2025-04-01 08:51:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468666518010004', 2, 4, 1, 'ASRS-0316', 'A02-42-02', NULL, '1743468667529010001', '2025-04-01 08:51:07', '2025-04-01 08:52:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468735529010001', 2, 4, 1, 'ASRS-0338', 'A01-41-04', NULL, '1743468736530010000', '2025-04-01 08:52:16', '2025-04-01 08:53:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743468846529010001', 2, 4, 1, 'ASRS-1031', 'A01-38-08', NULL, '1743468847530010000', '2025-04-01 08:54:07', '2025-04-01 08:54:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469241518010001', 2, 4, 1, 'ASRS-0315', 'A01-39-02', NULL, '1743469242529010000', '2025-04-01 09:00:42', '2025-04-01 09:01:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469241518010004', 2, 4, 1, 'ASRS-0388', 'A03-29-06', NULL, '1743469242529010001', '2025-04-01 09:00:42', '2025-04-01 09:01:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469286528010000', 2, 4, 1, 'ASRS-1900', 'A03-31-04', NULL, '1743469287529010000', '2025-04-01 09:01:27', '2025-04-01 09:02:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469290526010001', 2, 4, 1, 'ASRS-0332', 'A02-36-08', NULL, '1743469291536010000', '2025-04-01 09:01:31', '2025-04-01 09:02:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469337529010001', 2, 4, 1, 'ASRS-0520', 'A04-32-03', NULL, '1743469338536010000', '2025-04-01 09:02:18', '2025-04-01 09:03:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469348518010001', 2, 4, 1, 'ASRS-0304', 'A01-34-06', NULL, '1743469349534010000', '2025-04-01 09:02:29', '2025-04-01 09:03:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469388518010001', 2, 4, 1, 'ASRS-0313', 'A03-32-08', NULL, '1743469389530010000', '2025-04-01 09:03:09', '2025-04-01 09:03:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469404529010001', 2, 4, 1, 'ASRS-0334', 'A01-39-06', NULL, '1743469405529010000', '2025-04-01 09:03:25', '2025-04-01 09:04:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469926530010001', 2, 4, 1, 'ASRS-0350', 'A04-36-04', NULL, '1743469927530010000', '2025-04-01 09:12:07', '2025-04-01 09:13:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469926530010004', 2, 4, 1, 'ASRS-0384', 'A01-42-02', NULL, '1743469927530010001', '2025-04-01 09:12:07', '2025-04-01 09:13:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743469992531010001', 2, 4, 1, 'ASRS-1027', 'A01-32-11', NULL, '1743469993536010000', '2025-04-01 09:13:13', '2025-04-01 09:14:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470311527010001', 2, 4, 1, 'ASRS-0324', 'A04-31-04', NULL, '1743470312533010000', '2025-04-01 09:18:32', '2025-04-01 09:19:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470311527010004', 2, 4, 1, 'ASRS-0305', 'A02-32-09', NULL, '1743470312533010001', '2025-04-01 09:18:32', '2025-04-01 09:19:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470355542010001', 2, 4, 1, 'ASRS-1245', 'A04-29-10', NULL, '1743470356535010000', '2025-04-01 09:19:16', '2025-04-01 09:20:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470357530010001', 2, 4, 1, 'ASRS-0340', 'A01-29-07', NULL, '1743470358530010000', '2025-04-01 09:19:18', '2025-04-01 09:20:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470406530010001', 2, 4, 1, 'ASRS-0336', 'A04-31-05', NULL, '1743470407534010000', '2025-04-01 09:20:07', '2025-04-01 09:20:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470440529010001', 2, 4, 1, 'ASRS-1027', 'A01-42-02', NULL, '1743470441530010000', '2025-04-01 09:20:41', '2025-04-01 09:21:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470457529010001', 2, 4, 1, 'ASRS-0331', 'A04-31-08', NULL, '1743470458535010000', '2025-04-01 09:20:58', '2025-04-01 09:21:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470500529010001', 2, 4, 1, 'ASRS-0359', 'A02-41-01', NULL, '1743470501531010000', '2025-04-01 09:21:41', '2025-04-01 09:23:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470656527010001', 2, 4, 1, 'ASRS-0318', 'A03-31-06', NULL, '1743470657529010000', '2025-04-01 09:24:17', '2025-04-01 09:24:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470656528010001', 2, 4, 1, 'ASRS-0383', 'A02-32-11', NULL, '1743470657529010001', '2025-04-01 09:24:17', '2025-04-01 09:25:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743470717529010001', 2, 4, 1, 'ASRS-0329', 'A01-34-11', NULL, '1743470718530010000', '2025-04-01 09:25:18', '2025-04-01 09:26:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743471911518010001', 2, 4, 1, 'ASRS-0317', 'A02-40-04', NULL, '1743471912530010000', '2025-04-01 09:45:12', '2025-04-01 09:46:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743471911518010004', 2, 4, 1, 'ASRS-1902', 'A04-30-09', NULL, '1743471912530010001', '2025-04-01 09:45:12', '2025-04-01 09:45:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743471955530010001', 2, 4, 1, 'ASRS-0527', 'A04-38-01', NULL, '1743471956535010000', '2025-04-01 09:45:56', '2025-04-01 09:46:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743471962529010001', 2, 4, 1, 'ASRS-1034', 'A02-36-09', NULL, '1743471963536010000', '2025-04-01 09:46:03', '2025-04-01 09:47:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472008518010001', 2, 4, 1, 'ASRS-1221', 'A03-34-08', NULL, '1743472009534010000', '2025-04-01 09:46:49', '2025-04-01 09:47:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472042528010001', 2, 4, 1, 'ASRS-0519', 'A02-37-08', NULL, '1743472043535010000', '2025-04-01 09:47:23', '2025-04-01 09:48:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472099537010001', 2, 4, 1, 'ASRS-0303', 'A02-33-10', NULL, '1743472100530010000', '2025-04-01 09:48:20', '2025-04-01 09:49:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472261542010001', 2, 4, 1, 'ASRS-0306', 'A04-34-06', NULL, '1743472262530010000', '2025-04-01 09:51:02', '2025-04-01 09:52:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472261542010004', 2, 4, 1, 'ASRS-0316', 'A02-42-02', NULL, '1743472262530010001', '2025-04-01 09:51:02', '2025-04-01 09:52:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472351536010001', 2, 4, 1, 'ASRS-0338', 'A01-41-04', NULL, '1743472352529010000', '2025-04-01 09:52:32', '2025-04-01 09:53:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472506518010001', 2, 4, 1, 'ASRS-1031', 'A01-37-09', NULL, '1743472507535010000', '2025-04-01 09:55:07', '2025-04-01 09:55:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472681529010001', 2, 4, 1, 'ASRS-1683', 'A01-35-10', NULL, '1743472682535010000', '2025-04-01 09:58:02', '2025-04-01 09:58:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472876530010001', 2, 4, 1, 'ASRS-0315', 'A03-29-06', NULL, '1743472877535010000', '2025-04-01 10:01:17', '2025-04-01 10:02:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472876530010004', 2, 4, 1, 'ASRS-0304', 'A01-38-08', NULL, '1743472877535010001', '2025-04-01 10:01:17', '2025-04-01 10:02:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472921528010001', 2, 4, 1, 'ASRS-0332', 'A03-31-04', NULL, '1743472922530010000', '2025-04-01 10:02:02', '2025-04-01 10:02:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472925529010001', 2, 4, 1, 'ASRS-0388', 'A01-34-06', NULL, '1743472926530010000', '2025-04-01 10:02:06', '2025-04-01 10:03:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472971529010001', 2, 4, 1, 'ASRS-0313', 'A04-32-03', NULL, '1743472972530010000', '2025-04-01 10:02:52', '2025-04-01 10:03:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743472981518010001', 2, 4, 1, 'ASRS-0350', 'A01-32-11', NULL, '1743472982535010000', '2025-04-01 10:03:02', '2025-04-01 10:03:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473036518010001', 2, 4, 1, 'ASRS-0520', 'A01-39-06', NULL, '1743473037535010000', '2025-04-01 10:03:57', '2025-04-01 10:05:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473119518010001', 2, 4, 1, 'ASRS-0334', 'A02-36-08', NULL, '1743473120531010000', '2025-04-01 10:05:20', '2025-04-01 10:06:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473266529010001', 2, 4, 1, 'ASRS-0324', 'A01-29-07', NULL, '1743473267535010000', '2025-04-01 10:07:47', '2025-04-01 10:08:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473266529010004', 2, 4, 1, 'ASRS-0305', 'A04-31-04', NULL, '1743473267535010001', '2025-04-01 10:07:47', '2025-04-01 10:08:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473310540010001', 2, 4, 1, 'ASRS-0340', 'A04-31-05', NULL, '1743473311530010000', '2025-04-01 10:08:31', '2025-04-01 10:09:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473361528010001', 2, 4, 1, 'ASRS-1027', 'A04-29-10', NULL, '1743473362536010000', '2025-04-01 10:09:22', '2025-04-01 10:10:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473412528010001', 2, 4, 1, 'ASRS-1032', 'A04-38-02', NULL, '1743473413529010000', '2025-04-01 10:10:13', '2025-04-01 10:11:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473490529010001', 2, 4, 1, 'ASRS-0359', 'A04-31-08', NULL, '1743473491535010000', '2025-04-01 10:11:31', '2025-04-01 10:12:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473606529010000', 2, 4, 1, 'ASRS-0306', 'A02-42-02', NULL, '1743473607530010000', '2025-04-01 10:13:27', '2025-04-01 10:14:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473606529010003', 2, 4, 1, 'ASRS-0333', 'A03-35-04', NULL, '1743473607530010001', '2025-04-01 10:13:27', '2025-04-01 10:14:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473659518010001', 2, 4, 1, 'ASRS-1526', 'A04-39-01', NULL, '1743473660528010000', '2025-04-01 10:14:20', '2025-04-01 10:15:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473692518010001', 2, 4, 1, 'ASRS-1902', 'A02-36-09', NULL, '1743473693529010000', '2025-04-01 10:14:53', '2025-04-01 10:15:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473738518010001', 2, 4, 1, 'ASRS-1221', 'A04-38-01', NULL, '1743473739534010000', '2025-04-01 10:15:39', '2025-04-01 10:16:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473749528010001', 2, 4, 1, 'ASRS-0331', 'A02-41-01', NULL, '1743473750530010000', '2025-04-01 10:15:50', '2025-04-01 10:16:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473792518010001', 2, 4, 1, 'ASRS-0303', 'A04-36-04', NULL, '1743473793529010000', '2025-04-01 10:16:33', '2025-04-01 10:17:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473936518010001', 2, 4, 1, 'ASRS-1034', 'A02-33-10', NULL, '1743473937529010000', '2025-04-01 10:18:57', '2025-04-01 10:19:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743473997529010001', 2, 4, 1, 'ASRS-0519', 'A02-37-08', NULL, '1743473998530010000', '2025-04-01 10:19:58', '2025-04-01 10:21:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474156530010001', 2, 4, 1, 'ASRS-0316', 'A04-34-06', NULL, '1743474157535010000', '2025-04-01 10:22:37', '2025-04-01 10:23:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474156530010004', 2, 4, 1, 'ASRS-0338', 'A01-41-04', NULL, '1743474157535010001', '2025-04-01 10:22:37', '2025-04-01 10:23:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474208529010001', 2, 4, 1, 'ASRS-1031', 'A01-37-09', NULL, '1743474209530010000', '2025-04-01 10:23:29', '2025-04-01 10:24:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474341529010001', 2, 4, 1, 'ASRS-0337', 'A03-37-03', NULL, '1743474342529010000', '2025-04-01 10:25:42', '2025-04-01 10:26:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474386541010001', 2, 4, 1, 'ASRS-0501', 'A04-37-03', NULL, '1743474387535010000', '2025-04-01 10:26:27', '2025-04-01 10:27:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474546534010001', 2, 4, 1, 'ASRS-1524', 'A01-36-09', NULL, '1743474547529010000', '2025-04-01 10:29:07', '2025-04-01 10:29:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743474596529010001', 2, 4, 1, 'ASRS-0522', 'A01-31-08', NULL, '1743474597530010000', '2025-04-01 10:29:57', '2025-04-01 10:31:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1743478876528010001', 2, 4, 1, 'ASRS-1088', 'A03-33-08', NULL, '1743478877530010000', '2025-04-01 11:41:17', '2025-04-01 11:42:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1744534428353010000', 2, 4, 2, 'ASRS-0326', 'A02-23-09', NULL, NULL, '2025-04-13 16:53:48', NULL, '000000000', 0, 0, '管理员', NULL, '', 'P1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('1744535455421010000', 2, 4, 2, 'ASRS-0326', 'A02-23-09', NULL, NULL, '2025-04-13 17:10:55', NULL, '000000000', 0, 0, '管理员', NULL, '', 'P1', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742627181353010000', 1, 4, 1, 'ASRS-0348', 'P3', 'A02-35-08', '1742627207227010000', '2025-03-22 15:06:21', '2025-03-22 15:07:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742627210434010000', 1, 4, 1, 'ASRS-0347', 'P3', 'A04-32-07', '1742627236328010000', '2025-03-22 15:06:50', '2025-03-22 15:08:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742775892056010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-34-06', '1742775918384010000', '2025-03-24 08:24:52', '2025-03-24 08:26:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742775899650010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A03-31-04', '1742775925565010000', '2025-03-24 08:25:00', '2025-03-24 08:26:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742775927693010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-39-02', '1742775953481010000', '2025-03-24 08:25:28', '2025-03-24 08:27:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742775951694010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A04-34-06', '1742775979268010000', '2025-03-24 08:25:52', '2025-03-24 08:27:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742775982269010000', 1, 4, 1, 'ASRS-0302', 'P3', 'A02-32-09', '1742776008061010000', '2025-03-24 08:26:22', '2025-03-24 08:27:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776208705010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-41-01', '1742776234587010000', '2025-03-24 08:30:09', '2025-03-24 08:31:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776463386010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-42-02', '1742776489278010000', '2025-03-24 08:34:23', '2025-03-24 08:35:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776495026010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A03-37-04', '1742776520763010000', '2025-03-24 08:34:55', '2025-03-24 08:36:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776524675010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A02-34-11', '1742776550479010000', '2025-03-24 08:35:25', '2025-03-24 08:37:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776684852010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-29-07', '1742776710673010000', '2025-03-24 08:38:05', '2025-03-24 08:39:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776707945010001', 1, 4, 1, 'ASRS-0329', 'P3', 'A04-29-06', '1742776733798010000', '2025-03-24 08:38:28', '2025-03-24 08:39:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776734638010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A01-41-03', '1742776760483010000', '2025-03-24 08:38:55', '2025-03-24 08:40:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776764564010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-31-05', '1742776790466010000', '2025-03-24 08:39:25', '2025-03-24 08:40:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742776836661010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-39-06', '1742776862466010000', '2025-03-24 08:40:37', '2025-03-24 08:42:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777176255010000', 1, 4, 1, 'ASRS-0314', 'P3', 'A01-31-08', '1742777202087010000', '2025-03-24 08:46:16', '2025-03-24 08:47:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777256641010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A02-39-01', '1742777282476010000', '2025-03-24 08:47:37', '2025-03-24 08:49:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777293614010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A04-32-03', '1742777319697010000', '2025-03-24 08:48:14', '2025-03-24 08:49:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777388160010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A02-36-08', '1742777413889010000', '2025-03-24 08:49:48', '2025-03-24 08:51:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777437355010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A03-37-03', '1742777463075010000', '2025-03-24 08:50:37', '2025-03-24 08:52:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777482243010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A02-35-10', '1742777508081010000', '2025-03-24 08:51:22', '2025-03-24 08:52:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777668323010000', 1, 4, 1, 'ASRS-0330', 'P3', 'A02-37-03', '1742777694080010000', '2025-03-24 08:54:28', '2025-03-24 08:56:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777695068010000', 1, 4, 1, 'ASRS-0328', 'P3', 'A04-30-11', '1742777720776010000', '2025-03-24 08:54:55', '2025-03-24 08:56:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777836429010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A02-38-02', '1742777862377010000', '2025-03-24 08:57:16', '2025-03-24 08:59:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742777936499010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-41-04', '1742777962278010000', '2025-03-24 08:58:56', '2025-03-24 09:00:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778006678010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A02-42-03', '1742778032504010000', '2025-03-24 09:00:07', '2025-03-24 09:02:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778036611010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A03-32-03', '1742778062479010000', '2025-03-24 09:00:37', '2025-03-24 09:01:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778157012010000', 1, 4, 1, 'ASRS-0327', 'P3', 'A01-42-01', '1742778182795010000', '2025-03-24 09:02:37', '2025-03-24 09:04:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778173934010000', 1, 4, 1, 'ASRS-0274', 'P3', 'A04-31-04', '1742778199600010000', '2025-03-24 09:02:54', '2025-03-24 09:04:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778267889010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A01-35-11', '1742778293781010000', '2025-03-24 09:04:28', '2025-03-24 09:05:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778442586010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A01-35-11', '1742778468397010000', '2025-03-24 09:07:23', '2025-03-24 09:08:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778562782010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A01-36-10', '1742778588397010000', '2025-03-24 09:09:23', '2025-03-24 09:10:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778599861010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A03-29-06', '1742778625593010000', '2025-03-24 09:10:00', '2025-03-24 09:11:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742778714522010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A01-39-07', '1742778740193010000', '2025-03-24 09:11:55', '2025-03-24 09:13:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779025767010001', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1742779051597010000', '2025-03-24 09:17:06', '2025-03-24 09:18:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779082433010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-31-04', '1742779108286010000', '2025-03-24 09:18:02', '2025-03-24 09:19:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779112914010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A01-39-02', '1742779138603010000', '2025-03-24 09:18:33', '2025-03-24 09:19:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779154635010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A04-32-08', '1742779180304010000', '2025-03-24 09:19:15', '2025-03-24 09:20:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779197153010000', 1, 4, 1, 'ASRS-0302', 'P3', 'A02-32-09', '1742779222906010000', '2025-03-24 09:19:57', '2025-03-24 09:21:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779234960010001', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-31-04', '1742779260689010000', '2025-03-24 09:20:35', '2025-03-24 09:21:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779348791010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A02-41-01', '1742779374388010000', '2025-03-24 09:22:29', '2025-03-24 09:23:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779382574010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A04-34-06', '1742779408304010000', '2025-03-24 09:23:03', '2025-03-24 09:24:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779484330010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-42-02', '1742779509992010000', '2025-03-24 09:24:44', '2025-03-24 09:26:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779702689010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A02-34-11', '1742779728421010000', '2025-03-24 09:28:23', '2025-03-24 09:29:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779885522010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A01-29-07', '1742779911405010000', '2025-03-24 09:31:26', '2025-03-24 09:33:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779928676010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-29-06', '1742779954623010000', '2025-03-24 09:32:09', '2025-03-24 09:33:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779955954010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A02-38-02', '1742779981915010000', '2025-03-24 09:32:36', '2025-03-24 09:34:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742779990036010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-05', '1742780015809010000', '2025-03-24 09:33:10', '2025-03-24 09:34:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742780534959010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-32-11', '1742780560924010000', '2025-03-24 09:42:15', '2025-03-24 09:43:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742780605647010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A02-39-06', '1742780631410010000', '2025-03-24 09:43:26', '2025-03-24 09:45:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781015151010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-32-11', '1742781040920010000', '2025-03-24 09:50:15', '2025-03-24 09:51:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781170008010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A02-39-01', '1742781196003010000', '2025-03-24 09:52:50', '2025-03-24 09:54:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781304737010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A01-31-08', '1742781330424010000', '2025-03-24 09:55:05', '2025-03-24 09:56:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781489050010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A02-36-08', '1742781514632010000', '2025-03-24 09:58:09', '2025-03-24 09:59:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781535170010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A03-37-03', '1742781561139010000', '2025-03-24 09:58:55', '2025-03-24 10:00:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781580995010000', 1, 4, 1, 'ASRS-0314', 'P3', 'A02-35-10', '1742781606710010000', '2025-03-24 09:59:41', '2025-03-24 10:01:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781630466010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-36-04', '1742781656211010000', '2025-03-24 10:00:30', '2025-03-24 10:01:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781699764010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A02-39-06', '1742781725523010000', '2025-03-24 10:01:40', '2025-03-24 10:03:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781867586010000', 1, 4, 1, 'ASRS-0328', 'P3', 'A02-37-03', '1742781893523010000', '2025-03-24 10:04:28', '2025-03-24 10:06:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742781896554010001', 1, 4, 1, 'ASRS-0330', 'P3', 'A03-37-04', '1742781922329010000', '2025-03-24 10:04:57', '2025-03-24 10:06:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782052703010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A02-41-04', '1742782078337010000', '2025-03-24 10:07:33', '2025-03-24 10:08:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782091015010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A03-32-03', '1742782117031010000', '2025-03-24 10:08:11', '2025-03-24 10:09:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782195945010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A02-35-09', '1742782221711010000', '2025-03-24 10:09:56', '2025-03-24 10:11:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782265012010000', 1, 4, 1, 'ASRS-0339', 'P3', 'A03-39-02', '1742782290725010000', '2025-03-24 10:11:05', '2025-03-24 10:12:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782472429010000', 1, 4, 1, 'ASRS-0327', 'P3', 'A01-42-01', '1742782498313010000', '2025-03-24 10:14:32', '2025-03-24 10:16:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782591637010000', 1, 4, 1, 'ASRS-0337', 'P3', 'A01-36-09', '1742782617714010000', '2025-03-24 10:16:32', '2025-03-24 10:17:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782723279010001', 1, 4, 1, 'ASRS-0522', 'P3', 'A02-42-03', '1742782749135010000', '2025-03-24 10:18:43', '2025-03-24 10:20:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782750493010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A03-29-06', '1742782789033010000', '2025-03-24 10:19:10', '2025-03-24 10:20:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742782893071010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A01-35-11', '1742782918924010000', '2025-03-24 10:21:33', '2025-03-24 10:23:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742789983764010000', 1, 4, 1, 'ASRS-0376', 'P2', 'A02-33-11', '1742790004400010000', '2025-03-24 12:19:44', '2025-03-24 12:20:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794182000010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742794207728010000', '2025-03-24 13:29:42', '2025-03-24 13:30:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794218133010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A03-31-04', '1742794244031010000', '2025-03-24 13:30:18', '2025-03-24 13:31:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794378185010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-03', '1742794403915010000', '2025-03-24 13:32:58', '2025-03-24 13:34:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794415341010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A04-31-04', '1742794441136010000', '2025-03-24 13:33:35', '2025-03-24 13:34:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794594232010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742794619901010000', '2025-03-24 13:36:34', '2025-03-24 13:37:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794633429010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A03-31-04', '1742794659220010000', '2025-03-24 13:37:13', '2025-03-24 13:38:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794768851010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742794794499010000', '2025-03-24 13:39:29', '2025-03-24 13:40:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742794823978010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742794849999010000', '2025-03-24 13:40:24', '2025-03-24 13:41:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795044259010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A02-33-10', '1742795069897010000', '2025-03-24 13:44:04', '2025-03-24 13:45:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795088098010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-31-04', '1742795113714010000', '2025-03-24 13:44:48', '2025-03-24 13:46:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795240295010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742795266112010000', '2025-03-24 13:47:20', '2025-03-24 13:48:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795294311010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742795320127010000', '2025-03-24 13:48:14', '2025-03-24 13:49:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795468558010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742795494428010000', '2025-03-24 13:51:09', '2025-03-24 13:53:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795501726010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A03-31-04', '1742795527424010000', '2025-03-24 13:51:42', '2025-03-24 13:52:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795668960010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742795694815010000', '2025-03-24 13:54:29', '2025-03-24 13:55:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742795720620010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742795746440010000', '2025-03-24 13:55:21', '2025-03-24 13:56:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742796352467010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742796378226010000', '2025-03-24 14:05:52', '2025-03-24 14:07:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742796742840010001', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742796768850010000', '2025-03-24 14:12:23', '2025-03-24 14:13:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742863878346010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742863903896010000', '2025-03-25 08:51:18', '2025-03-25 08:52:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742863993307010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742864019067010000', '2025-03-25 08:53:13', '2025-03-25 08:54:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864148710010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A02-33-10', '1742864174486010000', '2025-03-25 08:55:49', '2025-03-25 08:57:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864190758010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-31-04', '1742864216469010000', '2025-03-25 08:56:31', '2025-03-25 08:57:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864338142010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742864364091010000', '2025-03-25 08:58:58', '2025-03-25 09:00:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864391919010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742864417778010000', '2025-03-25 08:59:52', '2025-03-25 09:01:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864562664010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742864588471010000', '2025-03-25 09:02:43', '2025-03-25 09:04:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864590169010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A03-31-04', '1742864615815010000', '2025-03-25 09:03:10', '2025-03-25 09:04:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864701476010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742864727384010000', '2025-03-25 09:05:01', '2025-03-25 09:06:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864786913010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742864812867010000', '2025-03-25 09:06:27', '2025-03-25 09:07:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864960842010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A02-33-10', '1742864986571010000', '2025-03-25 09:09:21', '2025-03-25 09:11:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742864989338010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-31-04', '1742865015069010000', '2025-03-25 09:09:49', '2025-03-25 09:11:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742865161500010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-36-03', '1742865187314010000', '2025-03-25 09:12:42', '2025-03-25 09:13:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742866066166010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-36-03', '1742866092084010000', '2025-03-25 09:27:46', '2025-03-25 09:29:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742866216878010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-33-10', '1742866242693010000', '2025-03-25 09:30:17', '2025-03-25 09:32:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742866248208010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A03-31-04', '1742866274192010000', '2025-03-25 09:30:48', '2025-03-25 09:32:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742866380680010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-36-03', '1742866406494010000', '2025-03-25 09:33:01', '2025-03-25 09:34:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867086219010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-36-10', '1742867112086010000', '2025-03-25 09:44:46', '2025-03-25 09:46:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867394932010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A02-38-02', '1742867420785010000', '2025-03-25 09:49:55', '2025-03-25 09:51:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867419242010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-31-04', '1742867445101010000', '2025-03-25 09:50:19', '2025-03-25 09:51:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867454363010000', 1, 4, 1, 'ASRS-0299', 'P3', 'A01-39-07', '1742867480195010000', '2025-03-25 09:50:54', '2025-03-25 09:52:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867486731010000', 1, 4, 1, 'ASRS-0250', 'P3', 'A03-35-04', '1742867512300010000', '2025-03-25 09:51:27', '2025-03-25 09:52:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867661027010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A01-33-10', '1742867686902010000', '2025-03-25 09:54:21', '2025-03-25 09:56:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867685461010000', 1, 4, 1, 'ASRS-0297', 'P3', 'A04-31-04', '1742867754394010000', '2025-03-25 09:54:45', '2025-03-25 09:56:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867812141010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A01-36-03', '1742867838091010000', '2025-03-25 09:56:52', '2025-03-25 09:58:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742867842526010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A03-38-01', '1742867868418010000', '2025-03-25 09:57:23', '2025-03-25 09:58:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742868490898010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A01-40-06', '1742868511608010000', '2025-03-25 10:08:11', '2025-03-25 10:09:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742879938908010000', 1, 4, 1, 'ASRS-0341', 'P3', 'A03-33-07', '1742879964494010000', '2025-03-25 13:18:59', '2025-03-25 13:20:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742880380477010000', 1, 4, 1, 'ASRS-0346', 'P3', 'A01-36-08', '1742880406090010000', '2025-03-25 13:26:20', '2025-03-25 13:27:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883236303010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-34-06', '1742883262122010000', '2025-03-25 14:13:56', '2025-03-25 14:15:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883258928010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-36-04', '1742883284634010000', '2025-03-25 14:14:19', '2025-03-25 14:15:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883269977010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A02-38-02', '1742883295747010000', '2025-03-25 14:14:30', '2025-03-25 14:16:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883285199010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A04-32-08', '1742883311031010000', '2025-03-25 14:14:45', '2025-03-25 14:16:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883309474010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-39-02', '1742883335348010000', '2025-03-25 14:15:09', '2025-03-25 14:17:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883329661010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A04-34-06', '1742883355415010000', '2025-03-25 14:15:30', '2025-03-25 14:17:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883460557010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A02-37-03', '1742883486213010000', '2025-03-25 14:17:41', '2025-03-25 14:19:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883541372010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A04-39-01', '1742883567214010000', '2025-03-25 14:19:01', '2025-03-25 14:20:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883592197010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-39-02', '1742883617934010000', '2025-03-25 14:19:52', '2025-03-25 14:21:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883673364010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-41-01', '1742883699219010000', '2025-03-25 14:21:13', '2025-03-25 14:22:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883773356010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A01-36-03', '1742883799131010000', '2025-03-25 14:22:53', '2025-03-25 14:24:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883796252010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-31-05', '1742883822237010000', '2025-03-25 14:23:16', '2025-03-25 14:24:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883860212010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A03-32-09', '1742883886126010000', '2025-03-25 14:24:20', '2025-03-25 14:25:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742883910397010000', 1, 4, 1, 'ASRS-1032', 'P3', 'A01-32-11', '1742883936219010000', '2025-03-25 14:25:10', '2025-03-25 14:26:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884014380010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A02-39-01', '1742884040040010000', '2025-03-25 14:26:54', '2025-03-25 14:28:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884032555010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-29-06', '1742884059226010000', '2025-03-25 14:27:13', '2025-03-25 14:28:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884083643010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A02-33-10', '1742884109325010000', '2025-03-25 14:28:04', '2025-03-25 14:30:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884107766010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A03-37-03', '1742884133622010000', '2025-03-25 14:28:28', '2025-03-25 14:29:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884141269010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A01-42-02', '1742884166918010000', '2025-03-25 14:29:01', '2025-03-25 14:30:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884163227010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A04-36-04', '1742884189118010000', '2025-03-25 14:29:23', '2025-03-25 14:30:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884213902010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-35-09', '1742884239825010000', '2025-03-25 14:30:14', '2025-03-25 14:32:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884235494010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A03-32-09', '1742884261144010000', '2025-03-25 14:30:35', '2025-03-25 14:32:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884340172010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A01-31-08', '1742884366139010000', '2025-03-25 14:32:20', '2025-03-25 14:33:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884358316010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A03-32-03', '1742884385350010000', '2025-03-25 14:32:38', '2025-03-25 14:33:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884422124010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A02-36-08', '1742884447737010000', '2025-03-25 14:33:42', '2025-03-25 14:35:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884436972010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A04-32-03', '1742884462724010000', '2025-03-25 14:33:57', '2025-03-25 14:35:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884535174010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A01-29-07', '1742884560823010000', '2025-03-25 14:35:35', '2025-03-25 14:37:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884550749010000', 1, 4, 1, 'ASRS-1025', 'P3', 'A04-31-08', '1742884576440010000', '2025-03-25 14:35:51', '2025-03-25 14:37:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884666612010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A01-33-06', '1742884692536010000', '2025-03-25 14:37:47', '2025-03-25 14:40:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884724986010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A03-34-07', '1742884750720010000', '2025-03-25 14:38:45', '2025-03-25 14:40:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884833934010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A02-32-09', '1742884859632010000', '2025-03-25 14:40:34', '2025-03-25 14:42:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884849188010000', 1, 4, 1, 'ASRS-0337', 'P3', 'A03-29-06', '1742884874930010000', '2025-03-25 14:40:49', '2025-03-25 14:42:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884952471010000', 1, 4, 1, 'ASRS-1088', 'P3', 'A02-32-11', '1742884978114010000', '2025-03-25 14:42:32', '2025-03-25 14:43:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742884966902010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A03-31-06', '1742884992539010000', '2025-03-25 14:42:47', '2025-03-25 14:44:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885214563010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-34-06', '1742885240321010000', '2025-03-25 14:46:55', '2025-03-25 14:48:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885239345010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A03-36-04', '1742885277536010000', '2025-03-25 14:47:19', '2025-03-25 14:48:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885265229010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A02-37-03', '1742885291338010000', '2025-03-25 14:47:45', '2025-03-25 14:49:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885300267010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A04-32-08', '1742885326122010000', '2025-03-25 14:48:20', '2025-03-25 14:49:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885342522010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A02-38-02', '1742885368420010000', '2025-03-25 14:49:03', '2025-03-25 14:50:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885364936010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A04-34-06', '1742885390623010000', '2025-03-25 14:49:25', '2025-03-25 14:50:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885391239010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A02-41-01', '1742885417031010000', '2025-03-25 14:49:51', '2025-03-25 14:51:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885445523010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-38-02', '1742885471325010000', '2025-03-25 14:50:46', '2025-03-25 14:52:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885581581010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A01-39-02', '1742885607228010000', '2025-03-25 14:53:02', '2025-03-25 14:54:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885621556010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-39-01', '1742885647440010000', '2025-03-25 14:53:42', '2025-03-25 14:55:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885668142010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A02-35-09', '1742885693946010000', '2025-03-25 14:54:28', '2025-03-25 14:56:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885734656010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A03-37-04', '1742885760537010000', '2025-03-25 14:55:35', '2025-03-25 14:57:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885855728010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-36-03', '1742885881444010000', '2025-03-25 14:57:36', '2025-03-25 14:59:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885920872010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-29-06', '1742885946828010000', '2025-03-25 14:58:41', '2025-03-25 15:00:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742885945198010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A02-39-01', '1742885971143010000', '2025-03-25 14:59:05', '2025-03-25 15:00:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886015624010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-40-04', '1742886041349010000', '2025-03-25 15:00:16', '2025-03-25 15:02:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886053525010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A04-31-05', '1742886079433010000', '2025-03-25 15:00:54', '2025-03-25 15:02:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886073905010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-42-02', '1742886099846010000', '2025-03-25 15:01:14', '2025-03-25 15:03:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886150692010000', 1, 4, 1, 'ASRS-0517', 'P3', 'A04-36-04', '1742886176634010000', '2025-03-25 15:02:31', '2025-03-25 15:03:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886198952010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-36-09', '1742886224649010000', '2025-03-25 15:03:19', '2025-03-25 15:04:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886321419010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A01-33-06', '1742886347333010000', '2025-03-25 15:05:21', '2025-03-25 15:07:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886349337010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A04-37-03', '1742886375257010000', '2025-03-25 15:05:49', '2025-03-25 15:07:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886436993010000', 1, 4, 1, 'ASRS-0523', 'P3', 'A01-41-03', '1742886462844010000', '2025-03-25 15:07:17', '2025-03-25 15:08:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886556444010000', 1, 4, 1, 'ASRS-1025', 'P3', 'A01-35-04', '1742886582260010000', '2025-03-25 15:09:16', '2025-03-25 15:10:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886698038010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A01-29-07', '1742886723862010000', '2025-03-25 15:11:38', '2025-03-25 15:13:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886738056010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A04-31-08', '1742886764057010000', '2025-03-25 15:12:18', '2025-03-25 15:13:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886783199010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A01-42-02', '1742886809040010000', '2025-03-25 15:13:03', '2025-03-25 15:14:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886816625010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-30-11', '1742886842358010000', '2025-03-25 15:13:37', '2025-03-25 15:14:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886832427010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-36-08', '1742886858250010000', '2025-03-25 15:13:52', '2025-03-25 15:15:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886861065010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A01-41-04', '1742886886743010000', '2025-03-25 15:14:21', '2025-03-25 15:16:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742886990127010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A01-31-08', '1742887028642010000', '2025-03-25 15:16:30', '2025-03-25 15:18:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887007662010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A03-32-03', '1742887033459010000', '2025-03-25 15:16:48', '2025-03-25 15:18:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887047719010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A02-34-11', '1742887073345010000', '2025-03-25 15:17:28', '2025-03-25 15:18:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887202834010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A02-35-10', '1742887228443010000', '2025-03-25 15:20:03', '2025-03-25 15:21:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887559676010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-34-06', '1742887585458010000', '2025-03-25 15:26:00', '2025-03-25 15:27:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887577987010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A04-32-03', '1742887604675010000', '2025-03-25 15:26:18', '2025-03-25 15:27:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887595939010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A02-37-03', '1742887621775010000', '2025-03-25 15:26:36', '2025-03-25 15:28:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887616795010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A03-36-04', '1742887642462010000', '2025-03-25 15:26:57', '2025-03-25 15:28:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887634467010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A02-38-02', '1742887661646010000', '2025-03-25 15:27:14', '2025-03-25 15:29:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887652881010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A04-32-08', '1742887678442010000', '2025-03-25 15:27:33', '2025-03-25 15:29:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887745129010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-41-01', '1742887770860010000', '2025-03-25 15:29:05', '2025-03-25 15:30:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887799944010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A04-34-06', '1742887825762010000', '2025-03-25 15:30:00', '2025-03-25 15:31:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887913684010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-39-02', '1742887939469010000', '2025-03-25 15:31:54', '2025-03-25 15:33:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742887983423010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A04-38-02', '1742888009342010000', '2025-03-25 15:33:03', '2025-03-25 15:34:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888011726010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A02-35-09', '1742888037560010000', '2025-03-25 15:33:32', '2025-03-25 15:35:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888068887010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-39-01', '1742888094844010000', '2025-03-25 15:34:29', '2025-03-25 15:35:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888169917010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A01-36-03', '1742888195663010000', '2025-03-25 15:36:10', '2025-03-25 15:38:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888202878010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-29-06', '1742888228653010000', '2025-03-25 15:36:43', '2025-03-25 15:38:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888248510010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A02-39-01', '1742888274247010000', '2025-03-25 15:37:29', '2025-03-25 15:39:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888265224010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-05', '1742888291055010000', '2025-03-25 15:37:45', '2025-03-25 15:39:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888331895010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A02-40-04', '1742888357647010000', '2025-03-25 15:38:52', '2025-03-25 15:40:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888394815010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-42-02', '1742888420661010000', '2025-03-25 15:39:55', '2025-03-25 15:41:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888412845010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-38-01', '1742888439844010000', '2025-03-25 15:40:13', '2025-03-25 15:41:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888430469010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-36-09', '1742888456343010000', '2025-03-25 15:40:30', '2025-03-25 15:42:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888539959010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A01-33-06', '1742888565862010000', '2025-03-25 15:42:20', '2025-03-25 15:44:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888618158010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A01-41-03', '1742888643864010000', '2025-03-25 15:43:38', '2025-03-25 15:45:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888798302010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A01-29-07', '1742888824155010000', '2025-03-25 15:46:38', '2025-03-25 15:48:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888818252010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A04-31-08', '1742888844260010000', '2025-03-25 15:46:58', '2025-03-25 15:48:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888863693010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A01-42-02', '1742888889552010000', '2025-03-25 15:47:44', '2025-03-25 15:49:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888885061010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-37-03', '1742888910866010000', '2025-03-25 15:48:05', '2025-03-25 15:49:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888917351010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A01-35-04', '1742888943260010000', '2025-03-25 15:48:37', '2025-03-25 15:50:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742888986209010000', 1, 4, 1, 'ASRS-1025', 'P3', 'A04-39-01', '1742889011970010000', '2025-03-25 15:49:46', '2025-03-25 15:51:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889079662010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A02-36-08', '1742889105561010000', '2025-03-25 15:51:20', '2025-03-25 15:52:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889175083010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A01-31-08', '1742889200955010000', '2025-03-25 15:52:55', '2025-03-25 15:54:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889194344010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A03-32-03', '1742889220156010000', '2025-03-25 15:53:14', '2025-03-25 15:54:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889261508010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-04', '1742889287059010000', '2025-03-25 15:54:22', '2025-03-25 15:55:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889380874010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A02-34-11', '1742889406781010000', '2025-03-25 15:56:21', '2025-03-25 15:57:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742889490048010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A02-35-10', '1742889515963010000', '2025-03-25 15:58:10', '2025-03-25 15:59:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742961861872010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A02-34-09', '1742961888200010000', '2025-03-26 12:04:22', '2025-03-26 12:05:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742961919726010000', 1, 4, 1, 'ASRS-1907', 'P3', 'A04-38-01', '1742961947859010000', '2025-03-26 12:05:20', '2025-03-26 12:06:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742961950431010000', 1, 4, 1, 'ASRS-0351', 'P3', 'A02-38-02', '1742961976348010000', '2025-03-26 12:05:50', '2025-03-26 12:07:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742961976486010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-35-09', '1742962003065010000', '2025-03-26 12:06:16', '2025-03-26 12:08:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962000005010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-34-06', '1742962025849010000', '2025-03-26 12:06:40', '2025-03-26 12:08:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962069228010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A02-42-02', '1742962095161010000', '2025-03-26 12:07:49', '2025-03-26 12:09:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962093870010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A04-35-05', '1742962119747010000', '2025-03-26 12:08:14', '2025-03-26 12:09:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962121966010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-39-06', '1742962147660010000', '2025-03-26 12:08:42', '2025-03-26 12:10:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962152637010000', 1, 4, 1, 'ASRS-1899', 'P3', 'A04-38-02', '1742962178565010000', '2025-03-26 12:09:13', '2025-03-26 12:11:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962176726010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-42-03', '1742962202551010000', '2025-03-26 12:09:37', '2025-03-26 12:11:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962469259010000', 1, 4, 1, 'ASRS-0284', 'P3', 'A01-42-02', '1742962495367010000', '2025-03-26 12:14:29', '2025-03-26 12:15:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962707637010000', 1, 4, 1, 'ASRS-0335', 'P3', 'A02-37-07', '1742962734183010000', '2025-03-26 12:18:28', '2025-03-26 12:20:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962746462010000', 1, 4, 1, 'ASRS-0244', 'P3', 'A03-35-05', '1742962772295010000', '2025-03-26 12:19:06', '2025-03-26 12:20:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962774606010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A01-34-11', '1742962800755010000', '2025-03-26 12:19:35', '2025-03-26 12:21:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962817094010000', 1, 4, 1, 'asrs-1443', 'P3', 'A03-31-10', '1742962842754010000', '2025-03-26 12:20:17', '2025-03-26 13:04:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742962902045010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A02-37-08', '1742962927656010000', '2025-03-26 12:21:42', '2025-03-26 12:23:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963328345010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-41-01', '1742963354285010000', '2025-03-26 12:28:48', '2025-03-26 12:30:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963382204010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A01-33-10', '1742963410079010000', '2025-03-26 12:29:42', '2025-03-26 12:31:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963435032010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-42-02', '1742963460763010000', '2025-03-26 12:30:35', '2025-03-26 12:32:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963460895010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A01-37-08', '1742963486858010000', '2025-03-26 12:31:01', '2025-03-26 12:33:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963508166010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A01-42-03', '1742963533978010000', '2025-03-26 12:31:48', '2025-03-26 12:33:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963598776010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-38-07', '1742963624564010000', '2025-03-26 12:33:19', '2025-03-26 12:35:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963619193010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A02-39-06', '1742963644975010000', '2025-03-26 12:33:39', '2025-03-26 12:36:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963951921010000', 1, 4, 1, 'ASRS-1249', 'P3', 'A02-38-06', '1742963977665010000', '2025-03-26 12:39:12', '2025-03-26 12:40:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742963999651010000', 1, 4, 1, 'ASRS-1713', 'P3', 'A02-40-05', '1742964025689010000', '2025-03-26 12:40:00', '2025-03-26 12:42:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964029427010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A04-29-06', '1742964055367010000', '2025-03-26 12:40:29', '2025-03-26 13:05:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964250771010000', 1, 4, 1, 'ASRS-1023', 'P3', 'A01-38-07', '1742964276786010000', '2025-03-26 12:44:11', '2025-03-26 12:45:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964331539010000', 1, 4, 1, 'ASRS-0270', 'P3', 'A02-41-04', '1742964357467010000', '2025-03-26 12:45:32', '2025-03-26 12:47:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964597950010000', 1, 4, 1, 'ASRS-0525', 'P3', 'A02-39-05', '1742964623889010000', '2025-03-26 12:49:58', '2025-03-26 12:51:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964704296010000', 1, 4, 1, 'ASRS-0545', 'P3', 'A02-41-03', '1742964730072010000', '2025-03-26 12:51:44', '2025-03-26 12:53:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964763294010000', 1, 4, 1, 'ASRS-1528', 'P3', 'A01-34-11', '1742964789170010000', '2025-03-26 12:52:43', '2025-03-26 12:54:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964846751010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A01-35-10', '1742964872573010000', '2025-03-26 12:54:07', '2025-03-26 12:55:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742964876016010000', 1, 4, 1, 'ASRS-0342', 'P3', 'A02-42-03', '1742964901972010000', '2025-03-26 12:54:36', '2025-03-26 12:56:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742965677307010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A01-35-11', '1742965703276010000', '2025-03-26 13:07:57', '2025-03-26 13:09:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966102568010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1742966128377010000', '2025-03-26 13:15:03', '2025-03-26 13:16:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966135406010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A04-29-06', '1742966161079010000', '2025-03-26 13:15:35', '2025-03-26 13:16:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966156372010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A02-37-03', '1742966182097010000', '2025-03-26 13:15:56', '2025-03-26 13:17:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966173746010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A02-35-09', '1742966199501010000', '2025-03-26 13:16:14', '2025-03-26 13:19:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966202614010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A04-32-03', '1742966228579010000', '2025-03-26 13:16:43', '2025-03-26 13:18:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966225436010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-36-04', '1742966251082010000', '2025-03-26 13:17:05', '2025-03-26 13:18:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966279804010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-39-06', '1742966305678010000', '2025-03-26 13:18:00', '2025-03-26 13:20:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966382510010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-32-08', '1742966408295010000', '2025-03-26 13:19:43', '2025-03-26 13:21:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966439034010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A02-34-09', '1742966465004010000', '2025-03-26 13:20:39', '2025-03-26 13:22:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966560895010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-39-01', '1742966586793010000', '2025-03-26 13:22:41', '2025-03-26 13:24:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966571829010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-05', '1742966597596010000', '2025-03-26 13:22:52', '2025-03-26 13:24:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966628053010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-34-06', '1742966653982010000', '2025-03-26 13:23:48', '2025-03-26 13:25:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966727344010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-41-01', '1742966753293010000', '2025-03-26 13:25:27', '2025-03-26 13:26:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966849281010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-32-11', '1742966875099010000', '2025-03-26 13:27:29', '2025-03-26 13:29:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742966891727010000', 1, 4, 1, 'ASRS-1032', 'P3', 'A03-33-08', '1742966917400010000', '2025-03-26 13:28:12', '2025-03-26 13:29:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967035868010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A01-31-08', '1742967061683010000', '2025-03-26 13:30:36', '2025-03-26 13:32:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967058935010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A03-37-03', '1742967084802010000', '2025-03-26 13:30:59', '2025-03-26 13:32:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967081855010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A01-36-03', '1742967107588010000', '2025-03-26 13:31:22', '2025-03-26 13:33:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967104638010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A02-33-10', '1742967130404010000', '2025-03-26 13:31:45', '2025-03-26 13:34:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967146006010000', 1, 4, 1, 'ASRS-0392', 'P3', 'A04-37-03', '1742967171809010000', '2025-03-26 13:32:26', '2025-03-26 13:33:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967295775010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A01-29-07', '1742967321486010000', '2025-03-26 13:34:56', '2025-03-26 13:36:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967328841010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A03-34-07', '1742967354505010000', '2025-03-26 13:35:29', '2025-03-26 13:36:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967455442010000', 1, 4, 1, 'ASRS-1025', 'P3', 'A01-35-04', '1742967481098010000', '2025-03-26 13:37:35', '2025-03-26 13:38:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967489410010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A04-39-01', '1742967515288010000', '2025-03-26 13:38:09', '2025-03-26 13:39:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967607846010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-42-02', '1742967633815010000', '2025-03-26 13:40:08', '2025-03-26 13:41:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967637949010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A03-32-03', '1742967663801010000', '2025-03-26 13:40:38', '2025-03-26 13:41:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967709528010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-36-09', '1742967735487010000', '2025-03-26 13:41:50', '2025-03-26 13:43:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967811258010000', 1, 4, 1, 'ASRS-0337', 'P3', 'A01-41-04', '1742967837188010000', '2025-03-26 13:43:31', '2025-03-26 13:45:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967865996010000', 1, 4, 1, 'ASRS-0501', 'P3', 'A03-29-06', '1742967891785010000', '2025-03-26 13:44:26', '2025-03-26 13:45:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742967973765010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A02-32-09', '1742967999496010000', '2025-03-26 13:46:14', '2025-03-26 13:48:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968001036010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A03-31-06', '1742968026787010000', '2025-03-26 13:46:41', '2025-03-26 13:48:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968183318010000', 1, 4, 1, 'ASRS-1088', 'P3', 'A02-32-11', '1742968208885010000', '2025-03-26 13:49:43', '2025-03-26 13:51:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968475552010000', 1, 4, 1, 'ASRS-1907', 'P3', 'A02-38-02', '1742968501393010000', '2025-03-26 13:54:36', '2025-03-26 13:56:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968492278010000', 1, 4, 1, 'ASRS-0351', 'P3', 'A04-38-01', '1742968519395010000', '2025-03-26 13:54:52', '2025-03-26 13:56:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968519519010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-37-08', '1742968545209010000', '2025-03-26 13:55:20', '2025-03-26 13:58:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968543362010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A03-36-04', '1742968569205010000', '2025-03-26 13:55:43', '2025-03-26 13:57:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968563267010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A04-35-05', '1742968589004010000', '2025-03-26 13:56:03', '2025-03-26 13:57:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968575025010000', 1, 4, 1, 'ASRS-1899', 'P3', 'A03-32-09', '1742968648709010000', '2025-03-26 13:56:15', '2025-03-26 13:59:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968591355010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-41-01', '1742968617513010000', '2025-03-26 13:56:31', '2025-03-26 13:58:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968599480010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-39-06', '1742968625294010000', '2025-03-26 13:56:39', '2025-03-26 14:00:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968618490010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-38-02', '1742968644507010000', '2025-03-26 13:56:58', '2025-03-26 13:58:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968702002010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A02-34-09', '1742968740508010000', '2025-03-26 13:58:22', '2025-03-26 14:01:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968810046010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A03-36-04', '1742968835911010000', '2025-03-26 14:00:10', '2025-03-26 14:02:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968854494010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-39-01', '1742968880312010000', '2025-03-26 14:00:54', '2025-03-26 14:03:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968913044010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-32-08', '1742968938795010000', '2025-03-26 14:01:53', '2025-03-26 14:03:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968939118010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A01-33-10', '1742968964896010000', '2025-03-26 14:02:19', '2025-03-26 14:04:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742968960414010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-42-03', '1742968986216010000', '2025-03-26 14:02:40', '2025-03-26 14:05:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969022544010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A04-38-02', '1742969048296010000', '2025-03-26 14:03:43', '2025-03-26 14:05:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969085871010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A03-35-06', '1742969111618010000', '2025-03-26 14:04:46', '2025-03-26 14:06:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969218177010000', 1, 4, 1, 'ASRS-0244', 'P3', 'A02-37-07', '1742969243901010000', '2025-03-26 14:06:58', '2025-03-26 14:08:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969247145010000', 1, 4, 1, 'ASRS-0335', 'P3', 'A03-35-05', '1742969273015010000', '2025-03-26 14:07:27', '2025-03-26 14:08:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969278031010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A01-42-02', '1742969303900010000', '2025-03-26 14:07:58', '2025-03-26 14:09:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969286665010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A03-31-10', '1742969312624010000', '2025-03-26 14:08:07', '2025-03-26 14:09:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969322634010000', 1, 4, 1, 'asrs-1443', 'P3', 'A01-35-10', '1742969348600010000', '2025-03-26 14:08:43', '2025-03-26 14:45:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969331852010000', 1, 4, 1, 'ASRS-0284', 'P3', 'A03-34-07', '1742969357902010000', '2025-03-26 14:08:52', '2025-03-26 14:10:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969458555010000', 1, 4, 1, 'ASRS-0349', 'P3', 'A04-31-09', '1742969484518010000', '2025-03-26 14:10:59', '2025-03-26 14:12:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969469468010000', 1, 4, 1, 'ASRS-1713', 'P3', 'A02-38-06', '1742969495321010000', '2025-03-26 14:11:09', '2025-03-26 14:46:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969527955010000', 1, 4, 1, 'ASRS-1249', 'P3', 'A03-36-05', '1742969553812010000', '2025-03-26 14:12:08', '2025-03-26 14:13:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969688503010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A03-37-04', '1742969714327010000', '2025-03-26 14:14:49', '2025-03-26 14:16:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969820450010000', 1, 4, 1, 'ASRS-1023', 'P3', 'A03-38-03', '1742969846311010000', '2025-03-26 14:17:00', '2025-03-26 14:18:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742969870545010000', 1, 4, 1, 'ASRS-0270', 'P3', 'A03-40-01', '1742969896406010000', '2025-03-26 14:17:51', '2025-03-26 14:19:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970071172010000', 1, 4, 1, 'ASRS-0545', 'P3', 'A03-31-10', '1742970097106010000', '2025-03-26 14:21:11', '2025-03-26 14:22:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970093807010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A03-37-04', '1742970119620010000', '2025-03-26 14:21:34', '2025-03-26 14:23:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970112579010000', 1, 4, 1, 'ASRS-1528', 'P3', 'A02-39-05', '1742970138825010000', '2025-03-26 14:21:53', '2025-03-26 14:47:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970123417010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A04-30-11', '1742970149330010000', '2025-03-26 14:22:03', '2025-03-26 14:23:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970138515010000', 1, 4, 1, 'ASRS-0342', 'P3', 'A04-31-10', '1742970164309010000', '2025-03-26 14:22:19', '2025-03-26 14:24:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970150136010000', 1, 4, 1, 'ASRS-0525', 'P3', 'A02-41-03', '1742970176015010000', '2025-03-26 14:22:30', '2025-03-26 14:48:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970504671010000', 1, 4, 1, 'ASRS-0351', 'P3', 'A04-38-01', '1742970530619010000', '2025-03-26 14:28:25', '2025-03-26 14:30:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970526992010000', 1, 4, 1, 'ASRS-1907', 'P3', 'A03-36-04', '1742970552812010000', '2025-03-26 14:28:47', '2025-03-26 14:31:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970555362010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A03-32-09', '1742970581322010000', '2025-03-26 14:29:15', '2025-03-26 14:32:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970591254010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-35-05', '1742970617032010000', '2025-03-26 14:29:51', '2025-03-26 14:33:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970611633010000', 1, 4, 1, 'ASRS-1899', 'P3', 'A04-32-09', '1742970637429010000', '2025-03-26 14:30:12', '2025-03-26 14:35:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970630942010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-38-02', '1742970656632010000', '2025-03-26 14:30:31', '2025-03-26 14:51:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970642183010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A03-35-06', '1742970668035010000', '2025-03-26 14:30:42', '2025-03-26 14:36:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970669045010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-41-01', '1742970694714010000', '2025-03-26 14:31:09', '2025-03-26 14:49:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970719625010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A04-33-08', '1742970745418010000', '2025-03-26 14:32:00', '2025-03-26 14:37:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970731486010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A04-34-07', '1742970757434010000', '2025-03-26 14:32:11', '2025-03-26 14:37:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970860373010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A04-38-02', '1742970886119010000', '2025-03-26 14:34:20', '2025-03-26 14:39:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970882084010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A03-32-09', '1742970908036010000', '2025-03-26 14:34:42', '2025-03-26 14:39:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970902176010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A04-35-06', '1742970928123010000', '2025-03-26 14:35:02', '2025-03-26 14:40:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742970922118010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A02-39-01', '1742970947933010000', '2025-03-26 14:35:22', '2025-03-26 14:50:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742971028485010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-32-08', '1742971054118010000', '2025-03-26 14:37:08', '2025-03-26 14:41:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742971180117010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A04-33-08', '1742971205936010000', '2025-03-26 14:39:40', '2025-03-26 14:42:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972039107010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-41-01', '1742972064842010000', '2025-03-26 14:53:59', '2025-03-26 14:55:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972184272010000', 1, 4, 1, 'ASRS-0335', 'P3', 'A01-33-10', '1742972210043010000', '2025-03-26 14:56:24', '2025-03-26 14:57:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972203541010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A03-35-05', '1742972229541010000', '2025-03-26 14:56:44', '2025-03-26 14:57:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972226323010000', 1, 4, 1, 'ASRS-0244', 'P3', 'A02-34-09', '1742972252029010000', '2025-03-26 14:57:06', '2025-03-26 14:58:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972251859010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A01-42-02', '1742972277547010000', '2025-03-26 14:57:32', '2025-03-26 14:59:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972267262010000', 1, 4, 1, 'ASRS-0284', 'P3', 'A03-34-07', '1742972293130010000', '2025-03-26 14:57:47', '2025-03-26 14:59:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972289443010000', 1, 4, 1, 'asrs-1443', 'P3', 'A02-37-07', '1742972315349010000', '2025-03-26 14:58:09', '2025-03-26 15:22:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972485029010000', 1, 4, 1, 'ASRS-0349', 'P3', 'A04-31-09', '1742972510959010000', '2025-03-26 15:01:25', '2025-03-26 15:02:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972514279010000', 1, 4, 1, 'ASRS-1713', 'P3', 'A02-38-06', '1742972540051010000', '2025-03-26 15:01:54', '2025-03-26 15:23:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972528866010000', 1, 4, 1, 'ASRS-1249', 'P3', 'A03-36-05', '1742972554745010000', '2025-03-26 15:02:09', '2025-03-26 15:03:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972547921010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A03-37-04', '1742972573928010000', '2025-03-26 15:02:28', '2025-03-26 15:04:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972672497010000', 1, 4, 1, 'ASRS-1030', 'P3', 'A03-30-11', '1742972698462010000', '2025-03-26 15:04:32', '2025-03-26 15:06:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972825384010000', 1, 4, 1, 'ASRS-0545', 'P3', 'A03-35-05', '1742972851134010000', '2025-03-26 15:07:05', '2025-03-26 15:09:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972861264010000', 1, 4, 1, 'ASRS-1528', 'P3', 'A03-31-10', '1742972887139010000', '2025-03-26 15:07:41', '2025-03-26 15:09:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972882792010000', 1, 4, 1, 'ASRS-0525', 'P3', 'A02-39-05', '1742972908751010000', '2025-03-26 15:08:03', '2025-03-26 15:24:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972909307010000', 1, 4, 1, 'ASRS-1026', 'P3', 'A03-37-04', '1742972935136010000', '2025-03-26 15:08:29', '2025-03-26 15:10:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972928610010000', 1, 4, 1, 'ASRS-0342', 'P3', 'A04-30-11', '1742972954359010000', '2025-03-26 15:08:49', '2025-03-26 15:11:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742972958296010000', 1, 4, 1, 'ASRS-0385', 'P3', 'A02-41-03', '1742972984037010000', '2025-03-26 15:09:18', '2025-03-26 15:25:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974316339010000', 1, 4, 1, 'ASRS-1907', 'P3', 'A02-38-02', '1742974342149010000', '2025-03-26 15:31:56', '2025-03-26 15:33:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974354713010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A04-38-01', '1742974380577010000', '2025-03-26 15:32:35', '2025-03-26 15:34:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974380855010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A02-39-01', '1742974406652010000', '2025-03-26 15:33:01', '2025-03-26 15:34:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974415777010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A02-41-01', '1742974441750010000', '2025-03-26 15:33:36', '2025-03-26 15:35:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974431337010000', 1, 4, 1, 'ASRS-0351', 'P3', 'A03-36-04', '1742974457062010000', '2025-03-26 15:33:51', '2025-03-26 15:35:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974450770010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-34-11', '1742974476566010000', '2025-03-26 15:34:11', '2025-03-26 15:36:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974467328010000', 1, 4, 1, 'ASRS-1899', 'P3', 'A04-35-05', '1742974493363010000', '2025-03-26 15:34:27', '2025-03-26 15:36:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974546539010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-35-10', '1742974572264010000', '2025-03-26 15:35:47', '2025-03-26 15:37:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974641507010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-37-08', '1742974667352010000', '2025-03-26 15:37:22', '2025-03-26 15:38:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1742974776879010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A01-38-07', '1742974802960010000', '2025-03-26 15:39:37', '2025-03-26 15:41:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038371989010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-41-01', '1743038415661010000', '2025-03-27 09:19:32', '2025-03-27 09:21:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038406136010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A04-32-08', '1743038432155010000', '2025-03-27 09:20:06', '2025-03-27 09:21:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038417456010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A01-34-11', '1743038443254010000', '2025-03-27 09:20:17', '2025-03-27 09:22:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038429008010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A04-38-02', '1743038454952010000', '2025-03-27 09:20:29', '2025-03-27 09:22:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038450151010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-37-08', '1743038475955010000', '2025-03-27 09:20:50', '2025-03-27 09:22:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038460917010000', 1, 4, 1, 'ASRS-1189', 'P3', 'A03-32-09', '1743038486737010000', '2025-03-27 09:21:01', '2025-03-27 09:23:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038481218010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-39-06', '1743038506840010000', '2025-03-27 09:21:21', '2025-03-27 09:24:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038687410010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A01-34-11', '1743038713257010000', '2025-03-27 09:24:47', '2025-03-27 09:26:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743038700657010000', 1, 4, 1, 'ASRS-0521', 'P3', 'A04-32-08', '1743038727359010000', '2025-03-27 09:25:01', '2025-03-27 09:26:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743125106638010000', 1, 4, 1, 'ASRS-0271', 'P2', 'A03-31-04', '1743125127424010000', '2025-03-28 09:25:07', '2025-03-28 09:26:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743125142052010000', 1, 4, 1, 'ASRS-0299', 'P2', 'A02-34-11', '1743125162512010000', '2025-03-28 09:25:42', '2025-03-28 09:27:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743125169604010000', 1, 4, 1, 'ASRS-0297', 'P2', 'A03-32-03', '1743125190425010000', '2025-03-28 09:26:10', '2025-03-28 09:27:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743125176684010000', 1, 4, 1, 'ASRS-0250', 'P2', 'A02-35-10', '1743125197324010000', '2025-03-28 09:26:17', '2025-03-28 09:28:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743133974497010000', 1, 4, 1, 'ASRS-1528', 'P2', 'A01-38-07', '1743133995170010000', '2025-03-28 11:52:54', '2025-03-28 11:54:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743134546265010000', 1, 4, 1, 'ASRS-1268', 'P2', 'A01-37-09', '1743134566686010000', '2025-03-28 12:02:26', '2025-03-28 12:04:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743135433001010000', 1, 4, 1, 'ASRS-1528', 'P2', 'A01-38-07', '1743135453785010000', '2025-03-28 12:17:13', '2025-03-28 12:18:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220279796010000', 1, 4, 1, 'ASRS-0350', 'P2', 'A01-34-06', '1743220300291010000', '2025-03-29 11:51:20', '2025-03-29 11:52:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220511492010000', 1, 4, 1, 'ASRS-1436', 'P2', 'A02-37-03', '1743220532775010000', '2025-03-29 11:55:11', '2025-03-29 11:56:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220821066010000', 1, 4, 1, 'ASRS-0313', 'P2', 'A01-34-11', '1743220841745010000', '2025-03-29 12:00:21', '2025-03-29 12:01:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220903043010000', 1, 4, 1, 'ASRS-0332', 'P2', 'A01-35-10', '1743220923643010000', '2025-03-29 12:01:43', '2025-03-29 12:03:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220943460010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A01-39-06', '1743220974350010000', '2025-03-29 12:02:23', '2025-03-29 12:04:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220949504010000', 1, 4, 1, 'ASRS-0388', 'P2', 'A04-32-03', '1743220970142010000', '2025-03-29 12:02:30', '2025-03-29 12:03:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743220981431010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-42-03', '1743221007055010000', '2025-03-29 12:03:01', '2025-03-29 12:05:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221113131010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-31-05', '1743221138755010000', '2025-03-29 12:05:13', '2025-03-29 12:06:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221166087010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A02-41-01', '1743221204451010000', '2025-03-29 12:06:06', '2025-03-29 12:07:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221359568010000', 1, 4, 1, 'ASRS-0305', 'P2', 'A01-32-11', '1743221380254010000', '2025-03-29 12:09:20', '2025-03-29 12:10:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221397866010000', 1, 4, 1, 'ASRS-0324', 'P2', 'A04-29-10', '1743221418661010000', '2025-03-29 12:09:58', '2025-03-29 12:11:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221434329010000', 1, 4, 1, 'ASRS-0340', 'P2', 'A01-37-08', '1743221454943010000', '2025-03-29 12:10:34', '2025-03-29 12:11:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221571373010000', 1, 4, 1, 'ASRS-1027', 'P2', 'A01-39-08', '1743221592045010000', '2025-03-29 12:12:51', '2025-03-29 12:14:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221619281010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A04-30-09', '1743221639748010000', '2025-03-29 12:13:39', '2025-03-29 12:14:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221688931010000', 1, 4, 1, 'ASRS-1032', 'P2', 'A01-40-07', '1743221709656010000', '2025-03-29 12:14:49', '2025-03-29 12:16:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743221940012010000', 1, 4, 1, 'ASRS-0306', 'P2', 'A01-29-07', '1743221960752010000', '2025-03-29 12:19:00', '2025-03-29 12:20:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743222000918010000', 1, 4, 1, 'ASRS-0333', 'P2', 'A03-32-08', '1743222021644010000', '2025-03-29 12:20:01', '2025-03-29 12:21:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743222158111010000', 1, 4, 1, 'ASRS-1902', 'P2', 'A01-31-08', '1743222178547010000', '2025-03-29 12:22:38', '2025-03-29 12:23:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743222206856010000', 1, 4, 1, 'ASRS-1221', 'P2', 'A03-37-03', '1743222227446010000', '2025-03-29 12:23:27', '2025-03-29 12:24:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743222241808010000', 1, 4, 1, 'ASRS-1526', 'P2', 'A01-36-03', '1743222263412010000', '2025-03-29 12:24:02', '2025-03-29 12:25:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743222332400010000', 1, 4, 1, 'ASRS-0528', 'P2', 'A01-39-02', '1743222352851010000', '2025-03-29 12:25:32', '2025-03-29 12:26:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743225639419010000', 1, 4, 1, 'ASRS-0551', 'P2', 'A02-33-10', '1743225700163010000', '2025-03-29 13:20:39', '2025-03-29 13:22:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743225872145010000', 1, 4, 1, 'ASRS-0551', 'P2', 'A02-33-10', '1743225892728010000', '2025-03-29 13:24:32', '2025-03-29 13:26:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743225939582010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A04-34-06', '1743225965314010000', '2025-03-29 13:25:40', '2025-03-29 13:27:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226010068010000', 1, 4, 1, 'ASRS-0519', 'P2', 'A01-35-04', '1743226030722010000', '2025-03-29 13:26:50', '2025-03-29 13:29:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226053204010000', 1, 4, 1, 'ASRS-1025', 'P2', 'A03-29-06', '1743226073617010000', '2025-03-29 13:27:33', '2025-03-29 13:28:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226144022010000', 1, 4, 1, 'ASRS-1034', 'P2', 'A01-34-06', '1743226164515010000', '2025-03-29 13:29:04', '2025-03-29 13:30:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226177583010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A03-29-06', '1743226203515010000', '2025-03-29 13:29:38', '2025-03-29 13:30:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226235686010000', 1, 4, 1, 'ASRS-1025', 'P2', 'A02-37-03', '1743226256336010000', '2025-03-29 13:30:36', '2025-03-29 13:32:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226243157010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-37-03', '1743226270127010000', '2025-03-29 13:30:43', '2025-03-29 13:32:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226312287010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-42-02', '1743226338223010000', '2025-03-29 13:31:52', '2025-03-29 13:33:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226477249010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A02-42-02', '1743226502917010000', '2025-03-29 13:34:37', '2025-03-29 13:36:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226520863010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A04-31-04', '1743226541334010000', '2025-03-29 13:35:21', '2025-03-29 13:36:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226597721010000', 1, 4, 1, 'ASRS-0316', 'P2', 'A01-32-11', '1743226618435010000', '2025-03-29 13:36:38', '2025-03-29 13:38:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226669600010000', 1, 4, 1, 'ASRS-0338', 'P2', 'A04-29-10', '1743226690116010000', '2025-03-29 13:37:50', '2025-03-29 13:39:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226708208010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-40-04', '1743226735424010000', '2025-03-29 13:38:28', '2025-03-29 13:41:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226762233010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-30-09', '1743226787917010000', '2025-03-29 13:39:22', '2025-03-29 13:40:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226801586010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A01-42-02', '1743226827233010000', '2025-03-29 13:40:02', '2025-03-29 13:42:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226831127010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-38-01', '1743226856924010000', '2025-03-29 13:40:31', '2025-03-29 13:41:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226902735010000', 1, 4, 1, 'ASRS-0501', 'P2', 'A04-38-02', '1743226923241010000', '2025-03-29 13:41:43', '2025-03-29 13:43:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226911163010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A02-33-10', '1743226937021010000', '2025-03-29 13:41:51', '2025-03-29 13:43:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226944737010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A04-39-01', '1743226983223010000', '2025-03-29 13:42:25', '2025-03-29 13:44:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226980761010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A03-33-08', '1743227049535010000', '2025-03-29 13:43:01', '2025-03-29 13:45:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743226989384010000', 1, 4, 1, 'ASRS-0337', 'P2', 'A01-36-09', '1743227023728010000', '2025-03-29 13:43:09', '2025-03-29 13:44:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227103961010000', 1, 4, 1, 'ASRS-0551', 'P3', 'A02-32-09', '1743227129620010000', '2025-03-29 13:45:04', '2025-03-29 13:46:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227305233010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A03-31-06', '1743227330943010000', '2025-03-29 13:48:25', '2025-03-29 13:49:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227361346010000', 1, 4, 1, 'ASRS-0522', 'P2', 'A01-41-03', '1743227381929010000', '2025-03-29 13:49:21', '2025-03-29 13:50:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227373154010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-34-08', '1743227399025010000', '2025-03-29 13:49:33', '2025-03-29 13:50:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227394834010000', 1, 4, 1, 'ASRS-1524', 'P2', 'A01-37-08', '1743227415527010000', '2025-03-29 13:49:55', '2025-03-29 13:52:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227470036010000', 1, 4, 1, 'ASRS-1268', 'P3', 'A03-38-04', '1743227495935010000', '2025-03-29 13:51:10', '2025-03-29 13:52:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227639117010000', 1, 4, 1, 'ASRS-1268', 'P3', 'A02-32-11', '1743227664843010000', '2025-03-29 13:53:59', '2025-03-29 13:55:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743227706208010000', 1, 4, 1, 'ASRS-1088', 'P2', 'A01-31-08', '1743227726645010000', '2025-03-29 13:55:06', '2025-03-29 13:56:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228229790010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A01-35-04', '1743228255543010000', '2025-03-29 14:03:50', '2025-03-29 14:05:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228305934010000', 1, 4, 1, 'ASRS-0315', 'P2', 'A01-34-06', '1743228326951010000', '2025-03-29 14:05:06', '2025-03-29 14:06:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228339814010000', 1, 4, 1, 'ASRS-0332', 'P2', 'A04-32-03', '1743228361162010000', '2025-03-29 14:05:40', '2025-03-29 14:06:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228376544010000', 1, 4, 1, 'ASRS-0388', 'P2', 'A01-39-02', '1743228397153010000', '2025-03-29 14:06:17', '2025-03-29 14:07:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228404288010000', 1, 4, 1, 'ASRS-0350', 'P2', 'A04-31-05', '1743228426559010000', '2025-03-29 14:06:44', '2025-03-29 14:08:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228447867010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A02-41-01', '1743228473637010000', '2025-03-29 14:07:28', '2025-03-29 14:09:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228475843010000', 1, 4, 1, 'ASRS-0334', 'P2', 'A04-31-08', '1743228496461010000', '2025-03-29 14:07:56', '2025-03-29 14:09:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228502287010000', 1, 4, 1, 'ASRS-0313', 'P2', 'A02-36-08', '1743228522837010000', '2025-03-29 14:08:22', '2025-03-29 14:09:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228527623010000', 1, 4, 1, 'ASRS-0304', 'P2', 'A02-42-02', '1743228548036010000', '2025-03-29 14:08:48', '2025-03-29 14:10:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228530371010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-37-03', '1743228556149010000', '2025-03-29 14:08:50', '2025-03-29 14:10:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228549575010000', 1, 4, 1, 'ASRS-0520', 'P2', 'A04-34-06', '1743228570234010000', '2025-03-29 14:09:10', '2025-03-29 14:11:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228560121010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A01-34-11', '1743228585838010000', '2025-03-29 14:09:20', '2025-03-29 14:12:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228604416010000', 1, 4, 1, 'ASRS-1436', 'P2', 'A04-37-03', '1743228625166010000', '2025-03-29 14:10:04', '2025-03-29 14:12:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228730293010000', 1, 4, 1, 'ASRS-0528', 'P3', 'A02-40-04', '1743228755958010000', '2025-03-29 14:12:10', '2025-03-29 14:13:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228768598010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A01-35-10', '1743228799445010000', '2025-03-29 14:12:49', '2025-03-29 14:15:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228774580010000', 1, 4, 1, 'ASRS-0305', 'P2', 'A04-30-09', '1743228795263010000', '2025-03-29 14:12:55', '2025-03-29 14:14:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228805302010000', 1, 4, 1, 'ASRS-0324', 'P2', 'A01-41-04', '1743228825858010000', '2025-03-29 14:13:25', '2025-03-29 14:17:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228809082010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A04-38-01', '1743228834849010000', '2025-03-29 14:13:29', '2025-03-29 14:15:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228835948010000', 1, 4, 1, 'ASRS-0340', 'P2', 'A03-33-08', '1743228856457010000', '2025-03-29 14:13:56', '2025-03-29 14:16:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228882069010000', 1, 4, 1, 'ASRS-1032', 'P2', 'A01-29-07', '1743228902658010000', '2025-03-29 14:14:42', '2025-03-29 14:18:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743228958907010000', 1, 4, 1, 'ASRS-1027', 'P2', 'A04-29-10', '1743228979445010000', '2025-03-29 14:15:59', '2025-03-29 14:17:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229002077010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A01-32-11', '1743229022658010000', '2025-03-29 14:16:42', '2025-03-29 14:19:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229192775010000', 1, 4, 1, 'ASRS-1902', 'P2', 'A01-36-03', '1743229213454010000', '2025-03-29 14:19:53', '2025-03-29 14:21:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229223351010000', 1, 4, 1, 'ASRS-0333', 'P2', 'A03-32-08', '1743229244065010000', '2025-03-29 14:20:23', '2025-03-29 14:21:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229257727010000', 1, 4, 1, 'ASRS-1221', 'P2', 'A02-41-01', '1743229278244010000', '2025-03-29 14:20:58', '2025-03-29 14:22:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229313285010000', 1, 4, 1, 'ASRS-1526', 'P2', 'A03-37-03', '1743229333744010000', '2025-03-29 14:21:53', '2025-03-29 14:23:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229440296010000', 1, 4, 1, 'ASRS-0528', 'P2', 'A02-32-09', '1743229460950010000', '2025-03-29 14:24:00', '2025-03-29 14:25:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229485070010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A03-38-04', '1743229511060010000', '2025-03-29 14:24:45', '2025-03-29 14:26:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229554233010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-33-10', '1743229582464010000', '2025-03-29 14:25:54', '2025-03-29 14:27:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229565739010000', 1, 4, 1, 'ASRS-0306', 'P2', 'A03-39-03', '1743229586645010000', '2025-03-29 14:26:06', '2025-03-29 14:27:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229723025010000', 1, 4, 1, 'ASRS-0519', 'P2', 'A02-40-04', '1743229743557010000', '2025-03-29 14:28:43', '2025-03-29 14:29:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229778263010000', 1, 4, 1, 'ASRS-1034', 'P2', 'A01-34-11', '1743229799063010000', '2025-03-29 14:29:38', '2025-03-29 14:32:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229922251010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A02-33-10', '1743229942758010000', '2025-03-29 14:32:02', '2025-03-29 14:33:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229953752010000', 1, 4, 1, 'ASRS-0316', 'P2', 'A03-38-04', '1743229974255010000', '2025-03-29 14:32:34', '2025-03-29 14:33:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229970015010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A01-35-10', '1743229995866010000', '2025-03-29 14:32:50', '2025-03-29 14:34:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743229993529010000', 1, 4, 1, 'ASRS-0338', 'P2', 'A01-42-03', '1743230014144010000', '2025-03-29 14:33:14', '2025-03-29 14:35:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230157191010000', 1, 4, 1, 'ASRS-0331', 'P2', 'A02-37-08', '1743230177673010000', '2025-03-29 14:35:57', '2025-03-29 14:37:28', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230349490010000', 1, 4, 1, 'ASRS-0501', 'P2', 'A01-36-09', '1743230369964010000', '2025-03-29 14:39:09', '2025-03-29 14:40:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230393492010000', 1, 4, 1, 'ASRS-0337', 'P2', 'A04-31-04', '1743230414063010000', '2025-03-29 14:39:53', '2025-03-29 14:41:02', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230539654010000', 1, 4, 1, 'ASRS-1524', 'P2', 'A01-41-03', '1743230560154010000', '2025-03-29 14:42:20', '2025-03-29 14:43:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230594491010000', 1, 4, 1, 'ASRS-0522', 'P2', 'A01-37-08', '1743230615071010000', '2025-03-29 14:43:14', '2025-03-29 14:44:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230745733010000', 1, 4, 1, 'ASRS-1088', 'P2', 'A01-31-08', '1743230766257010000', '2025-03-29 14:45:46', '2025-03-29 14:47:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743230984327010000', 1, 4, 1, 'ASRS-0315', 'P2', 'A01-34-06', '1743231005051010000', '2025-03-29 14:49:44', '2025-03-29 14:51:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231004135010000', 1, 4, 1, 'ASRS-0332', 'P2', 'A03-31-04', '1743231024874010000', '2025-03-29 14:50:04', '2025-03-29 14:51:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231036916010000', 1, 4, 1, 'ASRS-0313', 'P2', 'A02-36-08', '1743231057561010000', '2025-03-29 14:50:37', '2025-03-29 14:52:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231052339010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A02-42-02', '1743231081573010000', '2025-03-29 14:50:52', '2025-03-29 14:53:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231056767010000', 1, 4, 1, 'ASRS-0520', 'P2', 'A04-32-03', '1743231077372010000', '2025-03-29 14:50:57', '2025-03-29 14:52:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231090558010000', 1, 4, 1, 'ASRS-0304', 'P2', 'A04-31-05', '1743231111268010000', '2025-03-29 14:51:31', '2025-03-29 14:53:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231146968010000', 1, 4, 1, 'ASRS-0334', 'P2', 'A01-39-02', '1743231167671010000', '2025-03-29 14:52:27', '2025-03-29 14:54:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231166616010000', 1, 4, 1, 'ASRS-0350', 'P2', 'A04-31-08', '1743231187154010000', '2025-03-29 14:52:47', '2025-03-29 14:54:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231199266010000', 1, 4, 1, 'ASRS-1436', 'P2', 'A02-36-09', '1743231219873010000', '2025-03-29 14:53:19', '2025-03-29 14:56:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231232272010000', 1, 4, 1, 'ASRS-0388', 'P2', 'A03-35-04', '1743231252859010000', '2025-03-29 14:53:52', '2025-03-29 14:55:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231367706010000', 1, 4, 1, 'ASRS-0305', 'P2', 'A01-41-04', '1743231388476010000', '2025-03-29 14:56:08', '2025-03-29 14:57:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231385617010000', 1, 4, 1, 'ASRS-0324', 'P2', 'A04-30-09', '1743231406159010000', '2025-03-29 14:56:26', '2025-03-29 14:57:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231446912010000', 1, 4, 1, 'ASRS-0340', 'P2', 'A01-29-07', '1743231467361010000', '2025-03-29 14:57:27', '2025-03-29 14:58:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231518421010000', 1, 4, 1, 'ASRS-1032', 'P2', 'A01-32-11', '1743231539080010000', '2025-03-29 14:58:38', '2025-03-29 15:00:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231550404010000', 1, 4, 1, 'ASRS-1027', 'P2', 'A04-29-10', '1743231571160010000', '2025-03-29 14:59:10', '2025-03-29 15:01:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231573443010000', 1, 4, 1, 'ASRS-1529', 'P2', 'A01-37-09', '1743231594288010000', '2025-03-29 14:59:33', '2025-03-29 15:01:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231683092010000', 1, 4, 1, 'ASRS-0306', 'P2', 'A01-36-03', '1743231703775010000', '2025-03-29 15:01:23', '2025-03-29 15:02:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231732659010000', 1, 4, 1, 'ASRS-1902', 'P2', 'A03-32-08', '1743231753285010000', '2025-03-29 15:02:13', '2025-03-29 15:03:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231780390010000', 1, 4, 1, 'ASRS-0333', 'P2', 'A02-41-01', '1743231800975010000', '2025-03-29 15:03:00', '2025-03-29 15:05:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231834644010000', 1, 4, 1, 'ASRS-1221', 'P2', 'A03-37-03', '1743231855285010000', '2025-03-29 15:03:55', '2025-03-29 15:05:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231849036010000', 1, 4, 1, 'ASRS-1526', 'P2', 'A02-32-09', '1743231869672010000', '2025-03-29 15:04:09', '2025-03-29 15:05:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231912389010000', 1, 4, 1, 'ASRS-0528', 'P2', 'A04-34-06', '1743231932960010000', '2025-03-29 15:05:12', '2025-03-29 15:06:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231930132010000', 1, 4, 1, 'ASRS-0331', 'P2', 'A02-37-08', '1743231950664010000', '2025-03-29 15:05:30', '2025-03-29 15:07:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743231957844010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-38-08', '1743231983665010000', '2025-03-29 15:05:58', '2025-03-29 15:08:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232062271010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A04-37-03', '1743232090778010000', '2025-03-29 15:07:42', '2025-03-29 15:09:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232073744010000', 1, 4, 1, 'ASRS-0519', 'P2', 'A02-40-04', '1743232094982010000', '2025-03-29 15:07:54', '2025-03-29 15:09:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232140311010000', 1, 4, 1, 'ASRS-1034', 'P2', 'A04-38-02', '1743232160961010000', '2025-03-29 15:09:00', '2025-03-29 15:11:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232249542010000', 1, 4, 1, 'ASRS-0316', 'P2', 'A02-33-10', '1743232270203010000', '2025-03-29 15:10:50', '2025-03-29 15:12:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232334511010000', 1, 4, 1, 'ASRS-1031', 'P2', 'A04-31-08', '1743232355072010000', '2025-03-29 15:12:15', '2025-03-29 15:13:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232397767010000', 1, 4, 1, 'ASRS-0338', 'P2', 'A02-42-02', '1743232418385010000', '2025-03-29 15:13:18', '2025-03-29 15:14:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232442077010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A04-31-04', '1743232467879010000', '2025-03-29 15:14:02', '2025-03-29 15:15:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232519606010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-34-11', '1743232545278010000', '2025-03-29 15:15:20', '2025-03-29 15:16:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232566033010000', 1, 4, 1, 'ASRS-0501', 'P2', 'A04-37-03', '1743232586663010000', '2025-03-29 15:16:06', '2025-03-29 15:17:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232573854010000', 1, 4, 1, 'ASRS-0337', 'P2', 'A01-36-09', '1743232594467010000', '2025-03-29 15:16:14', '2025-03-29 15:18:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232691055010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-41-03', '1743232716871010000', '2025-03-29 15:18:11', '2025-03-29 15:19:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232724309010000', 1, 4, 1, 'ASRS-1524', 'P2', 'A03-33-08', '1743232744785010000', '2025-03-29 15:18:44', '2025-03-29 15:20:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232816321010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-37-08', '1743232842289010000', '2025-03-29 15:20:16', '2025-03-29 15:22:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232837900010000', 1, 4, 1, 'ASRS-0522', 'P2', 'A03-38-04', '1743232858501010000', '2025-03-29 15:20:38', '2025-03-29 15:21:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743232974590010000', 1, 4, 1, 'ASRS-1088', 'P2', 'A01-31-08', '1743232994972010000', '2025-03-29 15:22:55', '2025-03-29 15:24:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P2', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743233130944010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A01-34-11', '1743233156672010000', '2025-03-29 15:25:31', '2025-03-29 15:27:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743233150080010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-31-04', '1743233175894010000', '2025-03-29 15:25:50', '2025-03-29 15:27:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743233280760010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-41-03', '1743233306675010000', '2025-03-29 15:28:01', '2025-03-29 15:29:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743233343627010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-37-08', '1743233369389010000', '2025-03-29 15:29:04', '2025-03-29 15:30:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384044566010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-34-11', '1743384070283010000', '2025-03-31 09:20:45', '2025-03-31 09:22:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384119164010000', 1, 4, 1, 'ASRS-0271', 'P3', 'A01-42-03', '1743384144954010000', '2025-03-31 09:21:59', '2025-03-31 09:23:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384350693010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-41-03', '1743384376576010000', '2025-03-31 09:25:51', '2025-03-31 09:27:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384442904010000', 1, 4, 1, 'ASRS-0386', 'P3', 'A01-37-08', '1743384468657010000', '2025-03-31 09:27:23', '2025-03-31 09:29:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384785077010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-34-11', '1743384810973010000', '2025-03-31 09:33:05', '2025-03-31 09:34:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743384910962010000', 1, 4, 1, 'ASRS-1531', 'P3', 'A01-41-03', '1743384936664010000', '2025-03-31 09:35:11', '2025-03-31 09:36:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395256030010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1743395281960010000', '2025-03-31 12:27:36', '2025-03-31 12:29:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395287560010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-31-04', '1743395313442010000', '2025-03-31 12:28:08', '2025-03-31 12:29:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395321910010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-39-02', '1743395347643010000', '2025-03-31 12:28:42', '2025-03-31 12:30:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395356726010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A04-31-04', '1743395382459010000', '2025-03-31 12:29:17', '2025-03-31 12:30:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395383855010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A02-36-08', '1743395409743010000', '2025-03-31 12:29:44', '2025-03-31 12:31:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395404296010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A04-32-03', '1743395430145010000', '2025-03-31 12:30:04', '2025-03-31 12:31:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395700889010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-39-06', '1743395726560010000', '2025-03-31 12:35:01', '2025-03-31 12:36:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395748804010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-31-05', '1743395774582010000', '2025-03-31 12:35:49', '2025-03-31 12:37:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395885926010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-34-11', '1743395911660010000', '2025-03-31 12:38:06', '2025-03-31 12:39:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395919105010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-29-06', '1743395944655010000', '2025-03-31 12:38:39', '2025-03-31 12:39:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743395957223010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-36-09', '1743395983037010000', '2025-03-31 12:39:17', '2025-03-31 12:40:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396030148010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A01-38-08', '1743396055972010000', '2025-03-31 12:40:30', '2025-03-31 12:42:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396135575010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-41-04', '1743396161558010000', '2025-03-31 12:42:16', '2025-03-31 12:43:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396157577010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A03-35-04', '1743396183458010000', '2025-03-31 12:42:38', '2025-03-31 12:43:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396205558010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A01-29-07', '1743396231456010000', '2025-03-31 12:43:26', '2025-03-31 12:44:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396234852010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-29-10', '1743396260590010000', '2025-03-31 12:43:55', '2025-03-31 12:45:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396348901010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A01-42-02', '1743396374542010000', '2025-03-31 12:45:49', '2025-03-31 12:47:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396406555010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-30-09', '1743396432442010000', '2025-03-31 12:46:47', '2025-03-31 12:48:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396482188010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A02-36-09', '1743396508046010000', '2025-03-31 12:48:02', '2025-03-31 12:49:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396542944010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A02-37-08', '1743396568679010000', '2025-03-31 12:49:03', '2025-03-31 12:50:42', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396664518010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A02-32-11', '1743396690443010000', '2025-03-31 12:51:05', '2025-03-31 12:52:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396731368010000', 1, 4, 1, 'ASRS-1268', 'P3', 'A01-37-09', '1743396757077010000', '2025-03-31 12:52:11', '2025-03-31 12:54:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396764936010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-31-06', '1743396790962010000', '2025-03-31 12:52:45', '2025-03-31 12:54:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396928639010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A01-35-04', '1743396954458010000', '2025-03-31 12:55:29', '2025-03-31 12:56:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743396947205010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A03-32-08', '1743396973649010000', '2025-03-31 12:55:47', '2025-03-31 12:57:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397002496010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A02-40-04', '1743397028255010000', '2025-03-31 12:56:42', '2025-03-31 12:58:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397025289010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A04-38-01', '1743397051059010000', '2025-03-31 12:57:05', '2025-03-31 12:58:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397138425010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A01-39-08', '1743397164149010000', '2025-03-31 12:58:58', '2025-03-31 13:00:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397233291010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A01-40-07', '1743397258948010000', '2025-03-31 13:00:33', '2025-03-31 13:02:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397752311010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A02-42-02', '1743397778289010000', '2025-03-31 13:09:12', '2025-03-31 13:10:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397781721010001', 1, 4, 1, 'ASRS-0316', 'P3', 'A04-34-06', '1743397807375010000', '2025-03-31 13:09:42', '2025-03-31 13:11:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397808310010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-06', '1743397834363010000', '2025-03-31 13:10:08', '2025-03-31 13:12:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743397980725010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743398006557010000', '2025-03-31 13:13:01', '2025-03-31 13:14:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398117516010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-42-05', '1743398143362010000', '2025-03-31 13:15:18', '2025-03-31 13:17:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398245429010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A01-35-10', '1743398271182010000', '2025-03-31 13:17:25', '2025-03-31 13:18:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398580765010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1743398606583010000', '2025-03-31 13:23:01', '2025-03-31 13:24:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398616640010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-31-04', '1743398642575010000', '2025-03-31 13:23:37', '2025-03-31 13:25:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398635715010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A01-39-02', '1743398662074010000', '2025-03-31 13:23:56', '2025-03-31 13:26:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398646808010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A04-31-04', '1743398672584010000', '2025-03-31 13:24:07', '2025-03-31 13:26:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398696518010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A02-36-08', '1743398722382010000', '2025-03-31 13:24:57', '2025-03-31 13:26:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398713075010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A04-32-03', '1743398738866010000', '2025-03-31 13:25:13', '2025-03-31 13:26:50', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398791518010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-39-06', '1743398817485010000', '2025-03-31 13:26:32', '2025-03-31 13:28:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398803914010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A04-31-05', '1743398831286010000', '2025-03-31 13:26:44', '2025-03-31 13:28:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398942073010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-34-11', '1743398967769010000', '2025-03-31 13:29:02', '2025-03-31 13:30:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398967753010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A03-29-06', '1743398993581010000', '2025-03-31 13:29:28', '2025-03-31 13:30:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743398987428010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-38-08', '1743399013087010000', '2025-03-31 13:29:47', '2025-03-31 13:31:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399019553010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A04-30-09', '1743399045491010000', '2025-03-31 13:30:20', '2025-03-31 13:31:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399120569010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-41-04', '1743399146571010000', '2025-03-31 13:32:01', '2025-03-31 13:34:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399137363010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A03-35-04', '1743399163087010000', '2025-03-31 13:32:17', '2025-03-31 13:33:31', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399205195010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-29-10', '1743399230871010000', '2025-03-31 13:33:25', '2025-03-31 13:34:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399312570010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A01-29-07', '1743399338568010000', '2025-03-31 13:35:13', '2025-03-31 13:36:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399328073010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A04-31-08', '1743399353896010000', '2025-03-31 13:35:28', '2025-03-31 13:36:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399349827010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-42-02', '1743399375475010000', '2025-03-31 13:35:50', '2025-03-31 13:37:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399415050010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A04-38-02', '1743399440887010000', '2025-03-31 13:36:55', '2025-03-31 13:38:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399489555010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A02-36-09', '1743399515274010000', '2025-03-31 13:38:10', '2025-03-31 13:39:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399591433010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A02-32-11', '1743399617574010000', '2025-03-31 13:39:51', '2025-03-31 13:41:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399600785010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A03-31-06', '1743399626575010000', '2025-03-31 13:40:01', '2025-03-31 13:41:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399680174010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A02-37-08', '1743399706076010000', '2025-03-31 13:41:20', '2025-03-31 13:42:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399724590010000', 1, 4, 1, 'ASRS-1268', 'P3', 'A03-32-08', '1743399750163010000', '2025-03-31 13:42:05', '2025-03-31 13:43:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399799973010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A01-35-04', '1743399825774010000', '2025-03-31 13:43:20', '2025-03-31 13:45:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399819303010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-38-01', '1743399844999010000', '2025-03-31 13:43:39', '2025-03-31 13:45:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399845725010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-40-04', '1743399871686010000', '2025-03-31 13:44:06', '2025-03-31 13:46:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399868927010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-37-03', '1743399894762010000', '2025-03-31 13:44:29', '2025-03-31 13:45:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743399928010010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A04-39-01', '1743399953879010000', '2025-03-31 13:45:28', '2025-03-31 13:46:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400001844010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A01-37-09', '1743400027669010000', '2025-03-31 13:46:42', '2025-03-31 13:48:01', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400095091010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743400120962010000', '2025-03-31 13:48:15', '2025-03-31 13:49:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400206562010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-42-02', '1743400232291010000', '2025-03-31 13:50:07', '2025-03-31 13:51:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400220484010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A04-34-06', '1743400246378010000', '2025-03-31 13:50:20', '2025-03-31 13:51:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400295341010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-38-08', '1743400321059010000', '2025-03-31 13:51:35', '2025-03-31 13:53:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400403022010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-39-08', '1743400428758010000', '2025-03-31 13:53:23', '2025-03-31 13:54:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400515570010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A01-35-10', '1743400541560010000', '2025-03-31 13:55:16', '2025-03-31 13:56:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400716843010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-34-06', '1743400742583010000', '2025-03-31 13:58:37', '2025-03-31 14:00:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400731446010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A03-31-04', '1743400757280010000', '2025-03-31 13:58:51', '2025-03-31 14:00:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400748349010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-39-02', '1743400774075010000', '2025-03-31 13:59:08', '2025-03-31 14:01:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400764182010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A04-31-04', '1743400789980010000', '2025-03-31 13:59:24', '2025-03-31 14:01:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400794753010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A02-36-08', '1743400820564010000', '2025-03-31 13:59:55', '2025-03-31 14:02:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400816886010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A04-32-03', '1743400842811010000', '2025-03-31 14:00:17', '2025-03-31 14:02:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400843612010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-39-06', '1743400869461010000', '2025-03-31 14:00:44', '2025-03-31 14:03:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743400905095010001', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-31-05', '1743400930983010000', '2025-03-31 14:01:45', '2025-03-31 14:03:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401020958010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-34-11', '1743401046778010000', '2025-03-31 14:03:41', '2025-03-31 14:05:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401041719010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A03-29-06', '1743401067481010000', '2025-03-31 14:04:02', '2025-03-31 14:05:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401110231010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A01-42-02', '1743401136183010000', '2025-03-31 14:05:10', '2025-03-31 14:07:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401134063010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-30-09', '1743401159867010000', '2025-03-31 14:05:34', '2025-03-31 14:06:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401261702010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A01-29-07', '1743401287381010000', '2025-03-31 14:07:42', '2025-03-31 14:09:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401275733010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A03-35-04', '1743401301764010000', '2025-03-31 14:07:56', '2025-03-31 14:09:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401303025010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A01-41-04', '1743401328783010000', '2025-03-31 14:08:23', '2025-03-31 14:10:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401319029010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A04-29-10', '1743401344967010000', '2025-03-31 14:08:39', '2025-03-31 14:10:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401360374010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-36-09', '1743401386077010000', '2025-03-31 14:09:20', '2025-03-31 14:11:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401377630010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A04-30-09', '1743401458966010000', '2025-03-31 14:09:38', '2025-03-31 14:11:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401455598010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-40-07', '1743401481182010000', '2025-03-31 14:10:56', '2025-03-31 14:12:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401534414010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-41-06', '1743401560366010000', '2025-03-31 14:12:14', '2025-03-31 14:13:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401631272010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A02-32-11', '1743401656972010000', '2025-03-31 14:13:51', '2025-03-31 14:15:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401648041010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-31-06', '1743401674092010000', '2025-03-31 14:14:08', '2025-03-31 14:15:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401764795010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A02-37-08', '1743401790510010000', '2025-03-31 14:16:05', '2025-03-31 14:17:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401865714010000', 1, 4, 1, 'ASRS-0364', 'P3', 'A01-36-03', '1743401891590010000', '2025-03-31 14:17:46', '2025-03-31 14:19:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401971511010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A01-35-04', '1743401997195010000', '2025-03-31 14:19:32', '2025-03-31 14:21:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743401994781010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A04-38-01', '1743402020606010000', '2025-03-31 14:19:55', '2025-03-31 14:21:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402024564010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A01-37-09', '1743402050315010000', '2025-03-31 14:20:25', '2025-03-31 14:22:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402055416010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A03-32-08', '1743402081489010000', '2025-03-31 14:20:55', '2025-03-31 14:22:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402078360010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A02-40-04', '1743402103988010000', '2025-03-31 14:21:18', '2025-03-31 14:23:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402108433010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A03-37-03', '1743402134314010000', '2025-03-31 14:21:48', '2025-03-31 14:23:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402249777010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743402275590010000', '2025-03-31 14:24:10', '2025-03-31 14:25:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402353892010001', 1, 4, 1, 'ASRS-0306', 'P3', 'A02-42-02', '1743402379708010000', '2025-03-31 14:25:54', '2025-03-31 14:27:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402367206010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A04-34-06', '1743402393495010000', '2025-03-31 14:26:07', '2025-03-31 14:27:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402445461010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-38-08', '1743402471195010000', '2025-03-31 14:27:25', '2025-03-31 14:28:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402619180010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-39-08', '1743402644915010000', '2025-03-31 14:30:19', '2025-03-31 14:31:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402715313010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A01-35-10', '1743402741193010000', '2025-03-31 14:31:55', '2025-03-31 14:33:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402843886010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-34-06', '1743402869910010000', '2025-03-31 14:34:04', '2025-03-31 14:35:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402902401010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A03-31-04', '1743402928392010000', '2025-03-31 14:35:02', '2025-03-31 14:36:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402925622010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-39-02', '1743402951508010000', '2025-03-31 14:35:26', '2025-03-31 14:37:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402951302010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A04-31-04', '1743402977017010000', '2025-03-31 14:35:51', '2025-03-31 14:37:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743402961006010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-39-06', '1743403029809010000', '2025-03-31 14:36:01', '2025-03-31 14:38:15', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403072477010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-42-05', '1743403098210010000', '2025-03-31 14:37:52', '2025-03-31 14:39:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403433821010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-42-02', '1743403459417010000', '2025-03-31 14:43:54', '2025-03-31 14:45:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403452111010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A03-29-06', '1743403478604010000', '2025-03-31 14:44:12', '2025-03-31 14:45:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403466580010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-36-08', '1743403492399010000', '2025-03-31 14:44:27', '2025-03-31 14:46:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403483430010000', 1, 4, 1, 'ASRS-1436', 'P3', 'A04-31-04', '1743403509509010000', '2025-03-31 14:44:43', '2025-03-31 14:46:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403632110010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A01-29-07', '1743403700931010000', '2025-03-31 14:47:12', '2025-03-31 14:49:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403700628010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-31-05', '1743403726402010000', '2025-03-31 14:48:21', '2025-03-31 14:49:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403753639010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-32-11', '1743403779498010000', '2025-03-31 14:49:14', '2025-03-31 14:50:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403809616010000', 1, 4, 1, 'ASRS-1032', 'P3', 'A04-38-02', '1743403835299010000', '2025-03-31 14:50:10', '2025-03-31 14:51:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403910628010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A02-41-01', '1743403936425010000', '2025-03-31 14:51:51', '2025-03-31 14:53:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403943418010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A03-35-04', '1743403969108010000', '2025-03-31 14:52:23', '2025-03-31 14:53:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403981199010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A01-35-04', '1743404006921010000', '2025-03-31 14:53:01', '2025-03-31 14:55:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743403994024010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-30-09', '1743404020718010000', '2025-03-31 14:53:14', '2025-03-31 14:54:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404053554010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A04-39-01', '1743404079532010000', '2025-03-31 14:54:14', '2025-03-31 14:55:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404128887010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-32-09', '1743404154505010000', '2025-03-31 14:55:29', '2025-03-31 14:56:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404227307010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-32-11', '1743404253223010000', '2025-03-31 14:57:07', '2025-03-31 14:58:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404303648010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743404372320010000', '2025-03-31 14:58:24', '2025-03-31 15:00:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404400805010001', 1, 4, 1, 'ASRS-0316', 'P3', 'A04-34-06', '1743404426608010000', '2025-03-31 15:00:01', '2025-03-31 15:01:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404411715010001', 1, 4, 1, 'ASRS-0306', 'P3', 'A02-42-02', '1743404437419010000', '2025-03-31 15:00:12', '2025-03-31 15:02:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404477402010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-34-08', '1743404503108010000', '2025-03-31 15:01:17', '2025-03-31 15:02:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404544198010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-04', '1743404570013010000', '2025-03-31 15:02:24', '2025-03-31 15:03:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404647298010001', 1, 4, 1, 'ASRS-1034', 'P3', 'A01-37-09', '1743404673209010000', '2025-03-31 15:04:07', '2025-03-31 15:05:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743404808549010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A01-38-08', '1743404834323010000', '2025-03-31 15:06:49', '2025-03-31 15:08:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405050325010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A02-32-11', '1743405076136010000', '2025-03-31 15:10:50', '2025-03-31 15:12:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405068405010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A03-32-08', '1743405095332010000', '2025-03-31 15:11:08', '2025-03-31 15:12:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405180548010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A01-36-09', '1743405206314010000', '2025-03-31 15:13:01', '2025-03-31 15:14:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405198767010001', 1, 4, 1, 'ASRS-0337', 'P3', 'A03-37-03', '1743405225533010000', '2025-03-31 15:13:19', '2025-03-31 15:14:46', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405325879010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A01-31-08', '1743405351844010000', '2025-03-31 15:15:26', '2025-03-31 15:16:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405354692010000', 1, 4, 1, 'ASRS-1088', 'P3', 'A03-33-08', '1743405380340010000', '2025-03-31 15:15:55', '2025-03-31 15:17:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405564640010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A01-34-06', '1743405590638010000', '2025-03-31 15:19:25', '2025-03-31 15:21:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405590480010001', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-29-06', '1743405616438010000', '2025-03-31 15:19:50', '2025-03-31 15:21:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405616433010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A01-39-02', '1743405642218010000', '2025-03-31 15:20:16', '2025-03-31 15:22:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405637449010001', 1, 4, 1, 'ASRS-0332', 'P3', 'A03-31-04', '1743405663532010000', '2025-03-31 15:20:37', '2025-03-31 15:22:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405662374010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A01-39-06', '1743405688420010000', '2025-03-31 15:21:02', '2025-03-31 15:23:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405762893010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A04-32-03', '1743405788627010000', '2025-03-31 15:22:43', '2025-03-31 15:24:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405777311010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A02-36-08', '1743405803048010000', '2025-03-31 15:22:57', '2025-03-31 15:24:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743405873505010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-39-08', '1743405899355010000', '2025-03-31 15:24:34', '2025-03-31 15:26:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406030151010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-42-02', '1743406055920010000', '2025-03-31 15:27:10', '2025-03-31 15:28:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406086774010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A02-32-09', '1743406112631010000', '2025-03-31 15:28:07', '2025-03-31 15:29:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406326576010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-34-11', '1743406352345010000', '2025-03-31 15:32:07', '2025-03-31 15:33:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406395067010000', 1, 4, 1, 'ASRS-0301', 'P3', 'A01-37-10', '1743406420723010000', '2025-03-31 15:33:15', '2025-03-31 15:34:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406498985010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A02-41-01', '1743406524828010000', '2025-03-31 15:34:59', '2025-03-31 15:37:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406519504010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-31-04', '1743406545243010000', '2025-03-31 15:35:20', '2025-03-31 15:36:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406549129010000', 1, 4, 1, 'ASRS-0517', 'P3', 'A01-29-07', '1743406575233010000', '2025-03-31 15:35:49', '2025-03-31 15:38:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406610839010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-05', '1743406636744010000', '2025-03-31 15:36:51', '2025-03-31 15:38:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406640728010001', 1, 4, 1, 'ASRS-0336', 'P3', 'A02-36-09', '1743406666427010000', '2025-03-31 15:37:21', '2025-03-31 15:39:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406731608010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-36-04', '1743406757323010000', '2025-03-31 15:38:52', '2025-03-31 15:40:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406909198010000', 1, 4, 1, 'ASRS-1529', 'P3', 'A01-35-04', '1743406935243010000', '2025-03-31 15:41:49', '2025-03-31 15:43:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743406968102010000', 1, 4, 1, 'ASRS-0359', 'P3', 'A01-32-11', '1743406994045010000', '2025-03-31 15:42:48', '2025-03-31 15:44:17', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407022781010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A04-31-08', '1743407048630010000', '2025-03-31 15:43:43', '2025-03-31 15:44:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407081654010000', 1, 4, 1, 'ASRS-0298', 'P3', 'A01-37-06', '1743407107456010000', '2025-03-31 15:44:42', '2025-03-31 15:46:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407179876010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A02-32-11', '1743407205827010000', '2025-03-31 15:46:20', '2025-03-31 15:47:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407207642010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-31-06', '1743407233446010000', '2025-03-31 15:46:48', '2025-03-31 15:48:00', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407273282010001', 1, 4, 1, 'ASRS-0329', 'P3', 'A01-34-11', '1743407299124010000', '2025-03-31 15:47:53', '2025-03-31 15:49:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407400916010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A02-40-04', '1743407426643010000', '2025-03-31 15:50:01', '2025-03-31 15:51:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407417262010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A04-30-09', '1743407443127010000', '2025-03-31 15:50:17', '2025-03-31 15:51:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407436973010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A02-37-08', '1743407462941010000', '2025-03-31 15:50:37', '2025-03-31 15:53:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407465529010003', 1, 4, 1, 'ASRS-1034', 'P3', 'A04-38-01', '1743407491447010000', '2025-03-31 15:51:06', '2025-03-31 15:52:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407491580010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A01-37-09', '1743407517231010000', '2025-03-31 15:51:32', '2025-03-31 15:53:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407543829010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A03-34-08', '1743407569735010000', '2025-03-31 15:52:24', '2025-03-31 15:53:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407634725010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743407660633010000', '2025-03-31 15:53:55', '2025-03-31 15:55:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407784862010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-42-02', '1743407810626010000', '2025-03-31 15:56:25', '2025-03-31 15:57:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407810743010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A04-34-06', '1743407836761010000', '2025-03-31 15:56:51', '2025-03-31 15:58:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407832735010001', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-04', '1743407858631010000', '2025-03-31 15:57:13', '2025-03-31 15:58:47', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743407945823010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-38-08', '1743407971730010000', '2025-03-31 15:59:06', '2025-03-31 16:00:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408305170010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-39-02', '1743408331154010000', '2025-03-31 16:05:05', '2025-03-31 16:07:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408338213010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A03-29-06', '1743408363880010000', '2025-03-31 16:05:38', '2025-03-31 16:06:51', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408359722010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A02-36-08', '1743408385759010000', '2025-03-31 16:06:00', '2025-03-31 16:08:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408379424010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A03-31-04', '1743408405256010000', '2025-03-31 16:06:19', '2025-03-31 16:07:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408399578010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A04-32-03', '1743408425354010000', '2025-03-31 16:06:40', '2025-03-31 16:08:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408411849010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-34-06', '1743408439135010000', '2025-03-31 16:06:52', '2025-03-31 16:08:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408516498010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A01-39-06', '1743408542355010000', '2025-03-31 16:08:36', '2025-03-31 16:10:21', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743408529261010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A03-32-08', '1743408556453010000', '2025-03-31 16:08:49', '2025-03-31 16:10:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467538901010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A02-32-09', '1743467564607010000', '2025-04-01 08:32:19', '2025-04-01 08:33:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467562511010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-36-04', '1743467588323010000', '2025-04-01 08:32:43', '2025-04-01 08:34:05', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467597975010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A01-42-02', '1743467623712010000', '2025-04-01 08:33:18', '2025-04-01 08:35:03', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467941825010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A01-29-07', '1743467968123010000', '2025-04-01 08:39:02', '2025-04-01 08:40:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467965522010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-31-04', '1743467991503010000', '2025-04-01 08:39:26', '2025-04-01 08:40:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467979133010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A02-32-09', '1743468005611010000', '2025-04-01 08:39:39', '2025-04-01 08:41:08', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743467990148010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A04-31-05', '1743468016428010000', '2025-04-01 08:39:50', '2025-04-01 08:41:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468024329010001', 1, 4, 1, 'ASRS-0359', 'P3', 'A02-41-01', '1743468050023010000', '2025-04-01 08:40:24', '2025-04-01 08:41:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468041475010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A04-31-08', '1743468067400010000', '2025-04-01 08:40:41', '2025-04-01 08:42:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468056608010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-32-11', '1743468082401010000', '2025-04-01 08:40:57', '2025-04-01 08:43:20', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468067497010000', 1, 4, 1, 'ASRS-0517', 'P3', 'A03-38-04', '1743468093500010000', '2025-04-01 08:41:07', '2025-04-01 08:43:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468170570010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A02-32-11', '1743468196399010000', '2025-04-01 08:42:51', '2025-04-01 08:44:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468224506010001', 1, 4, 1, 'ASRS-0318', 'P3', 'A03-31-06', '1743468250426010000', '2025-04-01 08:43:45', '2025-04-01 08:45:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468323632010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A01-34-11', '1743468349405010000', '2025-04-01 08:45:24', '2025-04-01 08:46:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468436021010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A02-40-04', '1743468461920010000', '2025-04-01 08:47:16', '2025-04-01 08:49:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468484417010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-30-09', '1743468510209010000', '2025-04-01 08:48:04', '2025-04-01 08:49:18', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468518725010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A02-36-09', '1743468544706010000', '2025-04-01 08:48:39', '2025-04-01 08:50:39', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468544228010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A04-38-01', '1743468570218010000', '2025-04-01 08:49:04', '2025-04-01 08:50:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468559438010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-37-08', '1743468585203010000', '2025-04-01 08:49:19', '2025-04-01 08:51:30', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468578581010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A03-34-08', '1743468604423010000', '2025-04-01 08:49:39', '2025-04-01 08:51:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468661085010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A02-33-10', '1743468729805010000', '2025-04-01 08:51:01', '2025-04-01 08:53:53', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468796814010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A04-34-06', '1743468822798010000', '2025-04-01 08:53:17', '2025-04-01 08:54:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468812638010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A02-42-02', '1743468838420010000', '2025-04-01 08:53:33', '2025-04-01 08:55:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743468844970010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-04', '1743468870808010000', '2025-04-01 08:54:05', '2025-04-01 08:56:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469131663010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-37-09', '1743469157613010000', '2025-04-01 08:58:52', '2025-04-01 09:00:24', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469760424010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A01-34-06', '1743469787652010000', '2025-04-01 09:09:20', '2025-04-01 09:10:40', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469785765010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A03-29-06', '1743469826341010000', '2025-04-01 09:09:46', '2025-04-01 09:11:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469794799010000', 1, 4, 1, 'ASRS-1900', 'P3', 'A01-39-02', '1743469830529010000', '2025-04-01 09:09:55', '2025-04-01 09:11:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469812625010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A03-31-04', '1743469838642010000', '2025-04-01 09:10:13', '2025-04-01 09:11:59', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469853787010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-36-08', '1743469879446010000', '2025-04-01 09:10:54', '2025-04-01 09:12:27', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469868567010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A04-32-03', '1743469894422010000', '2025-04-01 09:11:09', '2025-04-01 09:12:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469883767010001', 1, 4, 1, 'ASRS-0520', 'P3', 'A01-39-06', '1743469909415010000', '2025-04-01 09:11:24', '2025-04-01 09:13:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743469925084010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A01-38-08', '1743469950810010000', '2025-04-01 09:12:05', '2025-04-01 09:15:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470073938010000', 1, 4, 1, 'ASRS-0384', 'P3', 'A03-32-08', '1743470099917010000', '2025-04-01 09:14:34', '2025-04-01 09:15:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470101936010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A01-32-11', '1743470127828010000', '2025-04-01 09:15:02', '2025-04-01 09:16:32', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470309485010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-42-02', '1743470335142010000', '2025-04-01 09:18:29', '2025-04-01 09:19:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470429228010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A01-29-07', '1743470455150010000', '2025-04-01 09:20:29', '2025-04-01 09:22:16', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470450040010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A04-31-04', '1743470475818010000', '2025-04-01 09:20:50', '2025-04-01 09:22:25', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470462584010000', 1, 4, 1, 'ASRS-1245', 'P3', 'A02-32-09', '1743470489618010000', '2025-04-01 09:21:03', '2025-04-01 09:23:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470492301010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A04-31-05', '1743470518142010000', '2025-04-01 09:21:32', '2025-04-01 09:23:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470505411010000', 1, 4, 1, 'ASRS-0336', 'P3', 'A01-42-02', '1743470531918010000', '2025-04-01 09:21:45', '2025-04-01 09:24:33', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470571551010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A04-29-10', '1743470597319010000', '2025-04-01 09:22:52', '2025-04-01 09:24:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470609878010000', 1, 4, 1, 'ASRS-0331', 'P3', 'A02-41-01', '1743470635736010000', '2025-04-01 09:23:30', '2025-04-01 09:25:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470650993010001', 1, 4, 1, 'ASRS-0359', 'P3', 'A04-31-08', '1743470676833010000', '2025-04-01 09:24:11', '2025-04-01 09:25:37', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470786427010000', 1, 4, 1, 'ASRS-0318', 'P3', 'A02-32-11', '1743470812416010000', '2025-04-01 09:26:26', '2025-04-01 09:27:44', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743470802252010000', 1, 4, 1, 'ASRS-0383', 'P3', 'A03-31-06', '1743470828032010000', '2025-04-01 09:26:42', '2025-04-01 09:28:04', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743471910407010000', 1, 4, 1, 'ASRS-0329', 'P3', 'A01-34-11', '1743471936248010000', '2025-04-01 09:45:10', '2025-04-01 09:46:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472023135010000', 1, 4, 1, 'ASRS-0317', 'P3', 'A02-40-04', '1743472049050010000', '2025-04-01 09:47:03', '2025-04-01 09:48:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472151107010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A02-36-09', '1743472177129010000', '2025-04-01 09:49:11', '2025-04-01 09:50:54', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472174367010000', 1, 4, 1, 'ASRS-0527', 'P3', 'A04-30-09', '1743472200246010000', '2025-04-01 09:49:34', '2025-04-01 09:50:52', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472187035010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A02-33-10', '1743472214056010000', '2025-04-01 09:49:47', '2025-04-01 09:51:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472205914010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A04-38-01', '1743472233244010000', '2025-04-01 09:50:06', '2025-04-01 09:51:38', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472239576010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-37-08', '1743472265350010000', '2025-04-01 09:50:40', '2025-04-01 09:53:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472258520010000', 1, 4, 1, 'ASRS-0303', 'P3', 'A04-36-04', '1743472284526010000', '2025-04-01 09:50:59', '2025-04-01 09:52:58', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472399674010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A02-42-02', '1743472425530010000', '2025-04-01 09:53:20', '2025-04-01 09:54:41', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472441472010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A04-34-06', '1743472467231010000', '2025-04-01 09:54:01', '2025-04-01 09:55:23', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472505329010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A01-41-04', '1743472531446010000', '2025-04-01 09:55:05', '2025-04-01 09:56:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472676654010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-37-09', '1743472702745010000', '2025-04-01 09:57:57', '2025-04-01 09:59:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472778155010000', 1, 4, 1, 'ASRS-1683', 'P3', 'A01-35-10', '1743472804134010000', '2025-04-01 09:59:38', '2025-04-01 10:01:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472979905010000', 1, 4, 1, 'ASRS-0315', 'P3', 'A01-34-06', '1743473006034010000', '2025-04-01 10:03:00', '2025-04-01 10:04:34', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743472988785010000', 1, 4, 1, 'ASRS-0304', 'P3', 'A03-29-06', '1743473014441010000', '2025-04-01 10:03:09', '2025-04-01 10:04:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473024730010000', 1, 4, 1, 'ASRS-0332', 'P3', 'A01-32-11', '1743473050736010000', '2025-04-01 10:03:45', '2025-04-01 10:05:56', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473040926010000', 1, 4, 1, 'ASRS-0388', 'P3', 'A03-31-04', '1743473066961010000', '2025-04-01 10:04:01', '2025-04-01 10:05:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473070779010000', 1, 4, 1, 'ASRS-0313', 'P3', 'A01-38-08', '1743473096636010000', '2025-04-01 10:04:31', '2025-04-01 10:07:19', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473083146010000', 1, 4, 1, 'ASRS-0350', 'P3', 'A04-32-03', '1743473110434010000', '2025-04-01 10:04:43', '2025-04-01 10:06:07', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473166525010000', 1, 4, 1, 'ASRS-0520', 'P3', 'A03-34-08', '1743473192337010000', '2025-04-01 10:06:07', '2025-04-01 10:07:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473263081010000', 1, 4, 1, 'ASRS-0334', 'P3', 'A02-36-08', '1743473288638010000', '2025-04-01 10:07:43', '2025-04-01 10:09:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473355786010000', 1, 4, 1, 'ASRS-0305', 'P3', 'A01-29-07', '1743473381656010000', '2025-04-01 10:09:16', '2025-04-01 10:10:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473368113010000', 1, 4, 1, 'ASRS-0324', 'P3', 'A04-31-04', '1743473395437010000', '2025-04-01 10:09:28', '2025-04-01 10:10:48', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473404229010000', 1, 4, 1, 'ASRS-0340', 'P3', 'A01-39-06', '1743473429949010000', '2025-04-01 10:10:04', '2025-04-01 10:11:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473471205010000', 1, 4, 1, 'ASRS-1027', 'P3', 'A01-39-08', '1743473496864010000', '2025-04-01 10:11:11', '2025-04-01 10:12:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473556576010000', 1, 4, 1, 'ASRS-1032', 'P3', 'A01-40-07', '1743473582352010000', '2025-04-01 10:12:37', '2025-04-01 10:14:09', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473601425010000', 1, 4, 1, 'ASRS-0359', 'P3', 'A04-31-05', '1743473627042010000', '2025-04-01 10:13:21', '2025-04-01 10:14:55', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473713613010000', 1, 4, 1, 'ASRS-0333', 'P3', 'A02-42-02', '1743473739586010000', '2025-04-01 10:15:14', '2025-04-01 10:17:29', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473743113010000', 1, 4, 1, 'ASRS-0306', 'P3', 'A03-35-04', '1743473768947010000', '2025-04-01 10:15:43', '2025-04-01 10:17:10', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473794880010000', 1, 4, 1, 'ASRS-1526', 'P3', 'A02-41-01', '1743473820845010000', '2025-04-01 10:16:35', '2025-04-01 10:18:22', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473816098010000', 1, 4, 1, 'ASRS-1902', 'P3', 'A04-29-10', '1743473841877010000', '2025-04-01 10:16:56', '2025-04-01 10:18:26', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473839055010000', 1, 4, 1, 'ASRS-1221', 'P3', 'A02-36-09', '1743473864938010000', '2025-04-01 10:17:19', '2025-04-01 10:19:14', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473865063010001', 1, 4, 1, 'ASRS-0331', 'P3', 'A04-31-08', '1743473890743010000', '2025-04-01 10:17:45', '2025-04-01 10:19:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743473931242010001', 1, 4, 1, 'ASRS-0303', 'P3', 'A01-41-06', '1743473957074010000', '2025-04-01 10:18:51', '2025-04-01 10:20:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474054657010000', 1, 4, 1, 'ASRS-1034', 'P3', 'A02-33-10', '1743474080345010000', '2025-04-01 10:20:55', '2025-04-01 10:22:13', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474153799010000', 1, 4, 1, 'ASRS-0519', 'P3', 'A02-37-08', '1743474179648010000', '2025-04-01 10:22:34', '2025-04-01 10:24:06', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474254921010000', 1, 4, 1, 'ASRS-0316', 'P3', 'A01-41-04', '1743474280776010000', '2025-04-01 10:24:15', '2025-04-01 10:25:36', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474267372010000', 1, 4, 1, 'ASRS-0338', 'P3', 'A04-38-01', '1743474294578010000', '2025-04-01 10:24:27', '2025-04-01 10:25:43', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474338932010000', 1, 4, 1, 'ASRS-1031', 'P3', 'A01-37-09', '1743474364749010000', '2025-04-01 10:25:39', '2025-04-01 10:27:12', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474445132010000', 1, 4, 1, 'ASRS-0337', 'P3', 'A01-42-05', '1743474470978010000', '2025-04-01 10:27:25', '2025-04-01 10:28:57', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743474542658010001', 1, 4, 1, 'ASRS-0501', 'P3', 'A02-36-11', '1743474568450010000', '2025-04-01 10:29:03', '2025-04-01 10:30:35', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743478852877010000', 1, 4, 1, 'ASRS-1524', 'P3', 'A01-31-08', '1743478878598010000', '2025-04-01 11:40:53', '2025-04-01 11:42:11', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743478872078010000', 1, 4, 1, 'ASRS-0522', 'P3', 'A03-37-03', '1743478897798010000', '2025-04-01 11:41:12', '2025-04-01 11:42:45', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -INSERT INTO `t_app_task_bak` (`task_id`, `task_type`, `task_status`, `task_priority`, `vehicle_id`, `origin`, `destination`, `wcs_task_id`, `create_time`, `finish_time`, `goods_id`, `op_num`, `stock_num`, `op_user`, `pre_task`, `remark`, `call_stand`, `goods_desc`) VALUES ('BACK_1743478999602010000', 1, 4, 1, 'ASRS-1088', 'P3', 'A01-36-09', '1743479025287010000', '2025-04-01 11:43:20', '2025-04-01 11:44:49', '000000000', 0, 0, 'wms_auto', NULL, '', 'P3', ''); -COMMIT; - --- ---------------------------- --- Table structure for t_app_vehicle --- ---------------------------- -DROP TABLE IF EXISTS `t_app_vehicle`; -CREATE TABLE `t_app_vehicle` ( - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `is_empty` int NOT NULL COMMENT '是否空载具', - `vehicle_status` int NOT NULL COMMENT '载具状态', - `vehicle_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '料箱类型', - `is_lock` int DEFAULT NULL COMMENT '载具是否锁定', - `location_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '载具存放库位', - `last_in_time` datetime DEFAULT NULL COMMENT '上次入库时间', - PRIMARY KEY (`vehicle_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_vehicle --- ---------------------------- -BEGIN; -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0001', 1, 2, '', 0, 'A04-17-07', '2025-03-19 14:54:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0002', 1, 2, '', 0, 'A02-05-08', '2025-03-19 12:57:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0003', 1, 2, '', 0, 'A03-13-09', '2025-03-19 14:04:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0004', 1, 2, '', 0, 'A04-18-10', '2025-03-11 08:42:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0005', 1, 2, '', 0, 'A02-22-07', '2025-03-11 08:41:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0006', 1, 2, '', 0, 'A04-17-11', '2025-03-11 08:41:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0007', 1, 2, '', 0, 'A04-18-11', '2025-03-18 12:35:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0008', 1, 2, '', 0, 'A01-06-09', '2025-03-20 12:50:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0009', 1, 2, '', 0, 'A02-20-06', '2025-03-15 13:48:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0010', 1, 2, '', 0, 'A02-30-04', '2025-03-15 15:01:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0011', 1, 2, '', 0, 'A03-18-08', '2025-03-19 12:35:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0012', 1, 2, '', 0, 'A01-22-08', '2025-03-17 15:51:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0013', 1, 2, '', 0, 'A03-22-04', '2025-03-20 13:09:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0014', 1, 2, '', 0, 'A01-25-05', '2025-03-11 08:55:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0015', 1, 2, '', 0, 'A04-20-03', '2025-03-19 12:41:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0016', 1, 2, '', 0, 'A03-25-04', '2025-03-11 09:06:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0017', 0, 2, '', 0, 'A04-36-05', '2025-03-28 09:41:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0018', 1, 2, '', 0, 'A01-35-03', '2025-03-19 12:03:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0019', 1, 2, '', 0, 'A02-05-02', '2025-03-20 12:46:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0020', 1, 2, '', 0, 'A01-30-08', '2025-03-19 12:01:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0021', 1, 2, '', 0, 'A02-18-04', '2025-03-19 14:46:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0022', 1, 2, '', 0, 'A04-19-11', '2025-03-18 14:58:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0023', 1, 2, '', 0, 'A01-22-07', '2025-03-14 10:23:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0024', 1, 2, '', 0, 'A02-26-04', '2025-03-11 09:07:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0025', 1, 2, '', 0, 'A04-27-06', '2025-03-20 12:43:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0026', 1, 2, '', 0, 'A03-20-10', '2025-03-11 10:08:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0027', 1, 2, '', 0, 'A03-21-10', '2025-03-17 14:40:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0028', 1, 2, '', 0, 'A01-24-08', '2025-03-18 15:28:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0029', 1, 2, '', 0, 'A03-19-11', '2025-03-11 10:07:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0030', 1, 2, '', 0, 'A01-01-07', '2025-03-19 12:46:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0031', 1, 2, '', 0, 'A03-24-07', '2025-03-20 09:21:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0032', 1, 2, '', 0, 'A03-08-05', '2025-03-15 12:44:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0033', 1, 2, '', 0, 'A02-22-10', '2025-03-11 15:05:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0034', 1, 2, '', 0, 'A03-26-04', '2025-03-11 15:04:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0035', 1, 2, '', 0, 'A02-21-11', '2025-03-11 15:04:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0036', 1, 2, '', 0, 'A03-25-05', '2025-03-11 15:03:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0037', 1, 2, '', 0, 'A01-31-01', '2025-03-11 15:03:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0038', 1, 2, '', 0, 'A02-22-11', '2025-03-11 15:22:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0039', 1, 2, '', 0, 'A04-28-01', '2025-03-19 14:48:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0040', 1, 2, '', 0, 'A02-24-08', '2025-03-11 15:07:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0041', 1, 2, '', 0, 'A01-16-09', '2025-03-15 13:10:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0042', 1, 2, '', 0, 'A03-26-05', '2025-03-11 15:26:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0043', 1, 2, '', 0, 'A04-24-10', '2025-03-12 10:24:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0044', 1, 2, '', 0, 'A03-06-08', '2025-03-15 13:06:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0045', 1, 2, '', 0, 'A02-29-03', '2025-03-11 15:11:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0046', 1, 2, '', 0, 'A03-26-08', '2025-03-15 09:11:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0047', 1, 2, '', 0, 'A01-28-11', '2025-03-19 14:27:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0048', 1, 2, '', 0, 'A04-24-06', '2025-03-11 15:14:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0049', 1, 2, '', 0, 'A01-23-10', '2025-03-11 15:14:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0050', 1, 2, '', 0, 'A01-22-11', '2025-03-11 15:13:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0051', 1, 2, '', 0, 'A04-19-04', '2025-03-14 14:53:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0052', 1, 2, '', 0, 'A02-20-11', '2025-03-14 14:44:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0053', 1, 2, '', 0, 'A02-31-01', '2025-03-11 15:13:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0054', 1, 2, '', 0, 'A04-14-09', '2025-03-14 14:34:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0055', 1, 2, '', 0, 'A01-27-06', '2025-03-11 15:17:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0056', 1, 2, '', 0, 'A03-24-06', '2025-03-20 09:29:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0057', 1, 2, '', 0, 'A01-25-01', '2025-03-19 14:39:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0058', 1, 2, '', 0, 'A04-26-04', '2025-03-11 15:15:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0059', 1, 2, '', 0, 'A01-25-08', '2025-03-11 15:16:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0060', 1, 2, '', 0, 'A03-17-07', '2025-03-14 14:37:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0061', 1, 2, '', 0, 'A01-24-09', '2025-03-11 15:15:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0062', 1, 2, '', 0, 'A02-05-04', '2025-03-20 08:35:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0063', 1, 2, '', 0, 'A03-25-02', '2025-03-15 12:07:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0064', 1, 2, '', 0, 'A01-33-05', '2025-03-19 14:23:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0065', 1, 2, '', 0, 'A01-31-02', '2025-03-11 15:20:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0066', 1, 2, '', 0, 'A01-22-09', '2025-03-18 13:05:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0067', 1, 2, '', 0, 'A01-27-09', '2025-03-15 13:06:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0068', 1, 2, '', 0, 'A03-20-11', '2025-03-11 15:18:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0069', 1, 2, '', 0, 'A03-18-09', '2025-03-15 14:48:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0070', 1, 2, '', 0, 'A02-24-05', '2025-03-19 14:56:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0071', 1, 2, '', 0, 'A04-25-04', '2025-03-14 14:54:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0072', 1, 2, '', 0, 'A01-13-10', '2025-03-19 12:14:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0073', 1, 2, '', 0, 'A01-30-03', '2025-03-11 15:19:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0074', 1, 2, '', 0, 'A01-30-09', '2025-03-19 13:13:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0075', 1, 2, '', 0, 'A02-19-02', '2025-03-15 09:30:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0076', 1, 2, '', 0, 'A03-21-11', '2025-03-11 15:40:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0077', 1, 2, '', 0, 'A04-27-05', '2025-03-19 15:11:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0078', 1, 2, '', 0, 'A03-22-09', '2025-03-19 12:31:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0079', 1, 2, '', 0, 'A03-27-06', '2025-03-19 15:13:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0080', 1, 2, '', 0, 'A03-28-06', '2025-03-12 10:15:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0081', 1, 2, '', 0, 'A02-35-01', '2025-03-12 10:15:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0082', 1, 2, '', 0, 'A03-23-10', '2025-03-15 12:43:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0083', 1, 2, '', 0, 'A02-28-05', '2025-03-14 12:44:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0084', 1, 2, '', 0, 'A02-09-04', '2025-03-14 14:56:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0085', 1, 2, '', 0, 'A01-23-09', '2025-03-14 14:44:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0086', 1, 2, '', 0, 'A03-01-05', '2025-03-15 08:59:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0087', 1, 2, '', 0, 'A01-29-08', '2025-03-12 10:18:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0088', 1, 2, '', 0, 'A03-31-03', '2025-03-12 10:18:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0089', 1, 2, '', 0, 'A01-28-09', '2025-03-12 10:18:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0090', 1, 2, '', 0, 'A03-30-04', '2025-03-12 10:17:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0091', 1, 2, '', 0, 'A02-31-06', '2025-03-14 14:56:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0092', 1, 2, '', 0, 'A02-33-03', '2025-03-12 10:14:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0093', 1, 2, '', 0, 'A02-25-08', '2025-03-19 12:21:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0094', 1, 2, '', 0, 'A03-25-09', '2025-03-12 10:13:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0095', 1, 2, '', 0, 'A04-16-05', '2025-03-18 14:13:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0096', 1, 2, '', 0, 'A01-27-02', '2025-03-18 14:05:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0097', 1, 2, '', 0, 'A04-20-10', '2025-03-15 09:02:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0098', 1, 2, '', 0, 'A02-27-09', '2025-03-12 10:09:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0099', 1, 2, '', 0, 'A01-25-06', '2025-03-14 15:15:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0100', 1, 2, '', 0, 'A02-29-06', '2025-03-12 09:55:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0101', 1, 2, '', 0, 'A04-29-01', '2025-03-19 15:04:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0102', 1, 2, '', 0, 'A02-28-07', '2025-03-12 09:54:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0103', 1, 2, '', 0, 'A01-19-04', '2025-03-18 15:27:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0104', 1, 2, '', 0, 'A02-27-08', '2025-03-12 09:54:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0105', 1, 2, '', 0, 'A02-34-01', '2025-03-12 09:59:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0106', 1, 2, '', 0, 'A03-31-02', '2025-03-12 09:58:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0107', 1, 2, '', 0, 'A02-32-01', '2025-03-19 11:45:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0108', 1, 2, '', 0, 'A02-32-03', '2025-03-12 09:58:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0109', 1, 2, '', 0, 'A03-30-03', '2025-03-12 09:57:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0110', 1, 2, '', 0, 'A03-17-11', '2025-03-19 11:47:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0111', 1, 2, '', 0, 'A01-19-11', '2025-03-19 14:46:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0112', 1, 2, '', 0, 'A04-01-10', '2025-03-14 12:38:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0113', 1, 2, '', 0, 'A02-17-09', '2025-03-19 14:43:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0114', 1, 2, '', 0, 'A01-26-10', '2025-03-12 10:01:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0115', 1, 2, '', 0, 'A01-18-05', '2025-03-15 12:51:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0116', 1, 2, '', 0, 'A03-32-01', '2025-03-12 09:59:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0117', 1, 2, '', 0, 'A03-24-05', '2025-03-19 14:16:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0118', 1, 2, '', 0, 'A04-23-11', '2025-03-12 10:22:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0119', 1, 2, '', 0, 'A01-26-07', '2025-03-19 15:04:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0120', 1, 2, '', 0, 'A01-33-01', '2025-03-19 15:15:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0121', 1, 2, '', 0, 'A02-34-02', '2025-03-15 12:32:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0122', 1, 2, '', 0, 'A01-01-05', '2025-03-18 15:37:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0123', 1, 2, '', 0, 'A02-27-10', '2025-03-12 10:28:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0124', 1, 2, '', 0, 'A01-36-01', '2025-03-12 10:25:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0125', 1, 2, '', 0, 'A04-25-09', '2025-03-12 10:25:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0126', 1, 2, '', 0, 'A01-35-02', '2025-03-12 10:24:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0127', 1, 2, '', 0, 'A02-26-10', '2025-03-14 12:54:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0128', 1, 2, '', 0, 'A04-27-07', '2025-03-12 10:29:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0129', 1, 2, '', 0, 'A02-29-08', '2025-03-12 10:29:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0130', 1, 2, '', 0, 'A04-18-06', '2025-03-15 08:49:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0131', 1, 2, '', 0, 'A03-24-09', '2025-03-19 15:19:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0132', 1, 2, '', 0, 'A01-17-07', '2025-03-19 15:20:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0133', 1, 2, '', 0, 'A04-32-02', '2025-03-12 14:08:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0134', 1, 2, '', 0, 'A03-27-10', '2025-03-15 13:04:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0135', 1, 2, '', 0, 'A04-31-03', '2025-03-12 14:06:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0136', 1, 2, '', 0, 'A02-36-01', '2025-03-12 14:05:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0137', 1, 2, '', 0, 'A02-35-02', '2025-03-12 14:04:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0138', 1, 2, '', 0, 'A03-33-02', '2025-03-12 14:22:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0139', 1, 2, '', 0, 'A01-29-02', '2025-03-15 09:24:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0140', 1, 2, '', 0, 'A04-07-01', '2025-03-19 14:51:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0141', 1, 2, '', 0, 'A01-18-07', '2025-03-15 14:56:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0142', 1, 2, '', 0, 'A04-27-03', '2025-03-18 14:58:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0143', 1, 2, '', 0, 'A02-28-10', '2025-03-12 14:20:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0144', 1, 2, '', 0, 'A04-04-11', '2025-03-20 09:25:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0145', 1, 2, '', 0, 'A04-25-10', '2025-03-12 14:26:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0146', 1, 2, '', 0, 'A04-29-03', '2025-03-14 15:10:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0147', 1, 2, '', 0, 'A02-23-06', '2025-03-19 14:04:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0148', 1, 2, '', 0, 'A04-24-11', '2025-03-12 14:25:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0149', 1, 2, '', 0, 'A01-30-04', '2025-03-15 12:58:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0150', 1, 2, '', 0, 'A03-34-01', '2025-03-12 14:24:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0151', 1, 2, '', 0, 'A04-23-08', '2025-03-19 14:17:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0152', 1, 2, '', 0, 'A01-26-03', '2025-03-19 12:28:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0153', 1, 2, '', 0, 'A02-34-03', '2025-03-12 14:03:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0154', 1, 2, '', 0, 'A03-28-03', '2025-03-19 15:19:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0155', 1, 2, '', 0, 'A01-28-05', '2025-03-19 15:05:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0156', 1, 2, '', 0, 'A01-27-08', '2025-03-19 11:56:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0157', 1, 2, '', 0, 'A03-29-05', '2025-03-15 09:12:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0158', 1, 2, '', 0, 'A02-28-06', '2025-03-14 14:46:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0159', 1, 2, '', 0, 'A04-24-05', '2025-03-14 14:48:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0160', 1, 2, '', 0, 'A02-25-10', '2025-03-18 15:49:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0161', 1, 2, '', 0, 'A03-25-10', '2025-03-12 14:12:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0162', 1, 2, '', 0, 'A01-31-07', '2025-03-12 14:12:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0163', 1, 2, '', 0, 'A04-16-09', '2025-03-17 14:57:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0164', 1, 2, '', 0, 'A02-17-04', '2025-03-18 15:09:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0165', 1, 2, '', 0, 'A01-29-09', '2025-03-18 14:22:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0166', 1, 2, '', 0, 'A02-27-11', '2025-03-12 14:19:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0167', 1, 2, '', 0, 'A02-29-02', '2025-03-15 09:33:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0168', 1, 2, '', 0, 'A03-19-03', '2025-03-15 13:24:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0169', 1, 2, '', 0, 'A03-25-08', '2025-03-19 15:05:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0170', 1, 2, '', 0, 'A03-03-03', '2025-03-19 14:25:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0171', 1, 2, '', 0, 'A01-04-09', '2025-03-19 13:57:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0172', 1, 2, '', 0, 'A01-34-04', '2025-03-12 14:16:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0173', 1, 2, '', 0, 'A01-36-02', '2025-03-12 14:17:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0174', 1, 2, '', 0, 'A01-37-01', '2025-03-12 14:18:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0175', 1, 2, '', 0, 'A03-30-05', '2025-03-12 14:18:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0176', 1, 2, '', 0, 'A04-28-07', '2025-03-12 14:28:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0177', 1, 2, '', 0, 'A04-21-11', '2025-03-19 14:50:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0178', 1, 2, '', 0, 'A04-30-01', '2025-03-15 15:00:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0179', 1, 2, '', 0, 'A02-36-02', '2025-03-12 14:27:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0180', 1, 2, '', 0, 'A04-26-09', '2025-03-12 14:27:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0181', 1, 2, '', 0, 'A04-27-08', '2025-03-12 14:27:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0182', 1, 2, '', 0, 'A02-29-10', '2025-03-12 14:50:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0183', 1, 2, '', 0, 'A03-33-03', '2025-03-12 14:49:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0184', 1, 2, '', 0, 'A03-32-04', '2025-03-12 14:49:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0185', 1, 2, '', 0, 'A02-28-11', '2025-03-12 14:48:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0186', 1, 2, '', 0, 'A03-31-05', '2025-03-12 14:48:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0187', 1, 2, '', 0, 'A03-30-06', '2025-03-12 14:47:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0188', 1, 2, '', 0, 'A01-38-01', '2025-03-12 14:47:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0189', 1, 2, '', 0, 'A04-26-10', '2025-03-12 14:55:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0190', 1, 2, '', 0, 'A02-34-05', '2025-03-12 14:55:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0191', 1, 2, '', 0, 'A02-35-04', '2025-03-12 14:56:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0192', 1, 2, '', 0, 'A01-31-09', '2025-03-12 15:02:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0193', 1, 2, '', 0, 'A04-29-07', '2025-03-12 15:00:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0194', 1, 2, '', 0, 'A03-26-11', '2025-03-12 15:19:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0195', 1, 2, '', 0, 'A02-29-11', '2025-03-12 15:18:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0196', 1, 2, '', 0, 'A04-34-02', '2025-03-12 15:18:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0197', 1, 2, '', 0, 'A02-01-10', '2025-03-12 15:17:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0198', 1, 2, '', 0, 'A03-01-08', '2025-03-12 15:17:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0199', 1, 2, '', 0, 'A02-30-10', '2025-03-12 15:19:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0200', 1, 2, '', 0, 'A02-34-06', '2025-03-12 15:23:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0201', 1, 2, '', 0, 'A04-21-10', '2025-03-12 15:25:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0202', 1, 2, '', 0, 'A01-25-07', '2025-03-12 15:26:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0203', 1, 2, '', 0, 'A02-32-08', '2025-03-12 15:26:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0204', 1, 2, '', 0, 'A02-36-04', '2025-03-12 15:27:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0205', 1, 2, '', 0, 'A03-28-09', '2025-03-12 15:27:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0206', 1, 2, '', 0, 'A01-31-10', '2025-03-12 15:31:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0207', 1, 2, '', 0, 'A01-32-09', '2025-03-12 15:32:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0208', 1, 2, '', 0, 'A04-27-10', '2025-03-12 15:35:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0209', 1, 2, '', 0, 'A04-32-06', '2025-03-13 15:26:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0210', 1, 2, '', 0, 'A01-39-03', '2025-03-13 15:27:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0211', 1, 2, '', 0, 'A01-38-04', '2025-03-13 15:26:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0212', 1, 2, '', 0, 'A04-30-08', '2025-03-13 15:24:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0213', 1, 2, '', 0, 'A01-37-05', '2025-03-13 15:25:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0214', 1, 2, '', 0, 'A04-29-09', '2025-03-13 15:24:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0215', 1, 2, '', 0, 'A04-35-03', '2025-03-13 15:28:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0216', 1, 2, '', 0, 'A02-31-11', '2025-03-13 15:29:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0217', 1, 2, '', 0, 'A01-41-01', '2025-03-13 15:28:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0218', 1, 2, '', 0, 'A04-34-04', '2025-03-13 15:27:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0219', 1, 2, '', 0, 'A01-40-02', '2025-03-13 15:28:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0220', 1, 2, '', 0, 'A04-33-05', '2025-03-13 15:26:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0221', 1, 2, '', 0, 'A04-31-07', '2025-03-13 15:25:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0222', 1, 2, '', 0, 'A01-36-06', '2025-03-13 15:24:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0223', 1, 2, '', 0, 'A02-35-07', '2025-03-13 15:32:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0224', 1, 2, '', 0, 'A03-28-11', '2025-03-13 15:31:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0225', 1, 2, '', 0, 'A02-34-08', '2025-03-13 15:31:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0226', 1, 2, '', 0, 'A04-37-01', '2025-03-13 15:30:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0227', 1, 2, '', 0, 'A02-33-09', '2025-03-13 15:31:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0228', 1, 2, '', 0, 'A04-36-02', '2025-03-13 15:29:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0229', 1, 2, '', 0, 'A02-32-10', '2025-03-13 15:30:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0230', 1, 2, '', 0, 'A02-26-03', '2025-03-13 15:14:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0231', 1, 2, '', 0, 'A02-23-05', '2025-03-13 15:13:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0232', 1, 2, '', 0, 'A01-16-08', '2025-03-13 15:13:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0233', 1, 2, '', 0, 'A04-34-03', '2025-03-13 15:12:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0234', 1, 2, '', 0, 'A01-16-07', '2025-03-13 15:12:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0235', 1, 2, '', 0, 'A04-31-06', '2025-03-13 15:03:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0236', 1, 2, '', 0, 'A01-13-09', '2025-03-13 15:11:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0237', 1, 2, '', 0, 'A01-33-09', '2025-03-13 15:21:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0238', 1, 2, '', 0, 'A01-32-10', '2025-03-13 15:22:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0239', 1, 2, '', 0, 'A03-35-03', '2025-03-13 15:19:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0240', 1, 2, '', 0, 'A02-40-01', '2025-03-13 15:19:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0241', 1, 2, '', 0, 'A03-33-05', '2025-03-13 15:18:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0242', 1, 2, '', 0, 'A02-38-03', '2025-03-13 15:20:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0243', 1, 2, '', 0, 'A02-36-05', '2025-03-13 15:17:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0244', 0, 2, '', 0, 'A02-34-09', '2025-03-26 14:58:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0245', 1, 2, '', 0, 'A02-40-02', '2025-03-13 15:36:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0246', 1, 2, '', 0, 'A03-33-06', '2025-03-13 15:35:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0247', 0, 2, '', 0, 'A01-42-01', '2025-03-28 14:18:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0248', 0, 2, '', 0, 'A03-34-05', '2025-03-29 08:49:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0249', 0, 2, '', 0, 'A04-05-06', '2025-03-29 08:46:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0250', 0, 2, '', 0, 'A02-35-10', '2025-03-28 09:28:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0251', 1, 2, '', 0, 'A03-27-11', '2025-03-13 15:13:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0252', 1, 2, '', 0, 'A04-36-01', '2025-03-13 16:52:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0253', 1, 2, '', 0, 'A04-35-02', '2025-03-13 15:13:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0254', 1, 2, '', 0, 'A04-33-04', '2025-03-13 15:11:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0255', 1, 2, '', 0, 'A04-32-05', '2025-03-13 15:10:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0256', 1, 2, '', 0, 'A04-29-08', '2025-03-13 15:02:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0257', 1, 2, '', 0, 'A04-01-09', '2025-03-13 15:02:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0258', 1, 2, '', 0, 'A03-36-02', '2025-03-13 15:20:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0259', 1, 2, '', 0, 'A01-31-11', '2025-03-13 15:21:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0260', 1, 2, '', 0, 'A03-34-04', '2025-03-13 15:19:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0261', 1, 2, '', 0, 'A02-39-02', '2025-03-13 15:18:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0262', 1, 2, '', 0, 'A03-32-06', '2025-03-13 15:17:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0263', 1, 2, '', 0, 'A03-31-07', '2025-03-13 15:16:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0264', 1, 2, '', 0, 'A02-29-01', '2025-03-13 15:15:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0265', 0, 2, '', 0, 'A02-42-01', '2025-03-22 14:20:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0266', 0, 2, '', 0, 'A03-29-11', '2025-03-22 14:19:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0267', 0, 2, '', 0, 'A02-40-03', '2025-03-22 14:19:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0268', 0, 2, '', 0, 'A02-41-02', '2025-03-22 14:19:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0269', 0, 2, '', 0, 'A01-36-07', '2025-03-28 14:16:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0270', 0, 2, '', 0, 'A03-40-01', '2025-03-26 14:19:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0271', 0, 2, '', 0, 'A01-42-03', '2025-03-31 09:23:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0272', 1, 1, '', 0, '', '2025-03-28 09:47:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0273', 0, 2, '', 0, 'A01-33-06', '2025-03-29 13:49:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0274', 1, 1, '', 0, '', '2025-03-25 10:52:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0275', 1, 1, '', 0, '', '2025-03-22 11:54:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0276', 0, 2, '', 0, 'A01-40-03', '2025-03-29 08:47:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0277', 1, 2, '', 0, 'A02-39-03', '2025-03-13 15:35:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0278', 1, 2, '', 0, 'A02-30-11', '2025-03-13 15:17:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0279', 1, 2, '', 0, 'A03-30-08', '2025-03-13 15:16:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0280', 1, 2, '', 0, 'A03-29-09', '2025-03-13 15:15:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0281', 1, 2, '', 0, 'A01-26-05', '2025-03-13 15:16:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0282', 1, 2, '', 0, 'A01-02-01', '2025-03-13 15:15:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0283', 1, 2, '', 0, 'A03-28-10', '2025-03-13 15:14:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0284', 0, 2, '', 0, 'A03-34-07', '2025-03-26 14:59:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0285', 1, 2, '', 0, 'A01-35-07', '2025-03-13 15:24:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0286', 1, 2, '', 0, 'A04-28-10', '2025-03-13 15:22:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0287', 1, 2, '', 0, 'A04-27-11', '2025-03-13 15:22:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0288', 1, 2, '', 0, 'A01-34-08', '2025-03-13 15:23:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0289', 1, 2, '', 0, 'A03-37-01', '2025-03-13 15:21:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0290', 1, 2, '', 0, 'A03-32-07', '2025-03-13 15:34:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0291', 1, 2, '', 0, 'A03-31-08', '2025-03-13 15:33:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0292', 1, 2, '', 0, 'A02-38-04', '2025-03-13 15:35:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0293', 1, 2, '', 0, 'A02-37-05', '2025-03-13 15:34:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0294', 1, 2, '', 0, 'A03-30-09', '2025-03-13 15:33:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0295', 1, 2, '', 0, 'A03-29-10', '2025-03-13 15:32:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0296', 1, 2, '', 0, 'A02-36-06', '2025-03-13 15:33:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0297', 0, 2, '', 0, 'A03-32-03', '2025-03-28 09:27:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0298', 0, 2, '', 0, 'A01-37-06', '2025-03-31 15:46:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0299', 0, 2, '', 0, 'A02-34-11', '2025-03-28 09:27:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0300', 0, 2, '', 0, 'A01-41-02', '2025-03-29 08:48:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0301', 0, 2, '', 0, 'A01-37-10', '2025-03-31 15:34:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0302', 0, 2, '', 0, 'A02-36-10', '2025-03-28 09:47:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0303', 0, 2, '', 0, 'A01-41-06', '2025-04-01 10:20:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0304', 0, 2, '', 0, 'A03-29-06', '2025-04-01 10:04:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0305', 0, 2, '', 0, 'A01-29-07', '2025-04-01 10:10:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0306', 0, 2, '', 0, 'A03-35-04', '2025-04-01 10:17:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0307', 0, 2, '', 0, 'A03-27-08', '2025-03-21 14:35:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0308', 0, 2, '', 0, 'A04-29-05', '2025-03-21 13:31:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0309', 0, 2, '', 0, 'A01-32-05', '2025-03-21 13:30:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0310', 0, 2, '', 0, 'A04-28-06', '2025-03-21 13:29:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0311', 0, 2, '', 0, 'A01-31-06', '2025-03-21 13:28:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0312', 0, 2, '', 0, 'A04-31-02', '2025-03-21 13:27:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0313', 0, 2, '', 0, 'A01-38-08', '2025-04-01 10:07:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0314', 0, 2, '', 0, 'A03-33-09', '2025-03-28 09:46:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0315', 0, 2, '', 0, 'A01-34-06', '2025-04-01 10:04:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0316', 0, 2, '', 0, 'A01-41-04', '2025-04-01 10:25:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0317', 0, 2, '', 0, 'A02-40-04', '2025-04-01 09:48:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0318', 0, 2, '', 0, 'A02-32-11', '2025-04-01 09:27:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0319', 0, 2, '', 0, 'A03-28-07', '2025-03-21 14:37:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0320', 0, 2, '', 0, 'A02-34-04', '2025-03-21 14:36:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0321', 0, 2, '', 0, 'A02-33-04', '2025-03-21 14:35:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0322', 0, 2, '', 0, 'A01-26-11', '2025-03-21 13:27:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0323', 0, 2, '', 0, 'A04-30-03', '2025-03-21 13:26:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0324', 0, 2, '', 0, 'A04-31-04', '2025-04-01 10:10:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0325', 0, 2, '', 0, 'A04-29-04', '2025-03-21 13:25:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0326', 0, 3, '', 0, '', '2025-03-21 13:24:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0327', 0, 2, '', 0, 'A02-37-09', '2025-03-28 09:48:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0328', 0, 2, '', 0, 'A02-39-01', '2025-03-29 11:57:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0329', 0, 2, '', 0, 'A01-34-11', '2025-04-01 09:46:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0330', 0, 2, '', 0, 'A02-39-05', '2025-03-29 11:58:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0331', 0, 2, '', 0, 'A04-31-08', '2025-04-01 10:19:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0332', 0, 2, '', 0, 'A01-32-11', '2025-04-01 10:05:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0333', 0, 2, '', 0, 'A02-42-02', '2025-04-01 10:17:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0334', 0, 2, '', 0, 'A02-36-08', '2025-04-01 10:09:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0335', 0, 2, '', 0, 'A01-33-10', '2025-03-26 14:57:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0336', 0, 2, '', 0, 'A01-42-02', '2025-04-01 09:24:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0337', 0, 2, '', 0, 'A01-42-05', '2025-04-01 10:28:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0338', 0, 2, '', 0, 'A04-38-01', '2025-04-01 10:25:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0339', 0, 2, '', 0, 'A03-39-02', '2025-03-24 10:12:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0340', 0, 2, '', 0, 'A01-39-06', '2025-04-01 10:11:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0341', 0, 2, '', 0, 'A03-33-07', '2025-03-25 13:20:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0342', 0, 2, '', 0, 'A04-30-11', '2025-03-26 15:11:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0343', 0, 2, '', 0, 'A04-32-07', '2025-03-22 15:15:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0344', 0, 2, '', 0, 'A02-34-10', '2025-03-22 14:30:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0345', 0, 2, '', 0, 'A01-37-07', '2025-03-22 15:15:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0346', 0, 2, '', 0, 'A01-36-08', '2025-03-25 13:27:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0347', 0, 2, '', 0, 'A01-40-06', '2025-03-28 09:44:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0348', 0, 2, '', 0, 'A03-38-01', '2025-03-28 09:30:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0349', 0, 2, '', 0, 'A04-31-09', '2025-03-26 15:02:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0350', 0, 2, '', 0, 'A04-32-03', '2025-04-01 10:06:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0351', 0, 2, '', 0, 'A03-36-04', '2025-03-26 15:35:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0352', 0, 2, '', 0, 'A02-35-08', '2025-03-22 15:14:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0354', 0, 2, '', 0, 'A03-34-06', '2025-03-22 14:23:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0359', 0, 2, '', 0, 'A04-31-05', '2025-04-01 10:14:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0360', 1, 2, '', 0, 'A03-35-07', '2025-03-28 10:31:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0361', 0, 2, '', 0, 'A02-39-04', '2025-03-22 14:18:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0362', 0, 2, '', 0, 'A04-39-02', '2025-03-28 09:43:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0363', 0, 2, '', 0, 'A04-37-02', '2025-03-22 14:18:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0364', 0, 2, '', 0, 'A01-36-03', '2025-03-31 14:19:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0365', 0, 2, '', 0, 'A02-38-05', '2025-03-22 14:17:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0366', 0, 2, '', 0, 'A04-35-04', '2025-03-22 14:16:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0367', 0, 2, '', 0, 'A02-37-06', '2025-03-22 14:16:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0368', 0, 2, '', 0, 'A04-34-05', '2025-03-22 14:15:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0369', 0, 2, '', 0, 'A02-36-07', '2025-03-22 14:15:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0370', 0, 2, '', 0, 'A04-33-06', '2025-03-22 14:15:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0371', 0, 2, '', 0, 'A01-41-05', '2025-03-28 09:44:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0372', 0, 2, '', 0, 'A01-38-06', '2025-03-22 14:25:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0376', 0, 2, '', 0, 'A02-33-11', '2025-03-24 12:20:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0377', 0, 2, '', 0, 'A01-35-09', '2025-03-22 14:23:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0378', 0, 2, '', 0, 'A04-31-10', '2025-03-28 09:32:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0379', 0, 2, '', 0, 'A01-34-10', '2025-03-22 14:22:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0380', 0, 2, '', 0, 'A03-31-09', '2025-03-22 14:21:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0381', 0, 2, '', 0, 'A01-33-11', '2025-03-22 14:21:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0382', 0, 2, '', 0, 'A03-30-10', '2025-03-22 14:20:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0383', 0, 2, '', 0, 'A03-31-06', '2025-04-01 09:28:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0384', 0, 2, '', 0, 'A03-32-08', '2025-04-01 09:15:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0385', 0, 2, '', 0, 'A02-41-03', '2025-03-26 15:25:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0386', 0, 2, '', 0, 'A01-37-08', '2025-03-31 09:29:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0387', 0, 2, '', 0, 'A01-39-05', '2025-03-22 14:26:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0388', 0, 2, '', 0, 'A03-31-04', '2025-04-01 10:05:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0389', 0, 2, '', 0, 'A03-39-01', '2025-03-22 14:27:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0390', 0, 2, '', 0, 'A03-38-02', '2025-03-22 14:26:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0391', 0, 2, '', 0, 'A01-40-04', '2025-03-22 14:27:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0392', 1, 1, '', 0, '', '2025-03-26 13:33:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0501', 0, 2, '', 0, 'A02-36-11', '2025-04-01 10:30:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0502', 1, 2, '', 0, 'A02-03-06', '2025-03-20 09:16:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0503', 1, 2, '', 0, 'A04-30-05', '2025-03-12 14:33:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0504', 1, 2, '', 0, 'A03-11-03', '2025-03-15 12:47:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0505', 1, 2, '', 0, 'A01-32-06', '2025-03-19 12:08:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0506', 1, 2, '', 0, 'A01-37-02', '2025-03-12 14:45:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0507', 1, 2, '', 0, 'A01-34-05', '2025-03-12 14:36:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0508', 1, 2, '', 0, 'A02-32-07', '2025-03-12 14:53:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0509', 1, 2, '', 0, 'A01-29-11', '2025-03-12 15:00:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0510', 1, 2, '', 0, 'A03-27-09', '2025-03-12 14:45:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0511', 1, 2, '', 0, 'A03-35-01', '2025-03-12 14:53:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0512', 1, 2, '', 0, 'A02-37-02', '2025-03-12 14:58:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0513', 1, 2, '', 0, 'A01-10-03', '2025-03-18 15:46:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0515', 1, 2, '', 0, 'A01-27-04', '2025-03-14 14:01:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0516', 1, 2, '', 0, 'A02-36-03', '2025-03-12 14:57:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0517', 0, 2, '', 0, 'A03-38-04', '2025-04-01 08:43:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0519', 0, 2, '', 0, 'A02-37-08', '2025-04-01 10:24:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0520', 0, 2, '', 0, 'A03-34-08', '2025-04-01 10:07:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0521', 0, 2, '', 0, 'A04-32-08', '2025-03-27 09:26:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0522', 0, 2, '', 0, 'A03-37-03', '2025-04-01 11:42:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0523', 0, 2, '', 0, 'A04-38-03', '2025-03-28 09:43:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0524', 1, 2, '', 0, 'A02-40-06', '2025-03-28 10:32:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0525', 0, 2, '', 0, 'A02-35-09', '2025-03-28 09:39:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0526', 1, 2, '', 0, 'A01-33-02', '2025-03-11 15:56:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0527', 0, 2, '', 0, 'A04-30-09', '2025-04-01 09:50:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0528', 1, 1, '', 0, '', '2025-03-29 15:06:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0529', 1, 2, '', 0, 'A01-24-03', '2025-03-15 14:37:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0530', 1, 2, '', 0, 'A02-33-01', '2025-03-11 15:50:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0531', 1, 2, '', 0, 'A03-26-07', '2025-03-19 15:07:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0532', 1, 2, '', 0, 'A01-14-10', '2025-03-15 10:24:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0533', 1, 2, '', 0, 'A02-01-08', '2025-03-18 14:01:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0534', 1, 2, '', 0, 'A02-24-10', '2025-03-11 15:43:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0535', 1, 2, '', 0, 'A04-31-01', '2025-03-11 15:56:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0536', 1, 2, '', 0, 'A01-25-10', '2025-03-11 15:51:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0537', 1, 2, '', 0, 'A02-25-07', '2025-03-15 12:46:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0538', 1, 2, '', 0, 'A02-25-11', '2025-03-18 14:21:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0539', 1, 2, '', 0, 'A03-20-08', '2025-03-18 15:47:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0540', 1, 2, '', 0, 'A03-12-09', '2025-03-14 15:01:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0541', 1, 2, '', 0, 'A02-37-01', '2025-03-19 13:05:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0542', 1, 2, '', 0, 'A01-27-07', '2025-03-11 15:36:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0543', 1, 2, '', 0, 'A01-24-10', '2025-03-11 15:34:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0544', 1, 2, '', 0, 'A03-29-04', '2025-03-15 12:17:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0545', 0, 2, '', 0, 'A03-35-05', '2025-03-26 15:09:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0546', 1, 2, '', 0, 'A02-30-03', '2025-03-11 15:31:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0547', 1, 2, '', 0, 'A01-32-01', '2025-03-19 15:06:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0548', 1, 2, '', 0, 'A01-12-11', '2025-03-15 08:55:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0549', 1, 2, '', 0, 'A01-29-05', '2025-03-11 15:37:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0550', 1, 2, '', 0, 'A03-04-09', '2025-03-19 14:30:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0551', 1, 1, '', 0, '', '2025-03-29 13:46:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0552', 1, 2, '', 0, 'A02-29-04', '2025-03-11 15:30:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0553', 1, 2, '', 0, 'A04-15-08', '2025-03-14 12:43:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0554', 1, 2, '', 0, 'A04-20-11', '2025-03-11 15:31:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0555', 1, 2, '', 0, 'A04-29-02', '2025-03-11 15:37:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0556', 1, 2, '', 0, 'A04-24-07', '2025-03-11 15:34:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0557', 1, 2, '', 0, 'A02-11-02', '2025-03-14 12:42:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0558', 1, 2, '', 0, 'A01-32-04', '2025-03-12 10:05:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0559', 1, 2, '', 0, 'A03-24-08', '2025-03-19 14:38:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0567', 1, 2, '', 0, 'A02-23-10', '2025-03-11 15:25:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0568', 1, 2, '', 0, 'A02-29-07', '2025-03-19 11:59:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0569', 1, 2, '', 0, 'A03-27-04', '2025-03-11 15:27:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0608', 1, 2, '', 0, 'A03-28-02', '2025-03-11 15:07:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0609', 1, 2, '', 0, 'A04-28-03', '2025-03-19 14:37:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0610', 1, 2, '', 0, 'A01-02-02', '2025-03-19 12:25:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0611', 1, 2, '', 0, 'A04-03-07', '2025-03-20 12:31:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0612', 1, 2, '', 0, 'A02-16-08', '2025-03-19 14:39:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0613', 1, 2, '', 0, 'A03-18-01', '2025-03-14 12:22:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0614', 1, 2, '', 0, 'A04-21-04', '2025-03-18 14:46:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0615', 1, 2, '', 0, 'A02-28-04', '2025-03-14 09:52:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0616', 1, 2, '', 0, 'A03-16-05', '2025-03-20 13:00:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0617', 1, 2, '', 0, 'A02-24-09', '2025-03-19 11:43:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0618', 1, 2, '', 0, 'A01-10-11', '2025-03-15 14:55:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0619', 1, 2, '', 0, 'A01-34-03', '2025-03-12 10:23:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0620', 1, 2, '', 0, 'A01-08-01', '2025-03-05 09:57:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0621', 1, 2, '', 0, 'A01-07-01', '2025-03-05 09:51:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0622', 1, 2, '', 0, 'A01-07-06', '2025-03-05 12:58:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0623', 1, 2, '', 0, 'A04-04-05', '2025-03-28 12:10:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0624', 1, 2, '', 0, 'A01-02-07', '2025-03-05 09:56:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0625', 1, 2, '', 0, 'A02-22-04', '2025-03-20 09:28:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0626', 1, 2, '', 0, 'A01-30-07', '2025-03-18 14:06:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0627', 1, 2, '', 0, 'A04-03-06', '2025-03-20 12:50:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0628', 1, 2, '', 0, 'A02-10-11', '2025-03-15 12:06:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0629', 1, 2, '', 0, 'A01-15-06', '2025-03-19 14:15:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0630', 1, 2, '', 0, 'A03-08-02', '2025-03-19 12:32:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0631', 1, 2, '', 0, 'A03-27-03', '2025-03-11 15:06:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0632', 1, 2, '', 0, 'A01-21-11', '2025-03-11 10:04:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0633', 1, 2, '', 0, 'A02-03-07', '2025-03-20 09:30:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0634', 1, 2, '', 0, 'A03-20-07', '2025-03-19 14:51:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0635', 1, 2, '', 0, 'A02-27-05', '2025-03-19 14:53:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0636', 1, 2, '', 0, 'A04-23-06', '2025-03-18 13:57:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0637', 1, 2, '', 0, 'A04-20-05', '2025-03-10 12:24:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0638', 1, 2, '', 0, 'A04-21-03', '2025-03-20 12:35:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0639', 1, 2, '', 0, 'A01-18-08', '2025-03-17 15:23:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0640', 1, 2, '', 0, 'A01-34-01', '2025-03-19 11:44:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0641', 1, 2, '', 0, 'A03-19-07', '2025-03-10 12:34:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0642', 1, 2, '', 0, 'A03-18-10', '2025-03-18 15:18:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0643', 1, 2, '', 0, 'A04-22-04', '2025-03-10 12:49:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0644', 1, 2, '', 0, 'A04-26-03', '2025-03-18 14:02:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0645', 1, 2, '', 0, 'A03-09-04', '2025-03-19 12:04:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0646', 1, 2, '', 0, 'A03-15-11', '2025-03-19 11:50:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0647', 1, 2, '', 0, 'A02-15-10', '2025-03-10 12:27:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0648', 1, 2, '', 0, 'A02-15-07', '2025-03-17 15:14:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0649', 1, 2, '', 0, 'A02-25-03', '2025-03-17 15:43:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0650', 1, 2, '', 0, 'A04-20-09', '2025-03-19 14:36:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0651', 1, 2, '', 0, 'A02-19-08', '2025-03-18 15:20:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0652', 1, 2, '', 0, 'A03-23-06', '2025-03-19 12:28:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0653', 1, 2, '', 0, 'A04-22-03', '2025-03-10 12:26:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0654', 1, 2, '', 0, 'A04-05-11', '2025-03-14 10:20:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0655', 1, 2, '', 0, 'A03-22-02', '2025-03-20 13:04:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0656', 1, 2, '', 0, 'A03-10-02', '2025-03-15 13:30:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0657', 1, 2, '', 0, 'A01-12-10', '2025-03-18 13:22:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0658', 1, 2, '', 0, 'A02-19-07', '2025-03-10 12:52:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0659', 1, 2, '', 0, 'A04-24-09', '2025-03-20 09:31:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0660', 1, 2, '', 0, 'A04-13-11', '2025-03-15 14:47:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0661', 1, 2, '', 0, 'A02-31-02', '2025-03-19 15:18:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0662', 1, 2, '', 0, 'A03-24-02', '2025-03-10 12:39:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0663', 1, 2, '', 0, 'A01-09-02', '2025-03-19 12:34:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0664', 1, 2, '', 0, 'A03-10-04', '2025-03-14 11:41:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0665', 1, 2, '', 0, 'A02-23-02', '2025-03-19 11:58:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0666', 1, 2, '', 0, 'A03-32-02', '2025-03-18 15:19:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0667', 1, 2, '', 0, 'A01-22-04', '2025-03-10 12:44:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0668', 1, 2, '', 0, 'A03-23-03', '2025-03-19 12:48:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0669', 1, 2, '', 0, 'A03-33-01', '2025-03-17 15:06:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0670', 1, 2, '', 0, 'A02-25-04', '2025-03-15 13:22:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0671', 1, 2, '', 0, 'A03-19-06', '2025-03-20 12:36:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0672', 1, 2, '', 0, 'A03-17-10', '2025-03-10 12:54:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0673', 1, 2, '', 0, 'A03-20-06', '2025-03-14 11:50:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0674', 1, 2, '', 0, 'A04-16-11', '2025-03-17 14:51:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0675', 1, 2, '', 0, 'A02-01-11', '2025-03-18 15:13:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0676', 1, 2, '', 0, 'A03-07-05', '2025-03-19 12:29:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0677', 1, 2, '', 0, 'A03-21-05', '2025-03-10 12:36:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0678', 1, 2, '', 0, 'A02-06-09', '2025-03-19 11:51:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0679', 1, 2, '', 0, 'A02-06-02', '2025-03-20 12:42:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0680', 1, 2, '', 0, 'A02-15-11', '2025-03-10 12:48:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0681', 1, 2, '', 0, 'A01-28-02', '2025-03-19 12:48:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0682', 1, 2, '', 0, 'A02-28-03', '2025-03-19 14:48:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0683', 1, 2, '', 0, 'A02-25-06', '2025-03-15 14:53:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0684', 1, 2, '', 0, 'A01-28-07', '2025-03-15 15:00:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0685', 1, 2, '', 0, 'A01-20-05', '2025-03-10 12:24:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0686', 1, 2, '', 0, 'A02-16-09', '2025-03-17 13:08:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0687', 1, 2, '', 0, 'A02-01-04', '2025-03-14 10:23:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0688', 1, 2, '', 0, 'A02-22-03', '2025-03-10 12:34:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0689', 1, 2, '', 0, 'A02-32-04', '2025-03-19 12:54:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0690', 1, 2, '', 0, 'A02-06-07', '2025-03-20 09:19:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0691', 1, 2, '', 0, 'A03-16-11', '2025-03-17 14:38:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0692', 1, 2, '', 0, 'A01-21-10', '2025-03-11 09:12:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0693', 1, 2, '', 0, 'A03-23-01', '2025-03-15 10:25:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0694', 1, 2, '', 0, 'A01-23-02', '2025-03-17 15:29:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0695', 1, 2, '', 0, 'A02-20-10', '2025-03-11 09:02:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0696', 1, 2, '', 0, 'A02-19-06', '2025-03-10 12:31:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0697', 1, 2, '', 0, 'A02-18-11', '2025-03-19 12:51:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0698', 1, 2, '', 0, 'A04-22-07', '2025-03-11 09:55:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0699', 1, 2, '', 0, 'A04-16-10', '2025-03-14 14:43:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0700', 1, 2, '', 0, 'A04-26-06', '2025-03-20 09:31:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0701', 1, 2, '', 0, 'A02-22-09', '2025-03-19 11:58:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0702', 1, 2, '', 0, 'A02-27-03', '2025-03-14 10:33:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0703', 1, 2, '', 0, 'A02-19-09', '2025-03-19 12:24:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0704', 1, 2, '', 0, 'A01-36-05', '2025-03-12 15:36:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0705', 1, 2, '', 0, 'A04-26-11', '2025-03-12 15:34:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0706', 1, 2, '', 0, 'A03-34-03', '2025-03-12 15:31:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0707', 1, 2, '', 0, 'A01-35-06', '2025-03-12 15:34:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0722', 1, 2, '', 0, 'A01-36-04', '2025-03-12 15:13:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0727', 1, 2, '', 0, 'A04-30-06', '2025-03-12 15:12:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0732', 1, 2, '', 0, 'A03-01-03', '2025-03-12 15:16:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0733', 1, 2, '', 0, 'A01-39-01', '2025-03-12 15:16:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0734', 1, 2, '', 0, 'A04-33-03', '2025-03-12 15:15:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0735', 1, 2, '', 0, 'A01-38-02', '2025-03-12 15:14:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0736', 1, 2, '', 0, 'A04-35-01', '2025-03-12 15:26:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0741', 1, 2, '', 0, 'A01-30-11', '2025-03-12 15:30:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0742', 1, 2, '', 0, 'A01-16-01', '2025-03-05 14:10:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0743', 1, 2, '', 0, 'A01-12-05', '2025-03-05 14:07:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0744', 1, 2, '', 0, 'A04-08-09', '2025-03-05 14:09:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0745', 1, 2, '', 0, 'A02-06-11', '2025-03-05 14:11:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0746', 1, 2, '', 0, 'A04-07-10', '2025-03-05 14:11:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0747', 1, 2, '', 0, 'A04-13-03', '2025-03-05 13:59:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0748', 1, 2, '', 0, 'A03-09-08', '2025-03-05 14:05:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0749', 1, 2, '', 0, 'A02-12-04', '2025-03-05 14:02:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0750', 1, 2, '', 0, 'A03-12-05', '2025-03-05 14:07:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0751', 1, 2, '', 0, 'A02-14-02', '2025-03-05 14:02:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0752', 1, 2, '', 0, 'A03-13-04', '2025-03-05 14:06:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0753', 1, 2, '', 0, 'A01-07-09', '2025-03-05 13:52:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0754', 1, 2, '', 0, 'A02-09-07', '2025-03-05 13:59:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0755', 1, 2, '', 0, 'A01-04-12', '2025-03-05 13:50:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0756', 1, 2, '', 0, 'A03-09-07', '2025-03-05 13:50:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0757', 1, 2, '', 0, 'A01-06-10', '2025-03-05 13:51:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0758', 1, 2, '', 0, 'A03-10-06', '2025-03-05 13:51:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0759', 1, 2, '', 0, 'A03-08-08', '2025-03-05 13:51:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0760', 1, 2, '', 0, 'A03-06-10', '2025-03-05 13:48:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0761', 1, 2, '', 0, 'A02-14-01', '2025-03-05 13:50:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0762', 1, 2, '', 0, 'A02-13-02', '2025-03-05 13:51:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0763', 1, 2, '', 0, 'A04-08-07', '2025-03-05 13:44:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0764', 1, 2, '', 0, 'A01-13-02', '2025-03-05 13:44:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0765', 1, 2, '', 0, 'A01-09-06', '2025-03-05 13:42:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0766', 1, 2, '', 0, 'A03-14-01', '2025-03-05 13:42:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0767', 1, 2, '', 0, 'A02-07-08', '2025-03-05 13:46:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0768', 1, 2, '', 0, 'A04-11-04', '2025-03-05 13:46:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0769', 1, 2, '', 0, 'A02-12-03', '2025-03-05 13:48:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0770', 1, 2, '', 0, 'A04-12-03', '2025-03-05 13:46:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0771', 1, 2, '', 0, 'A02-22-06', '2025-03-12 15:39:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0772', 1, 2, '', 0, 'A04-09-06', '2025-03-05 13:45:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0773', 1, 2, '', 0, 'A02-03-12', '2025-03-05 13:45:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0774', 1, 2, '', 0, 'A01-14-01', '2025-03-05 13:46:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0775', 1, 2, '', 0, 'A04-10-05', '2025-03-05 13:45:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0776', 1, 2, '', 0, 'A03-13-02', '2025-03-05 13:41:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0777', 1, 2, '', 0, 'A01-07-08', '2025-03-05 13:41:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0778', 1, 2, '', 0, 'A03-04-12', '2025-03-05 13:48:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0779', 1, 2, '', 0, 'A03-12-03', '2025-03-05 13:41:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0780', 1, 2, '', 0, 'A01-08-07', '2025-03-05 13:41:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0781', 1, 2, '', 0, 'A02-09-06', '2025-03-05 13:47:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0782', 1, 2, '', 0, 'A02-08-07', '2025-03-05 13:48:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0783', 1, 2, '', 0, 'A01-12-03', '2025-03-05 13:44:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0784', 1, 2, '', 0, 'A04-07-08', '2025-03-05 13:44:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0785', 1, 2, '', 0, 'A04-06-09', '2025-03-05 13:43:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0786', 1, 2, '', 0, 'A01-11-04', '2025-03-05 13:43:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0787', 1, 2, '', 0, 'A04-03-12', '2025-03-05 13:42:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0788', 1, 2, '', 0, 'A03-17-01', '2025-03-05 14:28:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0789', 1, 2, '', 0, 'A02-09-08', '2025-03-05 14:20:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0790', 1, 2, '', 0, 'A02-15-02', '2025-03-05 14:25:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0791', 1, 2, '', 0, 'A02-14-03', '2025-03-05 14:25:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0792', 1, 2, '', 0, 'A02-10-07', '2025-03-05 14:21:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0793', 1, 2, '', 0, 'A04-16-01', '2025-03-05 14:21:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0794', 1, 2, '', 0, 'A03-15-03', '2025-03-05 14:27:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0795', 1, 2, '', 0, 'A02-07-09', '2025-03-05 13:58:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0796', 1, 2, '', 0, 'A04-04-12', '2025-03-05 13:55:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0797', 1, 2, '', 0, 'A02-05-12', '2025-03-05 14:11:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0798', 1, 2, '', 0, 'A01-14-02', '2025-03-05 13:56:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0799', 1, 2, '', 0, 'A01-11-06', '2025-03-05 14:07:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0800', 1, 2, '', 0, 'A02-08-08', '2025-03-05 13:59:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0801', 1, 2, '', 0, 'A04-07-09', '2025-03-05 13:56:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0802', 1, 2, '', 0, 'A01-10-05', '2025-03-05 13:43:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0803', 1, 2, '', 0, 'A01-06-12', '2025-03-05 14:27:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0804', 1, 2, '', 0, 'A04-05-12', '2025-03-05 14:09:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0805', 1, 2, '', 0, 'A01-09-08', '2025-03-05 14:06:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0806', 1, 2, '', 0, 'A04-12-04', '2025-03-05 13:58:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0807', 1, 2, '', 0, 'A04-08-08', '2025-03-05 13:58:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0808', 1, 2, '', 0, 'A04-10-06', '2025-03-05 14:01:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0809', 1, 2, '', 0, 'A04-06-10', '2025-03-05 13:55:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0810', 1, 2, '', 0, 'A01-09-07', '2025-03-05 13:53:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0811', 1, 2, '', 0, 'A01-12-04', '2025-03-05 13:55:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0812', 1, 2, '', 0, 'A03-07-10', '2025-03-05 14:02:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0813', 1, 2, '', 0, 'A04-09-08', '2025-03-05 14:10:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0814', 1, 2, '', 0, 'A04-11-05', '2025-03-05 13:57:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0815', 1, 2, '', 0, 'A04-10-07', '2025-03-05 14:12:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0816', 1, 2, '', 0, 'A03-13-03', '2025-03-05 13:53:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0817', 1, 2, '', 0, 'A02-06-10', '2025-03-05 13:57:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0818', 1, 2, '', 0, 'A01-13-03', '2025-03-05 13:54:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0819', 1, 2, '', 0, 'A03-08-09', '2025-03-05 14:03:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0820', 1, 2, '', 0, 'A03-14-03', '2025-03-05 14:07:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0821', 1, 2, '', 0, 'A03-12-04', '2025-03-05 13:52:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0822', 1, 2, '', 0, 'A04-09-07', '2025-03-05 13:57:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0823', 1, 2, '', 0, 'A03-06-11', '2025-03-05 14:03:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0824', 1, 2, '', 0, 'A01-10-07', '2025-03-05 14:06:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0825', 1, 2, '', 0, 'A03-15-01', '2025-03-05 13:54:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0826', 1, 2, '', 0, 'A01-15-02', '2025-03-05 14:09:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0827', 1, 2, '', 0, 'A01-08-08', '2025-03-05 13:53:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0828', 1, 2, '', 0, 'A02-04-12', '2025-03-05 13:57:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0829', 1, 2, '', 0, 'A03-14-02', '2025-03-05 13:54:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0830', 1, 2, '', 0, 'A02-13-03', '2025-03-05 14:01:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0831', 1, 2, '', 0, 'A04-06-11', '2025-03-05 14:10:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0832', 1, 2, '', 0, 'A03-10-07', '2025-03-05 14:04:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0833', 1, 2, '', 0, 'A01-15-01', '2025-03-05 13:56:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0834', 1, 2, '', 0, 'A03-11-05', '2025-03-05 13:52:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0835', 1, 2, '', 0, 'A01-10-06', '2025-03-05 14:54:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0836', 1, 2, '', 0, 'A02-07-10', '2025-03-05 14:12:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0837', 1, 2, '', 0, 'A03-16-01', '2025-03-05 14:08:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0838', 1, 2, '', 0, 'A02-07-03', '2025-03-05 10:04:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0839', 1, 2, '', 0, 'A04-08-01', '2025-03-05 10:03:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0840', 1, 2, '', 0, 'A04-07-03', '2025-03-05 10:26:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0841', 1, 2, '', 0, 'A01-08-03', '2025-03-05 10:30:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0842', 1, 2, '', 0, 'A04-07-11', '2025-03-05 14:30:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0843', 1, 2, '', 0, 'A03-15-02', '2025-03-05 14:06:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0844', 1, 2, '', 0, 'A02-15-01', '2025-03-05 14:03:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0845', 1, 2, '', 0, 'A01-06-11', '2025-03-05 14:03:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0846', 1, 2, '', 0, 'A01-13-04', '2025-03-05 14:08:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0847', 1, 2, '', 0, 'A02-10-06', '2025-03-05 14:00:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0848', 1, 2, '', 0, 'A03-12-06', '2025-03-05 14:25:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0849', 1, 2, '', 0, 'A03-16-02', '2025-03-05 14:28:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0850', 1, 2, '', 0, 'A03-06-12', '2025-03-05 14:21:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0851', 1, 2, '', 0, 'A03-13-05', '2025-03-05 14:26:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0852', 1, 2, '', 0, 'A01-07-11', '2025-03-05 14:27:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0853', 1, 2, '', 0, 'A01-09-09', '2025-03-05 14:28:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0854', 1, 2, '', 0, 'A03-09-09', '2025-03-05 14:24:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0855', 1, 2, '', 0, 'A04-15-02', '2025-03-05 14:20:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0856', 1, 2, '', 0, 'A03-07-11', '2025-03-05 14:22:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0857', 1, 2, '', 0, 'A02-16-01', '2025-03-05 14:26:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0858', 1, 2, '', 0, 'A02-13-04', '2025-03-05 14:24:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0859', 1, 2, '', 0, 'A04-06-12', '2025-03-05 14:29:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0860', 1, 2, '', 0, 'A03-10-08', '2025-03-05 14:24:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0861', 1, 2, '', 0, 'A03-14-04', '2025-03-05 14:27:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0862', 1, 2, '', 0, 'A03-08-10', '2025-03-05 14:23:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0863', 1, 2, '', 0, 'A01-10-08', '2025-03-05 14:29:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0864', 1, 2, '', 0, 'A04-09-09', '2025-03-05 14:31:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0865', 1, 2, '', 0, 'A03-11-07', '2025-03-05 14:25:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0866', 1, 2, '', 0, 'A04-08-10', '2025-03-05 14:30:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0867', 1, 2, '', 0, 'A01-11-07', '2025-03-05 14:30:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0868', 1, 2, '', 0, 'A01-12-06', '2025-03-12 16:02:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0869', 1, 2, '', 0, 'A02-11-06', '2025-03-05 14:22:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0870', 1, 2, '', 0, 'A02-12-05', '2025-03-05 14:23:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0871', 1, 2, '', 0, 'A01-08-10', '2025-03-05 14:28:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0872', 1, 3, '', 0, 'A01-02-09', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0873', 1, 2, '', 0, 'A04-33-01', '2025-03-18 15:21:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0874', 1, 2, '', 0, 'A01-22-01', '2025-03-15 10:09:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0875', 1, 2, '', 0, 'A01-03-06', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0876', 1, 2, '', 0, 'A01-04-08', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0877', 1, 2, '', 0, 'A04-02-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0878', 1, 2, '', 0, 'A01-16-10', '2025-03-20 13:04:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0879', 1, 2, '', 0, 'A02-02-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0880', 1, 2, '', 0, 'A02-27-02', '2025-03-19 12:04:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0881', 1, 2, '', 0, 'A02-02-05', '2025-03-10 15:08:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0882', 1, 2, '', 0, 'A01-07-07', '2025-03-13 09:51:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0883', 1, 2, '', 0, 'A04-02-04', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0884', 1, 2, '', 0, 'A03-02-04', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0885', 1, 2, '', 0, 'A04-02-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0886', 1, 2, '', 0, 'A03-05-11', '2025-03-06 15:17:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0887', 1, 2, '', 0, 'A01-03-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0888', 1, 2, '', 0, 'A02-37-04', '2025-03-13 09:53:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0889', 0, 2, '', 0, 'A01-42-04', '2025-03-28 09:45:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0890', 1, 2, '', 0, 'A01-30-02', '2025-03-19 11:49:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0891', 1, 2, '', 0, 'A02-19-03', '2025-03-20 12:43:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0892', 1, 2, '', 0, 'A02-02-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0893', 1, 2, '', 0, 'A04-12-01', '2025-03-10 15:08:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0894', 1, 2, '', 0, 'A02-03-05', '2025-03-10 15:08:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0895', 1, 2, '', 0, 'A04-27-04', '2025-03-20 13:04:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0896', 1, 2, '', 0, 'A04-01-05', '2025-03-05 12:29:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0897', 1, 2, '', 0, 'A03-02-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0898', 1, 2, '', 0, 'A01-37-04', '2025-03-12 15:37:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0899', 1, 2, '', 0, 'A02-31-07', '2025-03-19 12:18:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0900', 1, 2, '', 0, 'A02-03-03', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0901', 0, 2, '', 0, 'A04-40-01', '2025-03-28 09:44:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0902', 1, 2, '', 0, 'A04-14-11', '2025-03-20 12:52:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0903', 1, 2, '', 0, 'A04-07-06', '2025-03-10 15:37:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0904', 1, 2, '', 0, 'A02-25-05', '2025-03-20 13:48:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0905', 1, 2, '', 0, 'A02-02-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0906', 1, 2, '', 0, 'A03-03-02', '2025-03-12 14:57:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0907', 1, 2, '', 0, 'A03-02-03', '2025-03-17 14:44:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0908', 1, 2, '', 0, 'A01-12-09', '2025-03-15 09:06:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0909', 1, 2, '', 0, 'A02-01-03', '2025-03-28 11:14:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0910', 1, 2, '', 0, 'A03-03-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0911', 1, 2, '', 0, 'A01-04-01', '2025-03-18 14:51:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0912', 1, 2, '', 0, 'A03-03-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0913', 1, 2, '', 0, 'A02-03-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0914', 1, 2, '', 0, 'A01-02-04', '2025-03-19 15:09:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0915', 1, 2, '', 0, 'A01-04-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0916', 1, 2, '', 0, 'A03-03-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0917', 1, 2, '', 0, 'A03-26-10', '2025-03-12 15:07:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0918', 1, 2, '', 0, 'A02-03-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0919', 1, 2, '', 0, 'A03-03-04', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0920', 1, 2, '', 0, 'A01-03-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0921', 1, 2, '', 0, 'A04-03-01', '2025-03-19 14:18:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0922', 1, 2, '', 0, 'A02-03-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0923', 1, 2, '', 0, 'A02-13-05', '2025-03-19 14:22:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0924', 1, 2, '', 0, 'A04-01-03', '2025-03-19 14:09:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0925', 1, 2, '', 0, 'A04-03-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0926', 1, 2, '', 0, 'A04-03-05', '2025-03-19 14:00:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0927', 1, 2, '', 0, 'A01-01-08', '2025-03-19 13:59:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0928', 1, 2, '', 0, 'A01-05-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0929', 1, 2, '', 0, 'A03-04-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0930', 1, 2, '', 0, 'A02-05-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0931', 1, 2, '', 0, 'A03-03-06', '2025-03-19 14:02:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0932', 1, 2, '', 0, 'A03-05-01', '2025-03-20 09:10:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0933', 1, 2, '', 0, 'A01-05-10', '2025-03-20 09:10:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0934', 1, 2, '', 0, 'A02-04-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0935', 1, 2, '', 0, 'A04-03-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0936', 1, 2, '', 0, 'A02-04-08', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0937', 1, 2, '', 0, 'A03-04-01', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0938', 1, 2, '', 0, 'A04-11-02', '2025-03-19 13:53:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0939', 1, 2, '', 0, 'A02-04-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0940', 1, 2, '', 0, 'A02-26-09', '2025-03-18 14:41:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0941', 1, 2, '', 0, 'A04-13-10', '2025-03-19 12:23:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0942', 1, 2, '', 0, 'A03-01-07', '2025-03-15 09:15:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0943', 1, 2, '', 0, 'A03-26-03', '2025-03-19 12:29:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0944', 1, 2, '', 0, 'A02-02-04', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0945', 1, 2, '', 0, 'A01-05-01', '2025-03-15 13:07:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0946', 1, 2, '', 0, 'A04-15-07', '2025-03-15 13:14:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0947', 1, 2, '', 0, 'A01-17-08', '2025-03-15 08:47:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0948', 1, 2, '', 0, 'A02-04-06', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0949', 1, 2, '', 0, 'A01-04-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0950', 1, 2, '', 0, 'A04-04-08', '2025-03-15 12:33:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0951', 1, 2, '', 0, 'A01-26-04', '2025-03-15 09:44:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0952', 1, 2, '', 0, 'A01-09-03', '2025-03-15 09:47:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0953', 1, 2, '', 0, 'A02-04-04', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0954', 1, 2, '', 0, 'A01-05-04', '2025-03-20 08:34:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0955', 1, 2, '', 0, 'A01-03-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0956', 1, 2, '', 0, 'A01-05-05', '2025-03-28 12:08:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0957', 1, 2, '', 0, 'A02-03-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0958', 1, 2, '', 0, 'A02-01-06', '2025-03-28 12:08:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0959', 1, 2, '', 0, 'A01-03-09', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0960', 1, 2, '', 0, 'A02-04-01', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0961', 1, 2, '', 0, 'A03-04-05', '2025-03-28 12:09:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0962', 1, 2, '', 0, 'A01-06-04', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0963', 1, 2, '', 0, 'A01-02-08', '2025-03-15 13:08:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0964', 1, 2, '', 0, 'A01-01-10', '2025-03-28 12:09:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0965', 1, 2, '', 0, 'A02-05-01', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0966', 1, 2, '', 0, 'A01-18-04', '2025-03-19 14:18:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0967', 1, 2, '', 0, 'A01-36-11', '2025-03-28 12:11:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0968', 1, 2, '', 0, 'A03-03-08', '2025-03-18 15:13:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0969', 1, 2, '', 0, 'A02-04-11', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0970', 1, 2, '', 0, 'A02-42-04', '2025-03-28 12:10:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0971', 1, 2, '', 0, 'A01-03-07', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0972', 1, 2, '', 0, 'A04-02-10', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0973', 1, 2, '', 0, 'A04-14-07', '2025-03-20 09:28:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0974', 1, 2, '', 0, 'A04-04-01', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0975', 1, 2, '', 0, 'A01-04-10', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0976', 1, 2, '', 0, 'A03-04-03', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0977', 1, 2, '', 0, 'A04-04-03', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0978', 1, 2, '', 0, 'A02-04-10', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0979', 1, 2, '', 0, 'A01-04-11', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0980', 1, 2, '', 0, 'A03-03-11', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0981', 1, 2, '', 0, 'A02-08-01', '2025-03-05 09:59:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0982', 1, 2, '', 0, 'A03-06-03', '2025-03-05 09:58:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0983', 1, 2, '', 0, 'A04-25-01', '2025-03-20 09:20:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0984', 1, 2, '', 0, 'A02-20-05', '2025-03-19 14:44:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0985', 1, 2, '', 0, 'A04-09-03', '2025-03-05 12:56:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0986', 1, 2, '', 0, 'A01-12-02', '2025-03-18 15:14:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0987', 1, 2, '', 0, 'A04-07-05', '2025-03-05 12:53:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0988', 1, 2, '', 0, 'A01-16-03', '2025-03-05 14:46:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0989', 1, 2, '', 0, 'A01-20-04', '2025-03-20 12:51:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0990', 1, 2, '', 0, 'A04-03-04', '2025-03-12 14:58:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0991', 1, 2, '', 0, 'A02-01-02', '2025-03-05 13:09:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0992', 1, 2, '', 0, 'A02-26-08', '2025-03-19 14:05:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0993', 1, 2, '', 0, 'A03-02-02', '2025-03-05 13:05:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0994', 1, 2, '', 0, 'A02-12-11', '2025-03-19 13:47:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0995', 1, 2, '', 0, 'A02-10-01', '2025-03-05 12:19:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0996', 1, 2, '', 0, 'A04-13-09', '2025-03-14 10:08:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0997', 1, 2, '', 0, 'A01-32-02', '2025-03-19 13:49:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0998', 1, 2, '', 0, 'A03-04-06', '2025-03-19 14:12:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-0999', 0, 2, '', 0, 'A01-39-07', '2025-03-28 09:43:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1000', 1, 2, '', 0, 'A01-08-05', '2025-03-05 13:03:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1001', 1, 2, '', 0, 'A03-23-05', '2025-03-18 14:22:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1002', 1, 2, '', 0, 'A04-08-03', '2025-03-05 11:31:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1003', 1, 2, '', 0, 'A03-07-06', '2025-03-05 12:58:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1004', 1, 2, '', 0, 'A01-17-10', '2025-03-18 15:15:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1005', 1, 2, '', 0, 'A04-11-01', '2025-03-05 12:57:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1006', 1, 2, '', 0, 'A01-14-05', '2025-03-05 14:46:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1007', 1, 2, '', 0, 'A01-15-04', '2025-03-05 14:47:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1008', 1, 2, '', 0, 'A04-11-08', '2025-03-05 14:46:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1009', 1, 2, '', 0, 'A01-17-02', '2025-03-05 14:47:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1010', 1, 2, '', 0, 'A04-05-02', '2025-03-05 13:09:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1011', 1, 2, '', 0, 'A03-29-07', '2025-03-12 14:46:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1012', 1, 2, '', 0, 'A01-29-10', '2025-03-12 14:32:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1013', 1, 2, '', 0, 'A02-31-08', '2025-03-12 14:53:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1014', 1, 2, '', 0, 'A03-16-10', '2025-03-20 13:01:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1015', 1, 2, '', 0, 'A01-33-04', '2025-03-19 14:19:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1016', 1, 2, '', 0, 'A01-20-10', '2025-03-14 15:10:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1017', 1, 2, '', 0, 'A01-06-02', '2025-03-20 13:06:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1018', 1, 2, '', 0, 'A04-23-04', '2025-03-19 12:21:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1019', 1, 2, '', 0, 'A03-08-06', '2025-03-12 14:58:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1020', 1, 2, '', 0, 'A02-30-09', '2025-03-12 14:52:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1023', 0, 2, '', 0, 'A03-38-03', '2025-03-26 14:18:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1025', 0, 2, '', 0, 'A02-37-03', '2025-03-29 13:32:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1026', 0, 2, '', 0, 'A03-37-04', '2025-03-26 15:10:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1027', 0, 2, '', 0, 'A01-39-08', '2025-04-01 10:12:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1028', 1, 2, '', 0, 'A03-36-06', '2025-03-28 10:32:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1030', 0, 2, '', 0, 'A03-30-11', '2025-03-26 15:06:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1031', 0, 2, '', 0, 'A01-37-09', '2025-04-01 10:27:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1032', 0, 2, '', 0, 'A01-40-07', '2025-04-01 10:14:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1033', 0, 2, '', 0, 'A04-36-03', '2025-03-22 14:17:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1034', 0, 2, '', 0, 'A02-33-10', '2025-04-01 10:22:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1035', 0, 2, '', 0, 'A01-38-09', '2025-03-29 08:50:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1036', 1, 2, '', 0, 'A04-26-08', '2025-03-18 13:20:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1037', 1, 2, '', 0, 'A03-22-11', '2025-03-11 15:58:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1038', 1, 2, '', 0, 'A01-21-06', '2025-03-20 08:36:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1039', 1, 2, '', 0, 'A02-25-09', '2025-03-15 12:26:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1040', 1, 2, '', 0, 'A02-29-05', '2025-03-11 15:47:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1041', 1, 2, '', 0, 'A01-29-04', '2025-03-15 13:02:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1042', 1, 2, '', 0, 'A01-23-11', '2025-03-11 15:33:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1043', 1, 2, '', 0, 'A01-24-11', '2025-03-11 15:50:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1044', 1, 2, '', 0, 'A03-31-01', '2025-03-11 15:48:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1045', 1, 2, '', 0, 'A04-27-02', '2025-03-18 14:03:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1046', 1, 2, '', 0, 'A02-29-09', '2025-03-19 12:05:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1047', 1, 2, '', 0, 'A03-26-02', '2025-03-14 14:44:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1048', 1, 2, '', 0, 'A02-23-11', '2025-03-11 15:42:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1049', 1, 2, '', 0, 'A02-31-03', '2025-03-11 15:48:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1050', 1, 2, '', 0, 'A03-24-04', '2025-03-19 14:11:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1051', 1, 2, '', 0, 'A01-39-04', '2025-03-14 12:41:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1052', 1, 2, '', 0, 'A04-21-06', '2025-03-18 14:48:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1053', 1, 2, '', 0, 'A03-18-05', '2025-03-19 15:18:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1054', 1, 2, '', 0, 'A01-35-01', '2025-03-19 14:16:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1055', 1, 2, '', 0, 'A04-24-03', '2025-03-19 14:05:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1056', 1, 2, '', 0, 'A04-22-09', '2025-03-11 15:32:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1057', 1, 2, '', 0, 'A02-07-01', '2025-03-20 09:28:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1058', 1, 2, '', 0, 'A03-23-08', '2025-03-19 14:18:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1059', 1, 2, '', 0, 'A02-27-06', '2025-03-19 12:24:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1060', 1, 2, '', 0, 'A01-25-09', '2025-03-11 15:35:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1061', 1, 2, '', 0, 'A01-28-06', '2025-03-11 15:37:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1086', 1, 2, '', 0, 'A02-33-05', '2025-03-19 12:56:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1087', 1, 2, '', 0, 'A02-08-10', '2025-03-20 12:36:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1088', 0, 2, '', 0, 'A01-36-09', '2025-04-01 11:44:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1089', 1, 2, '', 0, 'A03-07-01', '2025-03-05 09:56:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1090', 1, 2, '', 0, 'A02-21-10', '2025-03-11 09:29:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1091', 1, 2, '', 0, 'A04-23-05', '2025-03-18 13:38:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1092', 1, 2, '', 0, 'A02-22-02', '2025-03-20 12:50:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1093', 1, 2, '', 0, 'A02-02-10', '2025-03-28 11:15:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1094', 1, 2, '', 0, 'A03-04-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1095', 1, 2, '', 0, 'A02-30-08', '2025-03-19 12:06:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1096', 1, 2, '', 0, 'A02-33-02', '2025-03-19 11:47:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1097', 1, 2, '', 0, 'A03-21-03', '2025-03-17 13:00:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1098', 1, 2, '', 0, 'A01-03-01', '2025-03-18 15:23:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1099', 1, 2, '', 0, 'A03-25-06', '2025-03-11 15:22:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1100', 1, 2, '', 0, 'A01-28-04', '2025-03-11 14:59:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1101', 1, 2, '', 0, 'A03-22-08', '2025-03-11 15:00:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1102', 1, 2, '', 0, 'A04-12-09', '2025-03-18 15:46:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1103', 1, 2, '', 0, 'A04-26-02', '2025-03-19 11:52:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1104', 1, 2, '', 0, 'A02-19-04', '2025-03-18 13:22:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1105', 1, 2, '', 0, 'A02-26-02', '2025-03-17 15:19:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1106', 1, 2, '', 0, 'A04-18-03', '2025-03-17 14:55:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1107', 1, 2, '', 0, 'A01-29-01', '2025-03-11 08:59:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1108', 1, 2, '', 0, 'A03-17-08', '2025-03-18 14:45:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1109', 1, 2, '', 0, 'A02-21-08', '2025-03-17 15:24:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1110', 1, 2, '', 0, 'A02-21-09', '2025-03-11 09:03:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1111', 1, 2, '', 0, 'A04-23-03', '2025-03-19 11:51:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1112', 1, 2, '', 0, 'A01-27-03', '2025-03-11 08:56:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1113', 1, 2, '', 0, 'A03-19-10', '2025-03-11 08:58:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1114', 1, 2, '', 0, 'A04-06-07', '2025-03-15 13:22:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1115', 1, 2, '', 0, 'A01-18-11', '2025-03-17 15:20:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1116', 1, 2, '', 0, 'A02-01-01', '2025-03-14 10:24:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1117', 1, 2, '', 0, 'A03-02-08', '2025-03-18 14:27:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1118', 1, 2, '', 0, 'A03-27-05', '2025-03-17 14:45:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1119', 1, 2, '', 0, 'A02-18-08', '2025-03-10 12:52:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1120', 1, 2, '', 0, 'A04-19-10', '2025-03-18 14:26:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1121', 1, 2, '', 0, 'A03-24-03', '2025-03-19 14:52:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1122', 1, 2, '', 0, 'A04-30-04', '2025-03-18 15:20:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1123', 1, 2, '', 0, 'A04-24-02', '2025-03-10 12:51:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1124', 1, 2, '', 0, 'A04-14-03', '2025-03-14 10:24:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1125', 1, 2, '', 0, 'A01-35-08', '2025-03-14 11:59:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1126', 1, 2, '', 0, 'A03-23-09', '2025-03-19 14:38:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1127', 1, 2, '', 0, 'A01-23-08', '2025-03-11 09:13:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1128', 1, 2, '', 0, 'A02-16-10', '2025-03-10 12:48:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1129', 1, 2, '', 0, 'A04-19-07', '2025-03-10 12:45:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1130', 1, 2, '', 0, 'A03-13-10', '2025-03-19 14:31:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1131', 1, 2, '', 0, 'A01-14-07', '2025-03-18 14:10:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1132', 1, 2, '', 0, 'A03-32-05', '2025-03-15 13:32:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1133', 1, 2, '', 0, 'A02-24-06', '2025-03-20 13:04:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1134', 1, 2, '', 0, 'A03-28-01', '2025-03-11 09:10:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1135', 1, 2, '', 0, 'A03-21-08', '2025-03-11 09:01:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1136', 1, 2, '', 0, 'A01-22-10', '2025-03-19 15:10:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1137', 1, 2, '', 0, 'A02-30-02', '2025-03-19 12:16:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1138', 1, 2, '', 0, 'A04-18-08', '2025-03-19 12:16:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1139', 1, 2, '', 0, 'A04-02-08', '2025-03-12 15:06:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1149', 1, 2, '', 0, 'A04-01-07', '2025-03-12 15:44:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1150', 1, 2, '', 0, 'A01-25-03', '2025-03-12 15:43:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1151', 1, 2, '', 0, 'A01-01-11', '2025-03-12 15:42:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1152', 1, 2, '', 0, 'A01-32-08', '2025-03-12 15:09:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1153', 1, 2, '', 0, 'A01-37-03', '2025-03-12 15:13:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1154', 1, 2, '', 0, 'A02-31-10', '2025-03-12 15:47:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1155', 1, 2, '', 0, 'A01-02-06', '2025-03-12 15:04:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1156', 1, 2, '', 0, 'A03-12-02', '2025-03-12 15:41:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1157', 1, 2, '', 0, 'A04-32-04', '2025-03-12 15:14:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1158', 1, 2, '', 0, 'A02-35-05', '2025-03-12 15:24:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1159', 1, 2, '', 0, 'A03-29-08', '2025-03-12 15:22:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1160', 1, 2, '', 0, 'A02-13-07', '2025-03-12 15:05:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1161', 1, 2, '', 0, 'A01-34-07', '2025-03-12 15:33:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1162', 1, 2, '', 0, 'A01-33-08', '2025-03-12 15:33:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1163', 1, 2, '', 0, 'A03-35-02', '2025-03-12 15:32:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1164', 1, 2, '', 0, 'A01-09-04', '2025-03-12 15:07:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1165', 1, 2, '', 0, 'A02-04-03', '2025-03-12 15:07:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1166', 1, 2, '', 0, 'A04-01-02', '2025-03-12 15:10:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1167', 1, 2, '', 0, 'A02-02-06', '2025-03-05 09:53:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1168', 1, 2, '', 0, 'A01-40-01', '2025-03-12 15:45:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1169', 1, 2, '', 0, 'A02-33-07', '2025-03-12 15:22:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1170', 1, 2, '', 0, 'A01-38-03', '2025-03-12 15:40:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1171', 1, 2, '', 0, 'A03-01-02', '2025-03-12 15:10:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1172', 1, 2, '', 0, 'A03-04-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1173', 1, 2, '', 0, 'A03-17-04', '2025-03-19 12:58:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1174', 1, 2, '', 0, 'A04-04-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1175', 1, 2, '', 0, 'A01-05-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1176', 1, 2, '', 0, 'A04-03-10', '2025-03-15 12:25:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1177', 1, 2, '', 0, 'A02-05-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1178', 1, 2, '', 0, 'A04-05-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1179', 1, 2, '', 0, 'A01-06-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1180', 1, 1, '', 0, '', '2025-03-24 03:58:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1181', 1, 2, '', 0, 'A04-08-02', '2025-03-20 09:15:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1182', 1, 2, '', 0, 'A03-05-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1183', 1, 2, '', 0, 'A04-05-05', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1184', 1, 2, '', 0, 'A02-05-09', '2025-03-20 09:20:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1185', 1, 2, '', 0, 'A04-05-01', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1186', 1, 2, '', 0, 'A02-05-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1187', 1, 2, '', 0, 'A01-02-10', '2025-03-20 13:03:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1188', 1, 2, '', 0, 'A03-15-06', '2025-03-20 12:51:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1189', 0, 2, '', 0, 'A03-32-09', '2025-03-27 09:23:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1190', 1, 2, '', 0, 'A01-02-05', '2025-03-07 15:04:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1191', 1, 2, '', 0, 'A01-01-06', '2025-03-28 12:07:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1192', 1, 2, '', 0, 'A02-06-04', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1193', 1, 2, '', 0, 'A04-13-06', '2025-03-05 14:47:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1194', 1, 2, '', 0, 'A04-02-06', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1195', 1, 2, '', 0, 'A04-04-06', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1196', 1, 2, '', 0, 'A04-10-02', '2025-03-15 10:23:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1197', 1, 2, '', 0, 'A04-01-04', '2025-03-12 15:46:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1198', 1, 2, '', 0, 'A01-05-06', '2025-03-15 12:24:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1199', 1, 2, '', 0, 'A04-05-07', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1200', 1, 2, '', 0, 'A01-06-05', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1201', 1, 2, '', 0, 'A03-05-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1202', 1, 2, '', 0, 'A04-05-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1203', 1, 2, '', 0, 'A02-06-05', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1204', 1, 2, '', 0, 'A04-12-11', '2025-03-15 09:47:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1205', 1, 2, '', 0, 'A01-05-11', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1206', 1, 2, '', 0, 'A04-07-07', '2025-03-19 15:17:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1207', 1, 2, '', 0, 'A03-18-06', '2025-03-15 12:36:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1208', 1, 2, '', 0, 'A03-05-06', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1209', 1, 2, '', 0, 'A04-05-04', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1210', 1, 2, '', 0, 'A01-06-01', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1211', 1, 2, '', 0, 'A02-05-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1212', 1, 2, '', 0, 'A03-04-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1213', 1, 2, '', 0, 'A01-06-06', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1214', 1, 2, '', 0, 'A04-05-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1215', 1, 2, '', 0, 'A03-05-09', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1216', 1, 2, '', 0, 'A02-06-06', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1217', 1, 2, '', 0, 'A01-05-08', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1218', 1, 2, '', 0, 'A02-06-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1219', 0, 2, '', 0, 'A04-33-08', '2025-03-28 09:34:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1220', 0, 2, '', 0, 'A02-42-03', '2025-03-28 09:34:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1221', 0, 2, '', 0, 'A02-36-09', '2025-04-01 10:19:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1222', 0, 2, '', 0, 'A02-41-04', '2025-03-28 09:33:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1223', 0, 2, '', 0, 'A01-35-11', '2025-03-28 09:35:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1224', 1, 2, '', 0, 'A04-03-09', '2025-03-28 11:16:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1225', 1, 2, '', 0, 'A01-24-04', '2025-03-20 13:00:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1226', 1, 2, '', 0, 'A04-05-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1227', 1, 2, '', 0, 'A04-15-03', '2025-03-20 09:17:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1228', 1, 2, '', 0, 'A01-06-07', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1229', 1, 2, '', 0, 'A03-05-10', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1230', 1, 2, '', 0, 'A01-06-08', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1231', 1, 2, '', 0, 'A03-05-07', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1232', 1, 2, '', 0, 'A04-04-02', '2025-03-06 15:07:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1233', 1, 2, '', 0, 'A04-13-08', '2025-03-15 13:40:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1234', 1, 2, '', 0, 'A01-28-10', '2025-03-19 14:19:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1235', 1, 2, '', 0, 'A01-03-10', '2025-03-19 14:13:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1236', 1, 2, '', 0, 'A04-04-09', '2025-03-05 09:37:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1237', 1, 2, '', 0, 'A02-16-06', '2025-03-20 09:27:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1238', 1, 2, '', 0, 'A01-05-07', '2025-03-20 09:26:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1239', 1, 2, '', 0, 'A04-04-07', '2025-03-20 09:16:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1240', 1, 2, '', 0, 'A03-05-03', '2025-03-05 09:37:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1241', 1, 2, '', 0, 'A01-23-07', '2025-03-20 13:08:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1242', 1, 2, '', 0, 'A03-01-06', '2025-03-28 11:14:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1243', 1, 2, '', 0, 'A03-23-04', '2025-03-19 13:56:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1244', 0, 2, '', 0, 'A01-36-10', '2025-03-28 09:36:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1245', 0, 2, '', 0, 'A02-32-09', '2025-04-01 09:23:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1246', 0, 2, '', 0, 'A04-02-11', '2025-03-29 08:48:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1247', 1, 2, '', 0, 'A04-14-05', '2025-03-14 10:24:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1248', 1, 2, '', 0, 'A04-21-09', '2025-03-15 09:22:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1249', 0, 2, '', 0, 'A03-36-05', '2025-03-26 15:03:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1250', 0, 2, '', 0, 'A03-31-10', '2025-03-28 09:31:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1251', 1, 2, '', 0, 'A03-03-01', '2025-03-28 12:08:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1252', 1, 2, '', 0, 'A03-12-01', '2025-03-20 13:02:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1253', 1, 2, '', 0, 'A04-12-05', '2025-03-05 14:17:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1254', 0, 2, '', 0, 'A02-38-07', '2025-03-28 11:50:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1255', 1, 2, '', 0, 'A04-28-09', '2025-03-15 13:43:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1256', 1, 2, '', 0, 'A01-14-11', '2025-03-15 13:46:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1257', 0, 2, '', 0, 'A02-38-08', '2025-03-28 09:49:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1258', 0, 2, '', 0, 'A02-39-06', '2025-03-28 09:31:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1259', 0, 2, '', 0, 'A04-32-09', '2025-03-28 09:33:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1260', 1, 2, '', 0, 'A03-10-03', '2025-03-06 15:12:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1261', 0, 2, '', 0, 'A02-35-11', '2025-03-28 09:46:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1262', 1, 2, '', 0, 'A04-20-02', '2025-03-20 13:03:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1263', 1, 2, '', 0, 'A04-17-08', '2025-03-10 14:23:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1264', 1, 2, '', 0, 'A04-01-08', '2025-03-28 11:15:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1265', 1, 2, '', 0, 'A03-07-07', '2025-03-10 15:19:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1266', 1, 2, '', 0, 'A02-03-01', '2025-03-10 14:23:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1267', 1, 2, '', 0, 'A03-04-04', '2025-03-28 12:08:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1268', 1, 1, '', 0, '', '2025-03-31 13:43:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1269', 1, 2, '', 0, 'A01-07-05', '2025-03-05 11:31:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1270', 1, 2, '', 0, 'A03-02-10', '2025-03-20 13:02:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1271', 0, 2, '', 0, 'A04-34-07', '2025-03-28 09:35:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1272', 1, 2, '', 0, 'A02-21-06', '2025-03-10 13:09:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1273', 1, 2, '', 0, 'A04-06-01', '2025-03-05 09:54:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1274', 1, 2, '', 0, 'A04-15-06', '2025-03-07 10:20:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1275', 1, 2, '', 0, 'A03-06-01', '2025-03-06 15:10:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1276', 1, 2, '', 0, 'A02-06-08', '2025-03-06 15:11:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1277', 1, 2, '', 0, 'A02-11-09', '2025-03-20 12:48:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1278', 1, 2, '', 0, 'A02-08-02', '2025-03-05 13:19:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1279', 1, 2, '', 0, 'A01-09-05', '2025-03-13 10:04:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1280', 1, 2, '', 0, 'A03-09-01', '2025-03-05 10:24:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1281', 1, 2, '', 0, 'A01-04-02', '2025-03-05 13:12:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1282', 1, 2, '', 0, 'A01-07-04', '2025-03-05 10:29:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1283', 1, 2, '', 0, 'A04-25-08', '2025-03-20 12:42:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1284', 1, 2, '', 0, 'A04-09-02', '2025-03-05 13:13:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1285', 1, 2, '', 0, 'A02-21-04', '2025-03-19 12:30:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1286', 1, 2, '', 0, 'A01-09-01', '2025-03-05 10:03:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1287', 1, 2, '', 0, 'A01-20-06', '2025-03-18 14:25:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1288', 1, 2, '', 0, 'A02-03-02', '2025-03-05 13:11:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1289', 1, 2, '', 0, 'A03-09-02', '2025-03-05 13:13:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1290', 1, 2, '', 0, 'A02-28-02', '2025-03-20 13:49:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1291', 1, 2, '', 0, 'A02-18-07', '2025-03-19 13:10:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1292', 1, 2, '', 0, 'A01-05-02', '2025-03-05 13:13:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1293', 1, 2, '', 0, 'A04-06-03', '2025-03-05 10:01:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1294', 1, 2, '', 0, 'A04-24-04', '2025-03-20 13:05:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1295', 1, 2, '', 0, 'A03-22-03', '2025-03-20 12:40:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1296', 1, 2, '', 0, 'A02-07-02', '2025-03-05 13:18:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1297', 1, 2, '', 0, 'A01-08-02', '2025-03-05 13:18:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1298', 1, 2, '', 0, 'A03-08-01', '2025-03-05 09:59:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1299', 1, 2, '', 0, 'A01-03-02', '2025-03-05 13:11:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1300', 1, 2, '', 0, 'A01-07-03', '2025-03-05 10:00:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1301', 1, 2, '', 0, 'A04-07-02', '2025-03-05 13:11:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1302', 1, 2, '', 0, 'A01-24-07', '2025-03-18 15:25:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1303', 1, 2, '', 0, 'A04-08-11', '2025-03-05 14:44:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1304', 1, 2, '', 0, 'A02-12-06', '2025-03-05 14:38:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1305', 1, 2, '', 0, 'A03-07-02', '2025-03-05 13:10:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1306', 1, 2, '', 0, 'A03-09-10', '2025-03-05 14:38:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1307', 1, 2, '', 0, 'A02-14-04', '2025-03-05 14:39:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1308', 1, 2, '', 0, 'A03-22-07', '2025-03-19 12:24:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1309', 1, 2, '', 0, 'A03-11-08', '2025-03-05 14:39:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1310', 1, 2, '', 0, 'A04-25-05', '2025-03-15 14:59:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1311', 1, 2, '', 0, 'A04-02-07', '2025-03-13 09:52:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1312', 1, 2, '', 0, 'A04-09-10', '2025-03-05 14:45:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1313', 1, 2, '', 0, 'A01-07-12', '2025-03-05 14:41:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1314', 1, 2, '', 0, 'A04-19-06', '2025-03-17 15:30:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1315', 1, 2, '', 0, 'A03-13-06', '2025-03-05 14:40:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1316', 1, 2, '', 0, 'A04-06-04', '2025-03-05 10:25:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1317', 1, 2, '', 0, 'A03-07-04', '2025-03-05 10:27:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1318', 1, 2, '', 0, 'A03-15-04', '2025-03-05 14:41:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1319', 1, 2, '', 0, 'A02-08-03', '2025-03-05 10:32:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1320', 1, 2, '', 0, 'A02-17-01', '2025-03-05 14:40:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1321', 1, 2, '', 0, 'A01-10-01', '2025-03-05 10:31:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1322', 1, 2, '', 0, 'A03-07-03', '2025-03-05 10:05:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1323', 1, 2, '', 0, 'A03-17-02', '2025-03-05 14:42:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1324', 1, 2, '', 0, 'A02-09-03', '2025-03-05 12:59:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1325', 1, 2, '', 0, 'A03-10-01', '2025-03-05 10:30:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1326', 1, 2, '', 0, 'A03-08-03', '2025-03-05 10:28:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1327', 1, 2, '', 0, 'A03-09-03', '2025-03-05 12:52:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1328', 1, 2, '', 0, 'A04-07-04', '2025-03-05 10:32:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1329', 1, 2, '', 0, 'A04-06-05', '2025-03-05 10:31:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1330', 1, 2, '', 0, 'A03-06-05', '2025-03-05 10:27:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1331', 1, 2, '', 0, 'A02-07-04', '2025-03-05 10:32:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1332', 1, 2, '', 0, 'A02-11-01', '2025-03-05 12:58:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1333', 1, 2, '', 0, 'A04-09-01', '2025-03-05 10:26:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1334', 1, 2, '', 0, 'A01-13-06', '2025-03-05 14:45:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1335', 1, 2, '', 0, 'A02-16-02', '2025-03-05 14:41:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1336', 1, 2, '', 0, 'A02-09-01', '2025-03-05 10:05:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1337', 1, 2, '', 0, 'A03-08-11', '2025-03-05 14:37:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1338', 1, 2, '', 0, 'A03-06-04', '2025-03-05 10:04:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1339', 1, 2, '', 0, 'A01-08-11', '2025-03-05 14:42:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1340', 1, 2, '', 0, 'A03-14-05', '2025-03-05 14:41:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1341', 1, 2, '', 0, 'A03-01-11', '2025-03-05 12:33:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1342', 1, 2, '', 0, 'A03-12-07', '2025-03-05 14:39:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1343', 1, 2, '', 0, 'A02-20-08', '2025-03-12 15:56:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1344', 1, 2, '', 0, 'A04-10-09', '2025-03-05 14:46:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1345', 1, 2, '', 0, 'A02-04-05', '2025-03-19 12:28:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1346', 1, 2, '', 0, 'A01-11-08', '2025-03-05 14:44:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1347', 1, 2, '', 0, 'A01-12-07', '2025-03-05 14:44:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1348', 1, 2, '', 0, 'A03-06-06', '2025-03-05 12:39:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1349', 1, 2, '', 0, 'A02-08-04', '2025-03-05 13:09:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1350', 1, 2, '', 0, 'A02-15-03', '2025-03-05 14:39:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1351', 1, 2, '', 0, 'A04-12-07', '2025-03-05 14:47:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1352', 1, 2, '', 0, 'A02-07-05', '2025-03-05 13:00:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1353', 0, 2, '', 0, 'A03-08-04', '2025-03-05 12:51:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1354', 1, 2, '', 0, 'A04-07-12', '2025-03-05 14:44:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1355', 0, 2, '', 0, 'A03-16-03', '2025-03-05 14:42:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1356', 0, 2, '', 0, 'A02-11-07', '2025-03-05 14:37:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1357', 0, 2, '', 0, 'A01-11-02', '2025-03-05 13:23:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1358', 0, 2, '', 0, 'A01-10-02', '2025-03-05 13:20:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1359', 0, 2, '', 0, 'A04-20-07', '2025-03-19 14:21:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1360', 0, 2, '', 0, 'A04-06-08', '2025-03-05 13:32:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1361', 0, 2, '', 0, 'A04-03-02', '2025-03-19 13:48:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1362', 0, 2, '', 0, 'A02-38-01', '2025-03-12 14:59:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1363', 0, 2, '', 0, 'A04-10-01', '2025-03-05 12:31:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1364', 0, 2, '', 0, 'A01-14-08', '2025-03-15 09:07:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1365', 0, 2, '', 0, 'A04-06-06', '2025-03-20 12:48:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1366', 0, 2, '', 0, 'A04-19-03', '2025-03-19 13:30:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1367', 0, 2, '', 0, 'A03-11-02', '2025-03-15 08:54:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1368', 0, 2, '', 0, 'A01-11-01', '2025-03-05 13:01:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1369', 0, 2, '', 0, 'A02-11-03', '2025-03-05 13:40:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1370', 0, 2, '', 0, 'A02-11-04', '2025-03-05 13:49:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1371', 0, 2, '', 0, 'A03-32-10', '2025-03-28 09:46:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1372', 0, 2, '', 0, 'A04-21-07', '2025-03-19 14:13:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1373', 0, 2, '', 0, 'A01-10-09', '2025-03-05 14:43:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1374', 0, 2, '', 0, 'A02-33-08', '2025-03-12 15:51:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1375', 0, 2, '', 0, 'A04-14-01', '2025-03-05 13:47:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1376', 0, 2, '', 0, 'A02-10-03', '2025-03-05 13:29:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1377', 0, 2, '', 0, 'A02-12-01', '2025-03-12 15:57:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1378', 0, 2, '', 0, 'A03-14-11', '2025-03-20 13:08:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1379', 0, 2, '', 0, 'A04-11-06', '2025-03-05 14:12:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1380', 0, 2, '', 0, 'A03-17-05', '2025-03-15 09:00:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1381', 0, 2, '', 0, 'A04-08-05', '2025-03-13 09:55:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1382', 0, 2, '', 0, 'A02-24-07', '2025-03-19 13:56:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1383', 0, 2, '', 0, 'A02-20-02', '2025-03-18 15:15:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1384', 0, 2, '', 0, 'A01-09-10', '2025-03-05 14:43:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1385', 0, 2, '', 0, 'A03-15-09', '2025-03-14 10:08:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1386', 0, 2, '', 0, 'A01-18-06', '2025-03-13 09:55:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1387', 0, 2, '', 0, 'A03-01-04', '2025-03-15 13:28:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1388', 0, 2, '', 0, 'A03-20-05', '2025-03-15 08:56:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1389', 0, 2, '', 0, 'A02-21-07', '2025-03-12 15:58:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1390', 0, 2, '', 0, 'A01-03-04', '2025-03-13 09:54:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1391', 0, 2, '', 0, 'A01-04-06', '2025-03-15 09:06:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1392', 0, 2, '', 0, 'A04-28-11', '2025-03-29 08:50:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1393', 0, 2, '', 0, 'A01-08-09', '2025-03-05 14:05:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1394', 0, 2, '', 0, 'A03-10-09', '2025-03-05 14:38:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1395', 0, 2, '', 0, 'A02-24-01', '2025-03-20 12:44:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1396', 0, 2, '', 0, 'A03-10-05', '2025-03-05 13:39:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1397', 0, 2, '', 0, 'A02-13-01', '2025-03-05 13:39:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1398', 0, 2, '', 0, 'A03-11-04', '2025-03-05 13:40:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1399', 0, 2, '', 0, 'A02-10-04', '2025-03-05 13:37:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1400', 0, 2, '', 0, 'A02-09-05', '2025-03-05 13:38:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1401', 0, 2, '', 0, 'A01-13-01', '2025-03-05 13:35:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1402', 0, 2, '', 0, 'A01-11-03', '2025-03-05 13:34:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1403', 0, 2, '', 0, 'A04-13-01', '2025-03-05 13:36:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1404', 0, 2, '', 0, 'A03-07-08', '2025-03-05 13:38:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1405', 0, 2, '', 0, 'A04-04-04', '2025-03-18 15:14:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1406', 0, 2, '', 0, 'A04-18-04', '2025-03-15 08:57:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1407', 0, 2, '', 0, 'A03-09-06', '2025-03-05 13:39:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1408', 0, 2, '', 0, 'A04-10-04', '2025-03-05 13:34:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1409', 1, 2, '', 0, 'A01-03-12', '2025-03-05 13:40:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1410', 0, 2, '', 0, 'A03-27-01', '2025-03-20 12:45:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1411', 0, 2, '', 0, 'A02-08-06', '2025-03-05 13:37:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1412', 0, 2, '', 0, 'A02-09-02', '2025-03-15 14:40:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1413', 0, 2, '', 0, 'A02-12-02', '2025-03-19 14:25:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1414', 0, 2, '', 0, 'A04-26-05', '2025-03-15 09:03:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1415', 0, 2, '', 0, 'A04-09-05', '2025-03-05 13:33:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1416', 1, 2, '', 0, 'A03-03-12', '2025-03-05 13:37:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1417', 0, 2, '', 0, 'A03-06-09', '2025-03-05 13:36:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1418', 0, 2, '', 0, 'A04-12-02', '2025-03-05 13:35:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1419', 0, 2, '', 0, 'A02-07-07', '2025-03-05 13:36:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1420', 0, 2, '', 0, 'A04-11-03', '2025-03-05 13:35:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1421', 0, 2, '', 0, 'A01-08-06', '2025-03-05 13:32:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1422', 1, 2, '', 0, 'A02-02-12', '2025-03-05 13:36:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1423', 0, 2, '', 0, 'A03-08-07', '2025-03-05 13:38:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1424', 0, 2, '', 0, 'A03-26-01', '2025-03-15 13:27:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1425', 1, 2, '', 0, 'A01-02-12', '2025-03-05 13:31:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1426', 0, 2, '', 0, 'A02-11-10', '2025-03-20 09:29:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1427', 0, 2, '', 0, 'A02-02-01', '2025-03-12 15:52:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1428', 0, 2, '', 0, 'A02-10-02', '2025-03-05 13:21:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1429', 0, 2, '', 0, 'A01-14-03', '2025-03-05 14:09:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1430', 0, 2, '', 0, 'A02-14-11', '2025-03-15 08:56:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1431', 0, 2, '', 0, 'A03-21-02', '2025-03-15 09:19:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1432', 1, 2, '', 0, 'A03-05-12', '2025-03-05 14:01:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1433', 0, 2, '', 0, 'A03-11-06', '2025-03-05 14:04:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1434', 0, 2, '', 0, 'A04-15-01', '2025-03-05 14:00:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1435', 0, 2, '', 0, 'A02-11-05', '2025-03-05 14:00:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1436', 1, 1, '', 0, '', '2025-03-31 14:46:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1437', 0, 2, '', 0, 'A03-07-09', '2025-03-05 13:49:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1438', 0, 2, '', 0, 'A01-07-10', '2025-03-05 14:04:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1439', 1, 2, '', 0, 'A01-05-12', '2025-03-05 14:05:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1440', 0, 2, '', 0, 'A04-14-02', '2025-03-05 14:00:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1441', 0, 2, '', 0, 'A02-04-02', '2025-03-20 12:45:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1442', 0, 2, '', 0, 'A02-10-05', '2025-03-05 13:47:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1443', 0, 2, '', 0, 'A02-37-07', '2025-03-26 15:22:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1444', 0, 2, '', 0, 'A02-02-02', '2025-03-05 13:10:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1445', 0, 2, '', 0, 'A03-05-02', '2025-03-05 13:08:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1446', 0, 2, '', 0, 'A02-19-11', '2025-03-14 10:32:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1447', 0, 2, '', 0, 'A04-09-11', '2025-03-14 10:29:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1448', 0, 2, '', 0, 'A03-04-02', '2025-03-06 14:40:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1449', 0, 2, '', 0, 'A04-06-02', '2025-03-05 13:10:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1450', 0, 2, '', 0, 'A04-18-07', '2025-03-19 13:47:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1451', 0, 2, '', 0, 'A01-14-06', '2025-03-06 13:11:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1452', 0, 2, '', 0, 'A03-06-02', '2025-03-05 13:09:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1453', 0, 2, '', 0, 'A04-12-06', '2025-03-05 14:32:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1454', 0, 2, '', 0, 'A01-15-03', '2025-03-05 14:32:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1455', 0, 2, '', 0, 'A01-14-04', '2025-03-05 14:32:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1456', 0, 2, '', 0, 'A04-11-07', '2025-03-05 14:33:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1457', 0, 2, '', 0, 'A04-10-08', '2025-03-05 14:31:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1458', 0, 2, '', 0, 'A01-13-05', '2025-03-05 14:31:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1459', 0, 2, '', 0, 'A02-10-08', '2025-03-05 14:36:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1460', 1, 2, '', 0, 'A03-07-12', '2025-03-05 14:36:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1461', 0, 2, '', 0, 'A02-09-09', '2025-03-05 14:36:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1462', 0, 2, '', 0, 'A04-17-01', '2025-03-05 14:36:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1463', 0, 2, '', 0, 'A03-28-05', '2025-03-20 09:24:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1464', 0, 2, '', 0, 'A04-16-02', '2025-03-05 14:35:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1465', 0, 2, '', 0, 'A02-07-11', '2025-03-05 14:35:08'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1466', 0, 2, '', 0, 'A01-33-03', '2025-03-20 09:11:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1467', 1, 2, '', 0, 'A02-06-12', '2025-03-05 14:34:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1468', 0, 2, '', 0, 'A04-14-04', '2025-03-05 14:34:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1469', 0, 2, '', 0, 'A01-17-01', '2025-03-05 14:33:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1470', 0, 2, '', 0, 'A04-13-05', '2025-03-05 14:33:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1471', 0, 2, '', 0, 'A01-16-02', '2025-03-05 14:33:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1472', 0, 2, '', 0, 'A04-18-02', '2025-03-06 13:14:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1473', 0, 2, '', 0, 'A01-15-05', '2025-03-06 13:12:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1474', 0, 2, '', 0, 'A01-16-04', '2025-03-06 13:12:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1475', 0, 2, '', 0, 'A04-14-06', '2025-03-06 13:12:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1476', 0, 2, '', 0, 'A04-13-07', '2025-03-06 13:11:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1477', 0, 2, '', 0, 'A04-12-08', '2025-03-06 13:10:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1478', 0, 2, '', 0, 'A01-13-07', '2025-03-06 13:10:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1479', 0, 2, '', 0, 'A04-11-09', '2025-03-06 13:10:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1480', 0, 2, '', 0, 'A01-12-08', '2025-03-06 13:09:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1481', 0, 2, '', 0, 'A01-11-05', '2025-03-19 12:25:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1482', 0, 2, '', 0, 'A01-10-10', '2025-03-06 13:08:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1483', 0, 2, '', 0, 'A02-09-11', '2025-03-06 13:15:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1484', 0, 2, '', 0, 'A01-19-01', '2025-03-06 13:14:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1485', 0, 2, '', 0, 'A04-17-03', '2025-03-06 13:14:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1486', 0, 2, '', 0, 'A04-16-04', '2025-03-06 13:13:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1487', 0, 2, '', 0, 'A01-18-02', '2025-03-06 13:13:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1488', 0, 2, '', 0, 'A03-18-02', '2025-03-06 13:07:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1489', 0, 2, '', 0, 'A03-19-01', '2025-03-06 13:08:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1490', 0, 2, '', 0, 'A03-16-04', '2025-03-06 13:06:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1491', 0, 2, '', 0, 'A03-12-08', '2025-03-06 13:03:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1492', 0, 2, '', 0, 'A03-11-09', '2025-03-06 13:03:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1493', 0, 2, '', 0, 'A02-15-09', '2025-03-15 12:47:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1494', 0, 2, '', 0, 'A03-10-10', '2025-03-06 13:02:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1495', 0, 2, '', 0, 'A01-17-03', '2025-03-06 13:13:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1496', 0, 2, '', 0, 'A04-15-05', '2025-03-06 13:12:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1497', 0, 2, '', 0, 'A02-11-08', '2025-03-06 13:02:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1498', 0, 2, '', 0, 'A02-10-09', '2025-03-06 13:02:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1499', 0, 2, '', 0, 'A02-17-02', '2025-03-06 13:06:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1500', 0, 2, '', 0, 'A03-15-05', '2025-03-06 13:05:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1501', 0, 2, '', 0, 'A03-14-06', '2025-03-06 13:04:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1502', 0, 2, '', 0, 'A02-15-04', '2025-03-06 13:05:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1503', 0, 2, '', 0, 'A03-13-07', '2025-03-06 13:04:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1504', 0, 2, '', 0, 'A02-16-03', '2025-03-06 13:05:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1505', 0, 2, '', 0, 'A03-09-11', '2025-03-19 13:02:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1506', 0, 2, '', 0, 'A04-18-01', '2025-03-06 13:01:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1507', 0, 2, '', 0, 'A02-09-10', '2025-03-06 13:01:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1508', 0, 2, '', 0, 'A02-08-11', '2025-03-06 13:00:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1509', 0, 2, '', 0, 'A04-17-02', '2025-03-06 13:00:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1510', 0, 2, '', 0, 'A02-14-05', '2025-03-06 13:04:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1511', 0, 2, '', 0, 'A01-30-10', '2025-03-12 15:00:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1512', 0, 2, '', 0, 'A02-33-06', '2025-03-12 14:54:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1513', 0, 2, '', 0, 'A04-28-08', '2025-03-12 15:00:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1514', 0, 2, '', 0, 'A04-25-11', '2025-03-12 14:53:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1515', 0, 2, '', 0, 'A03-28-08', '2025-03-12 14:46:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1516', 0, 2, '', 0, 'A02-26-11', '2025-03-18 14:09:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1517', 0, 2, '', 0, 'A04-34-01', '2025-03-12 14:36:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1518', 0, 2, '', 0, 'A04-33-02', '2025-03-12 14:35:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1519', 0, 2, '', 0, 'A02-30-05', '2025-03-18 15:50:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1520', 0, 2, '', 0, 'A04-27-09', '2025-03-12 14:59:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1521', 0, 2, '', 0, 'A01-30-05', '2025-03-15 15:02:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1522', 0, 2, '', 0, 'A03-34-02', '2025-03-12 14:52:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1523', 0, 2, '', 0, 'A04-01-01', '2025-03-12 15:36:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1524', 0, 2, '', 0, 'A01-31-08', '2025-04-01 11:42:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1526', 0, 2, '', 0, 'A02-41-01', '2025-04-01 10:18:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1528', 0, 2, '', 0, 'A01-38-07', '2025-03-28 12:18:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1529', 0, 2, '', 0, 'A01-35-04', '2025-03-31 15:43:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1530', 1, 2, '', 0, 'A02-39-07', '2025-03-28 10:31:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1531', 0, 2, '', 0, 'A01-41-03', '2025-03-31 09:36:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1532', 0, 2, '', 0, 'A04-23-09', '2025-03-11 15:50:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1533', 0, 2, '', 0, 'A01-17-04', '2025-03-15 14:56:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1534', 0, 2, '', 0, 'A04-25-07', '2025-03-20 09:22:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1535', 0, 2, '', 0, 'A03-30-02', '2025-03-19 14:40:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1536', 0, 2, '', 0, 'A02-32-02', '2025-03-11 15:49:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1537', 0, 2, '', 0, 'A03-29-03', '2025-03-11 15:46:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1538', 0, 2, '', 0, 'A01-26-09', '2025-03-11 15:52:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1539', 0, 2, '', 0, 'A01-32-03', '2025-03-11 15:57:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1540', 0, 2, '', 0, 'A04-24-08', '2025-03-11 15:51:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1541', 0, 2, '', 0, 'A01-26-08', '2025-03-11 15:35:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1542', 0, 2, '', 0, 'A03-11-10', '2025-03-19 12:26:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1543', 0, 2, '', 0, 'A03-22-10', '2025-03-11 15:40:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1544', 1, 2, '', 0, 'A01-02-11', '2025-03-28 11:15:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1545', 0, 2, '', 0, 'A04-10-10', '2025-03-06 13:09:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1546', 0, 2, '', 0, 'A01-11-09', '2025-03-06 13:08:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1547', 0, 2, '', 0, 'A01-09-11', '2025-03-06 13:07:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1548', 0, 2, '', 0, 'A03-01-01', '2025-03-06 12:58:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1549', 0, 2, '', 0, 'A03-17-03', '2025-03-06 13:06:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1550', 0, 2, '', 0, 'A02-18-01', '2025-03-06 13:07:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1551', 0, 2, '', 0, 'A01-18-01', '2025-03-06 13:00:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1552', 0, 2, '', 0, 'A02-13-06', '2025-03-06 13:03:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1553', 0, 2, '', 0, 'A04-16-03', '2025-03-06 12:59:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1554', 0, 2, '', 0, 'A02-01-05', '2025-03-06 12:58:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1555', 0, 2, '', 0, 'A02-08-09', '2025-03-06 12:59:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1556', 0, 2, '', 0, 'A04-15-04', '2025-03-06 12:59:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1557', 0, 2, '', 0, 'A02-10-10', '2025-03-06 13:15:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1558', 0, 2, '', 0, 'A04-19-01', '2025-03-06 13:15:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1559', 0, 2, '', 0, 'A03-03-10', '2025-03-15 09:00:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1560', 0, 2, '', 0, 'A02-31-05', '2025-03-19 12:00:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1561', 0, 2, '', 0, 'A02-32-05', '2025-03-18 14:14:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1562', 0, 2, '', 0, 'A02-16-05', '2025-03-07 10:28:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1563', 0, 2, '', 0, 'A02-15-06', '2025-03-07 10:27:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1564', 0, 2, '', 0, 'A03-19-02', '2025-03-07 10:13:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1565', 0, 2, '', 0, 'A03-16-08', '2025-03-14 14:00:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1566', 0, 2, '', 0, 'A03-33-04', '2025-03-15 13:38:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1567', 0, 2, '', 0, 'A01-28-01', '2025-03-19 11:41:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1568', 0, 2, '', 0, 'A01-19-02', '2025-03-14 09:48:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1569', 0, 2, '', 0, 'A02-19-01', '2025-03-10 16:22:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1570', 0, 2, '', 0, 'A03-20-01', '2025-03-07 10:14:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1571', 0, 2, '', 0, 'A02-18-02', '2025-03-07 10:14:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1572', 0, 2, '', 0, 'A03-02-05', '2025-03-19 12:47:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1573', 0, 2, '', 0, 'A04-18-05', '2025-03-07 14:18:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1574', 0, 2, '', 0, 'A04-17-06', '2025-03-07 14:17:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1575', 0, 2, '', 0, 'A02-14-07', '2025-03-15 13:01:22'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1576', 0, 2, '', 0, 'A01-21-03', '2025-03-07 15:10:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1577', 0, 2, '', 0, 'A02-12-08', '2025-03-17 15:16:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1578', 0, 2, '', 0, 'A02-16-04', '2025-03-17 15:21:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1579', 0, 2, '', 0, 'A03-02-11', '2025-03-20 12:52:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1580', 0, 2, '', 0, 'A02-30-07', '2025-03-19 12:01:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1581', 0, 2, '', 0, 'A02-19-10', '2025-03-14 11:50:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1582', 0, 2, '', 0, 'A03-17-06', '2025-03-17 13:08:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1583', 0, 2, '', 0, 'A01-23-03', '2025-03-18 13:58:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1584', 0, 2, '', 0, 'A03-30-07', '2025-03-15 10:21:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1585', 0, 2, '', 0, 'A03-11-11', '2025-03-17 14:46:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1586', 0, 2, '', 0, 'A03-26-09', '2025-03-18 15:25:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1587', 0, 2, '', 0, 'A01-16-05', '2025-03-17 12:11:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1588', 0, 2, '', 0, 'A02-12-09', '2025-03-07 10:25:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1589', 0, 2, '', 0, 'A04-15-09', '2025-03-15 10:26:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1590', 0, 2, '', 0, 'A02-17-10', '2025-03-19 14:33:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1591', 0, 2, '', 0, 'A03-13-11', '2025-03-15 09:14:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1592', 0, 2, '', 0, 'A03-35-06', '2025-03-28 09:31:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1593', 0, 2, '', 0, 'A03-25-11', '2025-03-15 13:01:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1594', 0, 2, '', 0, 'A04-09-04', '2025-03-20 12:35:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1595', 0, 2, '', 0, 'A04-16-07', '2025-03-07 14:16:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1596', 0, 2, '', 0, 'A01-20-11', '2025-03-19 14:47:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1597', 0, 2, '', 0, 'A01-17-06', '2025-03-13 17:02:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1598', 0, 2, '', 0, 'A03-22-01', '2025-03-14 14:58:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1599', 0, 2, '', 0, 'A02-16-07', '2025-03-18 15:29:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1600', 0, 2, '', 0, 'A02-17-07', '2025-03-14 09:51:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1601', 0, 2, '', 0, 'A02-17-05', '2025-03-07 14:09:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1602', 0, 2, '', 0, 'A01-22-02', '2025-03-07 15:11:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1603', 0, 2, '', 0, 'A03-16-07', '2025-03-07 14:09:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1604', 0, 2, '', 0, 'A03-31-11', '2025-03-28 09:45:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1605', 0, 2, '', 0, 'A02-17-08', '2025-03-17 15:17:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1606', 0, 2, '', 0, 'A02-18-09', '2025-03-20 13:02:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1607', 0, 2, '', 0, 'A01-20-09', '2025-03-19 12:44:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1608', 0, 2, '', 0, 'A01-20-03', '2025-03-18 13:34:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1609', 0, 2, '', 0, 'A03-16-06', '2025-03-19 13:06:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1610', 0, 2, '', 0, 'A01-13-08', '2025-03-19 15:22:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1611', 0, 2, '', 0, 'A03-25-07', '2025-03-14 15:56:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1612', 0, 2, '', 0, 'A03-36-03', '2025-03-15 13:47:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1613', 0, 2, '', 0, 'A01-15-11', '2025-03-14 10:20:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1614', 0, 2, '', 0, 'A03-16-09', '2025-03-19 12:15:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1615', 0, 2, '', 0, 'A03-05-04', '2025-03-19 13:03:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1616', 0, 2, '', 0, 'A03-14-08', '2025-03-18 13:55:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1617', 0, 2, '', 0, 'A04-11-10', '2025-03-07 10:16:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1618', 0, 2, '', 0, 'A03-23-07', '2025-03-19 14:55:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1619', 0, 2, '', 0, 'A03-14-10', '2025-03-20 09:27:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1620', 0, 2, '', 0, 'A03-29-02', '2025-03-15 12:51:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1621', 0, 2, '', 0, 'A02-15-08', '2025-03-07 14:20:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1622', 0, 2, '', 0, 'A03-13-01', '2025-03-15 09:10:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1623', 0, 2, '', 0, 'A02-14-09', '2025-03-07 14:21:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1624', 0, 2, '', 0, 'A01-15-08', '2025-03-17 14:49:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1625', 0, 2, '', 0, 'A02-30-06', '2025-03-15 08:51:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1626', 0, 2, '', 0, 'A04-20-06', '2025-03-15 13:17:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1627', 0, 2, '', 0, 'A02-13-10', '2025-03-07 14:30:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1628', 0, 2, '', 0, 'A01-15-09', '2025-03-15 13:33:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1629', 0, 2, '', 0, 'A02-13-11', '2025-03-17 14:49:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1630', 0, 2, '', 0, 'A04-37-04', '2025-03-28 09:42:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1631', 0, 2, '', 0, 'A01-17-09', '2025-03-19 13:11:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1632', 0, 2, '', 0, 'A01-12-01', '2025-03-15 14:42:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1633', 0, 2, '', 0, 'A04-20-01', '2025-03-07 10:23:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1634', 0, 2, '', 0, 'A04-02-03', '2025-03-20 09:15:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1635', 0, 2, '', 0, 'A02-28-08', '2025-03-19 11:54:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1636', 0, 2, '', 0, 'A01-01-03', '2025-03-13 13:31:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1637', 0, 2, '', 0, 'A03-17-09', '2025-03-19 11:55:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1638', 0, 2, '', 0, 'A04-10-03', '2025-03-14 09:48:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1639', 0, 2, '', 0, 'A04-17-04', '2025-03-13 10:04:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1640', 0, 2, '', 0, 'A01-19-08', '2025-03-17 15:09:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1641', 0, 2, '', 0, 'A01-28-03', '2025-03-20 13:54:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1642', 0, 2, '', 0, 'A03-09-05', '2025-03-10 16:15:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1643', 0, 2, '', 0, 'A02-22-01', '2025-03-07 14:25:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1644', 0, 2, '', 0, 'A02-21-02', '2025-03-07 15:35:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1645', 0, 2, '', 0, 'A01-21-02', '2025-03-14 12:48:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1646', 0, 2, '', 0, 'A04-22-01', '2025-03-07 14:20:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1647', 0, 2, '', 0, 'A02-22-05', '2025-03-14 10:08:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1648', 0, 2, '', 0, 'A01-02-03', '2025-03-15 12:36:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1649', 0, 2, '', 0, 'A03-20-02', '2025-03-20 09:26:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1650', 0, 2, '', 0, 'A03-19-05', '2025-03-14 13:19:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1651', 0, 2, '', 0, 'A04-02-02', '2025-03-19 12:47:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1652', 0, 2, '', 0, 'A01-35-05', '2025-03-14 11:53:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1653', 0, 2, '', 0, 'A02-20-03', '2025-03-07 14:24:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1654', 0, 2, '', 0, 'A02-17-06', '2025-03-17 15:28:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1655', 0, 2, '', 0, 'A01-20-02', '2025-03-07 13:14:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1656', 0, 2, '', 0, 'A03-20-09', '2025-03-15 13:41:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1657', 0, 2, '', 0, 'A01-19-03', '2025-03-07 13:14:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1658', 0, 2, '', 0, 'A02-20-01', '2025-03-14 08:18:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1659', 0, 2, '', 0, 'A02-26-05', '2025-03-14 11:51:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1660', 0, 2, '', 0, 'A04-35-06', '2025-03-28 09:36:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1661', 0, 2, '', 0, 'A01-14-09', '2025-03-07 14:14:23'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1662', 0, 2, '', 0, 'A01-04-04', '2025-03-15 09:46:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1663', 0, 2, '', 0, 'A04-21-02', '2025-03-17 14:47:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1664', 0, 2, '', 0, 'A02-18-03', '2025-03-20 09:26:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1665', 0, 2, '', 0, 'A02-01-09', '2025-03-15 13:37:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1666', 0, 2, '', 0, 'A02-35-03', '2025-03-19 13:04:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1667', 0, 2, '', 0, 'A02-40-05', '2025-03-28 09:32:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1668', 0, 2, '', 0, 'A01-21-01', '2025-03-19 12:59:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1669', 0, 2, '', 0, 'A04-14-08', '2025-03-07 13:11:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1670', 0, 2, '', 0, 'A01-23-01', '2025-03-13 17:04:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1671', 0, 2, '', 0, 'A01-15-07', '2025-03-07 13:11:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1672', 0, 2, '', 0, 'A04-12-10', '2025-03-07 13:10:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1673', 0, 2, '', 0, 'A01-20-01', '2025-03-13 14:07:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1674', 0, 2, '', 0, 'A04-11-11', '2025-03-07 13:09:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1675', 0, 2, '', 0, 'A02-02-03', '2025-03-15 13:08:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1676', 0, 2, '', 0, 'A01-11-11', '2025-03-18 15:39:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1677', 0, 2, '', 0, 'A03-21-01', '2025-03-07 13:07:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1678', 0, 2, '', 0, 'A03-18-11', '2025-03-19 15:10:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1679', 0, 2, '', 0, 'A04-16-06', '2025-03-07 13:13:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1680', 0, 2, '', 0, 'A04-17-05', '2025-03-14 15:00:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1681', 0, 2, '', 0, 'A02-22-08', '2025-03-15 13:24:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1682', 0, 2, '', 0, 'A02-24-02', '2025-03-15 09:17:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1683', 0, 2, '', 0, 'A01-35-10', '2025-04-01 10:01:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1684', 0, 2, '', 0, 'A01-03-03', '2025-03-15 12:59:48'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1685', 0, 2, '', 0, 'A04-10-11', '2025-03-19 14:30:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1686', 0, 2, '', 0, 'A02-32-06', '2025-03-19 14:20:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1687', 0, 2, '', 0, 'A03-15-08', '2025-03-07 14:08:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1688', 0, 2, '', 0, 'A02-08-05', '2025-03-14 12:00:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1689', 0, 2, '', 0, 'A03-27-07', '2025-03-15 12:59:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1690', 0, 2, '', 0, 'A02-14-06', '2025-03-20 09:24:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1691', 0, 2, '', 0, 'A03-24-01', '2025-03-20 12:37:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1692', 0, 2, '', 0, 'A01-21-08', '2025-03-18 14:29:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1693', 0, 2, '', 0, 'A03-11-01', '2025-03-17 15:29:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1694', 0, 2, '', 0, 'A03-19-09', '2025-03-10 13:19:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1695', 0, 2, '', 0, 'A02-17-03', '2025-03-19 13:11:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1696', 0, 2, '', 0, 'A02-13-09', '2025-03-07 14:07:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1697', 0, 2, '', 0, 'A02-12-10', '2025-03-14 11:44:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1698', 0, 2, '', 0, 'A03-10-11', '2025-03-14 10:33:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1699', 0, 2, '', 0, 'A02-14-08', '2025-03-07 14:07:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1700', 0, 2, '', 0, 'A03-12-11', '2025-03-07 14:07:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1701', 0, 2, '', 0, 'A02-21-01', '2025-03-07 14:12:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1702', 0, 2, '', 0, 'A04-01-11', '2025-03-14 14:35:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1703', 0, 2, '', 0, 'A01-24-01', '2025-03-20 13:07:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1704', 0, 2, '', 0, 'A04-28-05', '2025-03-20 13:50:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1705', 0, 2, '', 0, 'A02-11-11', '2025-03-07 14:06:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1706', 0, 2, '', 0, 'A01-01-01', '2025-03-13 13:31:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1707', 0, 2, '', 0, 'A04-22-02', '2025-03-10 15:21:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1708', 0, 2, '', 0, 'A04-25-03', '2025-03-18 13:56:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1709', 0, 2, '', 0, 'A04-17-09', '2025-03-19 12:14:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1710', 0, 2, '', 0, 'A03-20-03', '2025-03-07 14:12:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1711', 0, 2, '', 0, 'A04-30-07', '2025-03-13 10:04:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1712', 0, 2, '', 0, 'A04-14-10', '2025-03-18 14:05:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1713', 0, 2, '', 0, 'A02-38-06', '2025-03-26 15:23:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1714', 0, 2, '', 0, 'A01-18-03', '2025-03-14 15:20:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1715', 0, 2, '', 0, 'A02-19-05', '2025-03-18 15:42:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1716', 0, 2, '', 0, 'A02-07-06', '2025-03-15 09:16:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1717', 0, 2, '', 0, 'A01-19-05', '2025-03-18 14:45:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1718', 0, 2, '', 0, 'A01-11-10', '2025-03-19 14:56:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1719', 0, 2, '', 0, 'A02-14-10', '2025-03-15 09:09:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1720', 0, 2, '', 0, 'A04-16-08', '2025-03-07 14:29:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1721', 0, 2, '', 0, 'A03-18-04', '2025-03-19 13:13:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1722', 0, 2, '', 0, 'A02-34-07', '2025-03-14 11:54:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1723', 0, 2, '', 0, 'A01-19-07', '2025-03-15 10:19:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1724', 0, 2, '', 0, 'A04-15-11', '2025-03-18 12:49:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1725', 0, 2, '', 0, 'A02-28-09', '2025-03-15 08:53:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1726', 0, 2, '', 0, 'A03-13-08', '2025-03-18 15:15:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1727', 0, 2, '', 0, 'A03-01-09', '2025-03-14 14:03:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1728', 0, 2, '', 0, 'A01-32-07', '2025-03-19 13:24:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1729', 0, 2, '', 0, 'A02-01-07', '2025-03-10 08:34:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1730', 0, 2, '', 0, 'A04-01-06', '2025-03-10 08:33:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1731', 0, 2, '', 0, 'A02-27-04', '2025-03-18 13:52:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1732', 0, 2, '', 0, 'A04-03-08', '2025-03-15 09:20:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1733', 0, 2, '', 0, 'A04-30-02', '2025-03-20 09:24:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1734', 0, 2, '', 0, 'A04-25-06', '2025-03-19 14:35:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1735', 0, 2, '', 0, 'A01-08-04', '2025-03-18 14:22:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1736', 0, 2, '', 0, 'A01-23-06', '2025-03-19 15:12:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1737', 0, 2, '', 0, 'A01-17-05', '2025-03-18 14:03:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1738', 0, 2, '', 0, 'A03-19-04', '2025-03-14 12:42:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1739', 0, 2, '', 0, 'A04-23-10', '2025-03-15 14:34:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1740', 0, 2, '', 0, 'A02-23-01', '2025-03-14 09:30:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1741', 1, 1, '', 0, '', '2025-03-10 08:41:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1742', 0, 2, '', 0, 'A03-15-10', '2025-03-10 08:41:03'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1743', 0, 2, '', 0, 'A01-29-03', '2025-03-19 13:48:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1744', 0, 2, '', 0, 'A01-01-09', '2025-03-14 14:16:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1745', 0, 2, '', 0, 'A02-21-03', '2025-03-10 08:40:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1746', 0, 2, '', 0, 'A02-20-04', '2025-03-10 08:39:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1747', 0, 2, '', 0, 'A03-25-01', '2025-03-15 08:59:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1748', 0, 2, '', 0, 'A03-22-06', '2025-03-14 15:01:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1749', 0, 2, '', 0, 'A02-15-05', '2025-03-17 15:22:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1750', 0, 2, '', 0, 'A04-19-09', '2025-03-18 13:46:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1751', 0, 2, '', 0, 'A04-21-08', '2025-03-19 14:31:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1752', 0, 2, '', 0, 'A01-21-04', '2025-03-10 08:47:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1753', 0, 2, '', 0, 'A03-24-10', '2025-03-18 15:06:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1754', 0, 2, '', 0, 'A01-27-11', '2025-03-15 08:53:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1755', 0, 2, '', 0, 'A02-23-07', '2025-03-20 13:24:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1756', 0, 2, '', 0, 'A02-12-07', '2025-03-15 12:41:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1757', 0, 2, '', 0, 'A01-19-06', '2025-03-10 08:45:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1758', 0, 2, '', 0, 'A02-23-04', '2025-03-10 13:10:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1759', 0, 2, '', 0, 'A01-33-07', '2025-03-14 10:10:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1760', 0, 2, '', 0, 'A03-24-11', '2025-03-17 15:08:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1761', 0, 2, '', 0, 'A01-22-06', '2025-03-18 15:21:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1762', 0, 2, '', 0, 'A03-20-04', '2025-03-20 12:50:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1763', 0, 2, '', 0, 'A04-18-09', '2025-03-10 13:06:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1764', 0, 2, '', 0, 'A03-12-10', '2025-03-17 14:50:28'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1765', 0, 2, '', 0, 'A03-14-09', '2025-03-17 15:22:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1766', 0, 2, '', 0, 'A01-27-05', '2025-03-17 15:31:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1767', 0, 2, '', 0, 'A02-31-09', '2025-03-12 15:20:10'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1768', 0, 2, '', 0, 'A04-27-01', '2025-03-19 11:58:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1769', 0, 2, '', 0, 'A04-23-01', '2025-03-15 08:50:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1770', 0, 2, '', 0, 'A04-22-05', '2025-03-10 13:10:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1771', 0, 2, '', 0, 'A04-24-01', '2025-03-14 11:43:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1772', 0, 2, '', 0, 'A02-05-11', '2025-03-19 15:17:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1773', 0, 2, '', 0, 'A01-07-02', '2025-03-14 11:56:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1774', 0, 2, '', 0, 'A01-22-03', '2025-03-10 08:48:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1775', 0, 2, '', 0, 'A02-20-07', '2025-03-10 13:08:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1776', 0, 2, '', 0, 'A04-19-08', '2025-03-10 13:07:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1777', 0, 2, '', 0, 'A02-18-06', '2025-03-19 14:37:45'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1778', 0, 2, '', 0, 'A01-26-01', '2025-03-10 13:05:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1779', 0, 2, '', 0, 'A01-23-05', '2025-03-15 14:58:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1780', 0, 2, '', 0, 'A02-02-09', '2025-03-15 09:10:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1781', 0, 2, '', 0, 'A04-13-02', '2025-03-19 12:25:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1782', 0, 2, '', 0, 'A04-21-01', '2025-03-15 10:15:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1783', 0, 2, '', 0, 'A04-23-02', '2025-03-20 12:41:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1784', 0, 2, '', 0, 'A03-02-06', '2025-03-14 11:58:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1785', 0, 2, '', 0, 'A01-15-10', '2025-03-10 08:43:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1786', 0, 2, '', 0, 'A01-20-07', '2025-03-10 13:00:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1787', 0, 2, '', 0, 'A02-24-03', '2025-03-10 13:11:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1788', 0, 2, '', 0, 'A03-15-07', '2025-03-18 15:16:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1789', 0, 2, '', 0, 'A01-24-02', '2025-03-19 13:08:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1790', 0, 2, '', 0, 'A03-21-09', '2025-03-19 12:30:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1791', 0, 2, '', 0, 'A01-01-04', '2025-03-13 13:32:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1792', 0, 2, '', 0, 'A01-23-04', '2025-03-10 13:02:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1793', 0, 2, '', 0, 'A03-25-03', '2025-03-17 15:18:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1794', 0, 2, '', 0, 'A01-26-06', '2025-03-19 14:51:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1795', 0, 2, '', 0, 'A02-13-08', '2025-03-17 15:12:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1796', 0, 2, '', 0, 'A01-18-09', '2025-03-10 12:58:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1797', 0, 2, '', 0, 'A03-21-06', '2025-03-10 12:58:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1798', 0, 2, '', 0, 'A02-25-01', '2025-03-10 12:56:53'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1799', 0, 2, '', 0, 'A02-35-06', '2025-03-14 11:57:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1800', 0, 2, '', 0, 'A03-30-01', '2025-03-19 14:34:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1801', 0, 2, '', 0, 'A01-22-05', '2025-03-10 13:02:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1802', 0, 2, '', 0, 'A01-30-01', '2025-03-17 14:19:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1803', 0, 2, '', 0, 'A01-10-04', '2025-03-19 12:33:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1804', 0, 2, '', 0, 'A03-02-07', '2025-03-17 15:16:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1805', 0, 2, '', 0, 'A04-25-02', '2025-03-10 13:15:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1806', 0, 2, '', 0, 'A01-17-11', '2025-03-10 13:14:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1807', 0, 2, '', 0, 'A02-17-11', '2025-03-19 14:55:05'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1808', 0, 2, '', 0, 'A02-26-01', '2025-03-10 13:13:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1809', 0, 2, '', 0, 'A01-25-02', '2025-03-17 15:30:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1810', 0, 2, '', 0, 'A02-16-11', '2025-03-10 13:06:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1811', 0, 2, '', 0, 'A02-25-02', '2025-03-10 13:12:51'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1812', 0, 2, '', 0, 'A04-17-10', '2025-03-17 15:41:00'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1813', 0, 2, '', 0, 'A04-19-02', '2025-03-19 12:51:11'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1814', 0, 2, '', 0, 'A01-38-05', '2025-03-14 12:34:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1815', 0, 2, '', 0, 'A01-20-08', '2025-03-10 13:17:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1816', 0, 2, '', 0, 'A01-19-09', '2025-03-10 13:16:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1817', 0, 2, '', 0, 'A01-18-10', '2025-03-10 13:15:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1818', 0, 2, '', 0, 'A02-30-01', '2025-03-17 14:51:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1819', 0, 2, '', 0, 'A01-26-02', '2025-03-17 15:18:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1820', 0, 2, '', 0, 'A02-06-01', '2025-03-19 12:53:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1821', 0, 2, '', 0, 'A03-21-07', '2025-03-10 13:21:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1822', 0, 2, '', 0, 'A01-27-01', '2025-03-10 13:22:59'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1823', 0, 2, '', 0, 'A01-34-09', '2025-03-14 11:58:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1824', 0, 2, '', 0, 'A02-23-08', '2025-03-17 15:26:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1825', 0, 2, '', 0, 'A03-19-08', '2025-03-19 12:17:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1826', 0, 2, '', 0, 'A01-21-07', '2025-03-17 15:46:43'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1827', 0, 2, '', 0, 'A01-25-04', '2025-03-11 08:35:29'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1828', 0, 2, '', 0, 'A01-24-05', '2025-03-11 08:34:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1829', 0, 2, '', 0, 'A03-22-05', '2025-03-17 15:20:06'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1830', 0, 2, '', 0, 'A03-01-10', '2025-03-19 12:54:24'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1831', 0, 2, '', 0, 'A01-21-09', '2025-03-15 14:54:58'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1832', 0, 2, '', 0, 'A04-23-07', '2025-03-15 08:53:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1833', 0, 2, '', 0, 'A02-20-09', '2025-03-11 08:40:21'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1834', 0, 2, '', 0, 'A03-23-02', '2025-03-20 12:44:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1835', 0, 2, '', 0, 'A03-27-02', '2025-03-18 14:26:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1836', 0, 2, '', 0, 'A01-04-05', '2025-03-19 12:26:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1837', 0, 2, '', 0, 'A02-27-07', '2025-03-19 15:19:15'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1838', 0, 2, '', 0, 'A02-24-04', '2025-03-11 08:23:47'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1839', 0, 2, '', 0, 'A03-36-01', '2025-03-12 15:33:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1840', 0, 2, '', 0, 'A04-08-06', '2025-03-15 14:42:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1841', 0, 2, '', 0, 'A04-20-04', '2025-03-11 08:25:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1842', 0, 2, '', 0, 'A02-27-01', '2025-03-17 15:45:19'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1843', 0, 2, '', 0, 'A01-13-11', '2025-03-17 15:15:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1844', 0, 2, '', 0, 'A04-08-04', '2025-03-19 13:11:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1845', 0, 2, '', 0, 'A04-22-06', '2025-03-11 08:46:41'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1846', 0, 2, '', 0, 'A01-21-05', '2025-03-18 14:00:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1847', 0, 2, '', 0, 'A03-37-02', '2025-03-17 15:13:14'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1848', 0, 2, '', 0, 'A04-13-04', '2025-03-14 10:23:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1849', 0, 2, '', 0, 'A04-21-05', '2025-03-17 15:45:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1850', 0, 2, '', 0, 'A03-21-04', '2025-03-11 08:32:07'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1851', 0, 2, '', 0, 'A04-26-01', '2025-03-19 12:49:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1852', 0, 2, '', 0, 'A01-19-10', '2025-03-11 08:31:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1853', 0, 2, '', 0, 'A04-15-10', '2025-03-14 11:45:01'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1854', 0, 2, '', 0, 'A01-16-06', '2025-03-18 15:10:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1855', 0, 2, '', 0, 'A04-02-01', '2025-03-19 12:06:13'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1856', 0, 2, '', 0, 'A04-22-08', '2025-03-19 14:32:39'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1857', 0, 2, '', 0, 'A02-21-05', '2025-03-15 13:49:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1858', 0, 2, '', 0, 'A02-23-03', '2025-03-15 14:37:02'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1859', 0, 2, '', 0, 'A02-31-04', '2025-03-20 09:31:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1860', 0, 2, '', 0, 'A02-18-10', '2025-03-19 12:27:09'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1861', 0, 2, '', 0, 'A04-19-05', '2025-03-15 14:33:52'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1862', 0, 2, '', 0, 'A03-06-07', '2025-03-18 14:49:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1863', 0, 2, '', 0, 'A04-20-08', '2025-03-14 14:47:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1864', 0, 2, '', 0, 'A03-18-07', '2025-03-14 14:38:25'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1865', 0, 2, '', 0, 'A01-29-06', '2025-03-11 15:54:31'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1866', 0, 2, '', 0, 'A04-28-04', '2025-03-11 15:53:55'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1867', 0, 2, '', 0, 'A01-16-11', '2025-03-15 13:35:12'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1868', 0, 2, '', 0, 'A04-22-10', '2025-03-15 12:33:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1869', 0, 2, '', 0, 'A03-18-03', '2025-03-18 15:26:57'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1870', 0, 2, '', 0, 'A01-31-03', '2025-03-18 14:58:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1871', 0, 2, '', 0, 'A02-24-11', '2025-03-11 16:00:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1872', 0, 2, '', 0, 'A04-22-11', '2025-03-15 12:15:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1873', 0, 2, '', 0, 'A02-03-04', '2025-03-20 09:25:32'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1874', 0, 2, '', 0, 'A02-28-01', '2025-03-18 14:51:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1875', 0, 2, '', 0, 'A04-28-02', '2025-03-14 15:08:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1876', 0, 2, '', 0, 'A01-27-10', '2025-03-12 10:17:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1877', 0, 2, '', 0, 'A03-28-04', '2025-03-15 09:04:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1878', 0, 2, '', 0, 'A03-23-11', '2025-03-12 10:11:26'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1879', 0, 2, '', 0, 'A03-29-01', '2025-03-18 14:53:04'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1880', 0, 2, '', 0, 'A04-32-01', '2025-03-12 10:10:36'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1881', 0, 2, '', 0, 'A01-28-08', '2025-03-14 15:05:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1882', 0, 2, '', 0, 'A02-18-05', '2025-03-19 14:31:18'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1883', 0, 2, '', 0, 'A04-26-07', '2025-03-12 10:04:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1884', 0, 2, '', 0, 'A01-31-05', '2025-03-12 10:04:40'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1885', 0, 2, '', 0, 'A01-40-05', '2025-03-28 09:42:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1886', 0, 2, '', 0, 'A01-30-06', '2025-03-12 10:03:54'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1887', 0, 2, '', 0, 'A01-25-11', '2025-03-19 11:48:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1888', 0, 2, '', 0, 'A02-05-06', '2025-03-19 14:12:42'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1889', 0, 2, '', 0, 'A03-14-07', '2025-03-15 13:11:35'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1890', 0, 2, '', 0, 'A03-26-06', '2025-03-19 15:04:46'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1891', 0, 2, '', 0, 'A01-01-02', '2025-03-19 14:14:30'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1892', 0, 2, '', 0, 'A01-34-02', '2025-03-12 10:06:56'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1893', 0, 2, '', 0, 'A01-31-04', '2025-03-20 09:09:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1894', 0, 2, '', 0, 'A02-26-06', '2025-03-19 14:52:38'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1895', 0, 2, '', 0, 'A03-02-01', '2025-03-15 15:00:20'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1896', 0, 2, '', 0, 'A01-24-06', '2025-03-15 14:54:16'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1897', 0, 2, '', 0, 'A02-26-07', '2025-03-19 15:13:17'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1898', 0, 2, '', 0, 'A04-29-11', '2025-03-22 14:28:33'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1899', 0, 2, '', 0, 'A04-35-05', '2025-03-26 15:36:50'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1900', 0, 2, '', 0, 'A01-39-02', '2025-04-01 09:11:37'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1901', 0, 2, '', 0, 'A04-30-10', '2025-03-22 14:29:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1902', 0, 2, '', 0, 'A04-29-10', '2025-04-01 10:18:27'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1903', 1, 2, '', 0, 'A03-37-05', '2025-03-28 10:33:44'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1904', 1, 2, '', 0, 'A02-41-05', '2025-03-28 10:33:49'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1905', 0, 2, '', 0, 'A04-33-07', '2025-03-22 14:32:34'); -INSERT INTO `t_app_vehicle` (`vehicle_id`, `is_empty`, `vehicle_status`, `vehicle_type`, `is_lock`, `location_id`, `last_in_time`) VALUES ('ASRS-1907', 0, 2, '', 0, 'A02-38-02', '2025-03-26 15:33:40'); -COMMIT; - --- ---------------------------- --- Table structure for t_app_wcs_task --- ---------------------------- -DROP TABLE IF EXISTS `t_app_wcs_task`; -CREATE TABLE `t_app_wcs_task` ( - `wcs_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'wcs任务号', - `wcs_task_status` int NOT NULL COMMENT 'wcs任务状态', - `wcs_task_type` int NOT NULL COMMENT '任务类型', - `task_priority` int NOT NULL COMMENT '任务优先级', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `origin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '起点', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '终点', - `create_time` datetime NOT NULL COMMENT '创建时间', - `send_time` datetime DEFAULT NULL COMMENT '下发时间', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注信息', - PRIMARY KEY (`wcs_task_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_wcs_task --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_app_wcs_task_bak --- ---------------------------- -DROP TABLE IF EXISTS `t_app_wcs_task_bak`; -CREATE TABLE `t_app_wcs_task_bak` ( - `wcs_task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'wcs任务号', - `wcs_task_status` int NOT NULL COMMENT 'wcs任务状态', - `wcs_task_type` int NOT NULL COMMENT '任务类型', - `task_priority` int NOT NULL COMMENT '任务优先级', - `vehicle_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '载具号', - `origin` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '起点', - `destination` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '终点', - `create_time` datetime NOT NULL COMMENT '创建时间', - `send_time` datetime DEFAULT NULL COMMENT '下发时间', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `remark` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '备注信息', - PRIMARY KEY (`wcs_task_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_wcs_task_bak --- ---------------------------- -BEGIN; -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534631843010000', 2, 1, 1, 'ASRS-0326', 'P3', 'A02-23-09', '2025-03-21 13:23:52', '2025-03-21 13:23:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534677130010000', 2, 1, 1, 'ASRS-0325', 'P3', 'A04-29-04', '2025-03-21 13:24:37', '2025-03-21 13:24:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534702914010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-29-07', '2025-03-21 13:25:03', '2025-03-21 13:25:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534724230010000', 2, 1, 1, 'ASRS-0323', 'P3', 'A04-30-03', '2025-03-21 13:25:24', '2025-03-21 13:25:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534768342010000', 2, 1, 1, 'ASRS-0322', 'P3', 'A01-26-11', '2025-03-21 13:26:08', '2025-03-21 13:26:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534809712010000', 2, 1, 1, 'ASRS-0312', 'P3', 'A04-31-02', '2025-03-21 13:26:50', '2025-03-21 13:26:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534870631010000', 2, 1, 1, 'ASRS-0311', 'P3', 'A01-31-06', '2025-03-21 13:27:51', '2025-03-21 13:27:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534928212010000', 2, 1, 1, 'ASRS-0310', 'P3', 'A04-28-06', '2025-03-21 13:28:48', '2025-03-21 13:28:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742534990030010000', 2, 1, 1, 'ASRS-0309', 'P3', 'A01-32-05', '2025-03-21 13:29:50', '2025-03-21 13:29:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742535023616010000', 2, 1, 1, 'ASRS-0308', 'P3', 'A04-29-05', '2025-03-21 13:30:24', '2025-03-21 13:30:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742538854366010000', 2, 1, 1, 'ASRS-0321', 'P3', 'A02-33-04', '2025-03-21 14:34:14', '2025-03-21 14:34:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742538887664010000', 2, 1, 1, 'ASRS-0307', 'P3', 'A03-27-08', '2025-03-21 14:34:48', '2025-03-21 14:34:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742538915563010000', 2, 1, 1, 'ASRS-0320', 'P3', 'A02-34-04', '2025-03-21 14:35:16', '2025-03-21 14:35:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742538934770010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A01-31-08', '2025-03-21 14:35:35', '2025-03-21 14:35:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742538997155010000', 2, 1, 1, 'ASRS-0319', 'P3', 'A03-28-07', '2025-03-21 14:36:37', '2025-03-21 14:36:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742539027162010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A01-33-06', '2025-03-21 14:37:07', '2025-03-21 14:37:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742539048462010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A01-35-04', '2025-03-21 14:37:28', '2025-03-21 14:37:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742539080257010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A03-29-06', '2025-03-21 14:38:00', '2025-03-21 14:38:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742602889987010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-22 08:21:30', '2025-03-22 08:21:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742602925054010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-31-04', '2025-03-22 08:22:05', '2025-03-22 08:22:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742602983849010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-22 08:23:04', '2025-03-22 08:23:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742602991651010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A03-32-03', '2025-03-22 08:23:12', '2025-03-22 08:23:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603005449010000', 2, 1, 1, 'ASRS-0330', 'P3', 'A02-37-03', '2025-03-22 08:23:25', '2025-03-22 08:23:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603028537010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A04-29-06', '2025-03-22 08:23:49', '2025-03-22 08:23:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603035753010000', 2, 1, 1, 'ASRS-0328', 'P3', 'A02-38-02', '2025-03-22 08:23:56', '2025-03-22 08:23:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603052251010000', 2, 1, 1, 'ASRS-0327', 'P3', 'A04-31-04', '2025-03-22 08:24:12', '2025-03-22 08:24:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603056434010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A02-39-01', '2025-03-22 08:24:16', '2025-03-22 08:24:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603066934010000', 2, 1, 1, 'ASRS-0314', 'P3', 'A04-32-03', '2025-03-22 08:24:27', '2025-03-22 08:24:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603083435010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A01-39-02', '2025-03-22 08:24:43', '2025-03-22 08:24:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603102638010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-05', '2025-03-22 08:25:03', '2025-03-22 08:25:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603112838010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A02-32-09', '2025-03-22 08:25:13', '2025-03-22 08:25:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603126637010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A03-31-06', '2025-03-22 08:25:27', '2025-03-22 08:25:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742603141339010000', 2, 1, 1, 'ASRS-0302', 'P3', 'A02-41-01', '2025-03-22 08:25:41', '2025-03-22 08:25:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615369164010000', 2, 1, 1, 'ASRS-0301', 'P3', 'A01-32-11', '2025-03-22 11:49:29', '2025-03-22 11:49:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615393754010000', 2, 1, 1, 'ASRS-0300', 'P3', 'A03-34-05', '2025-03-22 11:49:54', '2025-03-22 11:49:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615430955010000', 2, 1, 1, 'ASRS-0297', 'P3', 'A01-33-10', '2025-03-22 11:50:31', '2025-03-22 11:50:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615452258010000', 2, 1, 1, 'ASRS-0299', 'P3', 'A03-35-04', '2025-03-22 11:50:52', '2025-03-22 11:50:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615480147010000', 2, 1, 1, 'ASRS-0269', 'P3', 'A01-36-07', '2025-03-22 11:51:20', '2025-03-22 11:51:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615497556010000', 2, 1, 1, 'ASRS-0249', 'P3', 'A01-37-06', '2025-03-22 11:51:38', '2025-03-22 11:51:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615516756010000', 2, 1, 1, 'ASRS-0250', 'P3', 'A03-38-01', '2025-03-22 11:51:57', '2025-03-22 11:51:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615542558010000', 2, 1, 1, 'ASRS-0248', 'P3', 'A01-40-03', '2025-03-22 11:52:23', '2025-03-22 11:52:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615563241010000', 2, 1, 1, 'ASRS-0247', 'P3', 'A04-28-11', '2025-03-22 11:52:43', '2025-03-22 11:52:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615588158010000', 2, 1, 1, 'ASRS-1246', 'P3', 'A01-41-02', '2025-03-22 11:53:08', '2025-03-22 11:53:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615605247010000', 2, 1, 1, 'ASRS-0275', 'P3', 'A04-29-10', '2025-03-22 11:53:25', '2025-03-22 11:53:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615622356010000', 2, 1, 1, 'ASRS-0276', 'P3', 'A04-30-09', '2025-03-22 11:53:42', '2025-03-22 11:53:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615638259010000', 2, 1, 1, 'ASRS-0274', 'P3', 'A01-42-01', '2025-03-22 11:53:58', '2025-03-22 11:53:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615722546010000', 2, 1, 1, 'ASRS-0273', 'P3', 'A04-31-08', '2025-03-22 11:55:23', '2025-03-22 11:55:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615737246010000', 2, 1, 1, 'ASRS-0272', 'P3', 'A02-32-11', '2025-03-22 11:55:37', '2025-03-22 11:55:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615781947010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A04-32-07', '2025-03-22 11:56:22', '2025-03-22 11:56:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742615841406010000', 2, 2, 1, 'ASRS-0271', 'A04-32-07', '', '2025-03-22 11:57:21', '2025-03-22 11:57:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742616279374010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A02-33-10', '2025-03-22 12:04:39', '2025-03-22 12:04:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742623997530010000', 2, 1, 1, 'ASRS-1907', 'P3', 'A02-34-09', '2025-03-22 14:13:18', '2025-03-22 14:13:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624007705010000', 2, 1, 1, 'ASRS-0371', 'P3', 'A04-32-07', '2025-03-22 14:13:28', '2025-03-22 14:13:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624024821010000', 2, 1, 1, 'ASRS-0270', 'P3', 'A02-35-08', '2025-03-22 14:13:45', '2025-03-22 14:13:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624044020010000', 2, 1, 1, 'ASRS-0370', 'P3', 'A04-33-06', '2025-03-22 14:14:04', '2025-03-22 14:14:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624057833010000', 2, 1, 1, 'ASRS-0369', 'P3', 'A02-36-07', '2025-03-22 14:14:18', '2025-03-22 14:14:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624089004010000', 2, 1, 1, 'ASRS-0368', 'P3', 'A04-34-05', '2025-03-22 14:14:49', '2025-03-22 14:14:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624111220010000', 2, 1, 1, 'ASRS-0367', 'P3', 'A02-37-06', '2025-03-22 14:15:11', '2025-03-22 14:15:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624118407010000', 2, 1, 1, 'ASRS-0366', 'P3', 'A04-35-04', '2025-03-22 14:15:18', '2025-03-22 14:15:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624132505010000', 2, 1, 1, 'ASRS-0365', 'P3', 'A02-38-05', '2025-03-22 14:15:33', '2025-03-22 14:15:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624151721010000', 2, 1, 1, 'ASRS-1033', 'P3', 'A04-36-03', '2025-03-22 14:15:52', '2025-03-22 14:15:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624158922010000', 2, 1, 1, 'ASRS-0361', 'P3', 'A02-39-04', '2025-03-22 14:15:59', '2025-03-22 14:15:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624184408010000', 2, 1, 1, 'ASRS-0363', 'P3', 'A04-37-02', '2025-03-22 14:16:24', '2025-03-22 14:16:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624196120010000', 2, 1, 1, 'ASRS-0362', 'P3', 'A04-38-01', '2025-03-22 14:16:36', '2025-03-22 14:16:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624211706010000', 2, 1, 1, 'ASRS-0267', 'P3', 'A02-40-03', '2025-03-22 14:16:52', '2025-03-22 14:16:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624222506010000', 2, 1, 1, 'ASRS-0268', 'P3', 'A02-41-02', '2025-03-22 14:17:03', '2025-03-22 14:17:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624243521010000', 2, 1, 1, 'ASRS-0266', 'P3', 'A03-29-11', '2025-03-22 14:17:24', '2025-03-22 14:17:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624253726010000', 2, 1, 1, 'ASRS-0265', 'P3', 'A02-42-01', '2025-03-22 14:17:34', '2025-03-22 14:17:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624272911010000', 2, 1, 1, 'ASRS-0382', 'P3', 'A03-30-10', '2025-03-22 14:17:53', '2025-03-22 14:17:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624280722010000', 2, 1, 1, 'ASRS-0381', 'P3', 'A01-33-11', '2025-03-22 14:18:01', '2025-03-22 14:18:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624290023010000', 2, 1, 1, 'ASRS-0380', 'P3', 'A03-31-09', '2025-03-22 14:18:10', '2025-03-22 14:18:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624306806010000', 2, 1, 1, 'ASRS-0379', 'P3', 'A01-34-10', '2025-03-22 14:18:27', '2025-03-22 14:18:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624390208010000', 2, 1, 1, 'ASRS-0378', 'P3', 'A03-32-08', '2025-03-22 14:19:50', '2025-03-22 14:19:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624455604010000', 2, 1, 1, 'ASRS-0377', 'P3', 'A01-35-09', '2025-03-22 14:20:56', '2025-03-22 14:20:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624474823010000', 2, 1, 1, 'ASRS-0376', 'P3', 'A03-33-07', '2025-03-22 14:21:15', '2025-03-22 14:21:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624574406010000', 2, 1, 1, 'ASRS-0354', 'P3', 'A03-34-06', '2025-03-22 14:22:54', '2025-03-22 14:22:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624583425010000', 2, 1, 1, 'ASRS-0346', 'P3', 'A01-36-08', '2025-03-22 14:23:03', '2025-03-22 14:23:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624595121010000', 2, 1, 1, 'ASRS-0347', 'P3', 'A01-37-07', '2025-03-22 14:23:15', '2025-03-22 14:23:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624621202010000', 2, 1, 1, 'ASRS-0348', 'P3', 'A03-35-05', '2025-03-22 14:23:41', '2025-03-22 14:23:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624632920010000', 2, 1, 1, 'ASRS-0341', 'P3', 'A03-36-04', '2025-03-22 14:23:53', '2025-03-22 14:23:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624643103010000', 2, 1, 1, 'ASRS-0372', 'P3', 'A01-38-06', '2025-03-22 14:24:03', '2025-03-22 14:24:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624652704010000', 2, 1, 1, 'ASRS-0387', 'P3', 'A01-39-05', '2025-03-22 14:24:13', '2025-03-22 14:24:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624662904010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A03-37-03', '2025-03-22 14:24:23', '2025-03-22 14:24:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624673106010000', 2, 1, 1, 'ASRS-0391', 'P3', 'A01-40-04', '2025-03-22 14:24:33', '2025-03-22 14:24:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624682118010000', 2, 1, 1, 'ASRS-0390', 'P3', 'A03-38-02', '2025-03-22 14:24:42', '2025-03-22 14:24:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624705219010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A01-41-03', '2025-03-22 14:25:05', '2025-03-22 14:25:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624732803010000', 2, 1, 1, 'ASRS-0389', 'P3', 'A03-39-01', '2025-03-22 14:25:33', '2025-03-22 14:25:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624737000010000', 2, 1, 1, 'ASRS-1898', 'P3', 'A04-29-11', '2025-03-22 14:25:37', '2025-03-22 14:25:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624748105010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A01-42-02', '2025-03-22 14:25:48', '2025-03-22 14:25:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624789819010000', 2, 1, 1, 'ASRS-0364', 'P3', 'A02-33-11', '2025-03-22 14:26:30', '2025-03-22 14:26:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624800004010000', 2, 1, 1, 'ASRS-1901', 'P3', 'A04-30-10', '2025-03-22 14:26:40', '2025-03-22 14:26:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624825202010000', 2, 1, 1, 'ASRS-0349', 'P3', 'A04-31-09', '2025-03-22 14:27:05', '2025-03-22 14:27:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624842020010000', 2, 1, 1, 'ASRS-0344', 'P3', 'A02-34-10', '2025-03-22 14:27:22', '2025-03-22 14:27:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624859404010000', 2, 1, 1, 'ASRS-0339', 'P3', 'A02-35-09', '2025-03-22 14:27:39', '2025-03-22 14:27:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624881905010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A04-32-08', '2025-03-22 14:28:02', '2025-03-22 14:28:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624890020010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A02-36-08', '2025-03-22 14:28:10', '2025-03-22 14:28:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624893406010000', 2, 2, 1, 'ASRS-0371', 'A04-32-07', '', '2025-03-22 14:28:13', '2025-03-22 14:28:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624901101010000', 2, 1, 1, 'ASRS-1905', 'P3', 'A04-33-07', '2025-03-22 14:28:21', '2025-03-22 14:28:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742624953406010000', 2, 2, 1, 'ASRS-0378', 'A03-32-08', '', '2025-03-22 14:29:13', '2025-03-22 14:29:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742625117418010000', 2, 1, 1, 'ASRS-0371', 'P3', 'A02-37-07', '2025-03-22 14:31:57', '2025-03-22 14:31:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742625168406010000', 2, 1, 1, 'ASRS-0378', 'P3', 'A04-32-07', '2025-03-22 14:32:48', '2025-03-22 14:32:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742626926407010000', 2, 2, 9, 'ASRS-0371', 'A02-37-07', '', '2025-03-22 15:02:06', '2025-03-22 15:02:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742626949407010000', 2, 2, 9, 'ASRS-0362', 'A04-38-01', '', '2025-03-22 15:02:29', '2025-03-22 15:02:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742626971407010000', 2, 2, 9, 'ASRS-0270', 'A02-35-08', '', '2025-03-22 15:02:51', '2025-03-22 15:02:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742626996406010000', 2, 2, 9, 'ASRS-0348', 'A03-35-05', '', '2025-03-22 15:03:16', '2025-03-22 15:03:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627024410010000', 2, 2, 9, 'ASRS-0347', 'A01-37-07', '', '2025-03-22 15:03:44', '2025-03-22 15:03:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627049408010000', 2, 2, 9, 'ASRS-0378', 'A04-32-07', '', '2025-03-22 15:04:09', '2025-03-22 15:04:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627207227010000', 2, 1, 1, 'ASRS-0348', 'P3', 'A02-35-08', '2025-03-22 15:06:47', '2025-03-22 15:06:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627236328010000', 2, 1, 1, 'ASRS-0347', 'P3', 'A04-32-07', '2025-03-22 15:07:16', '2025-03-22 15:07:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627320406010000', 2, 2, 9, 'ASRS-0348', 'A02-35-08', '', '2025-03-22 15:08:40', '2025-03-22 15:08:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627344406010000', 2, 2, 9, 'ASRS-0347', 'A04-32-07', '', '2025-03-22 15:09:04', '2025-03-22 15:09:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627626341010000', 2, 1, 1, 'ASRS-0352', 'P3', 'A02-35-08', '2025-03-22 15:13:46', '2025-03-22 15:13:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627688140010000', 2, 1, 1, 'ASRS-0345', 'P3', 'A01-37-07', '2025-03-22 15:14:48', '2025-03-22 15:14:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627708843010000', 2, 1, 1, 'ASRS-0343', 'P3', 'A04-32-07', '2025-03-22 15:15:09', '2025-03-22 15:15:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742627769435010000', 2, 1, 1, 'ASRS-0335', 'P3', 'A02-37-07', '2025-03-22 15:16:09', '2025-03-22 15:16:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759107455010000', 2, 1, 1, 'ASRS-1713', 'P1', 'A02-38-06', '2025-03-24 03:45:07', '2025-03-24 03:45:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759309931010000', 2, 1, 1, 'ASRS-0545', 'P3', 'A02-39-05', '2025-03-24 03:48:30', '2025-03-24 03:48:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759334529010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A04-38-01', '2025-03-24 03:48:55', '2025-03-24 03:48:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759360344010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A02-40-04', '2025-03-24 03:49:20', '2025-03-24 03:49:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759364545010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-32-08', '2025-03-24 03:49:25', '2025-03-24 03:49:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759394545010000', 2, 1, 1, 'ASRS-1528', 'P3', 'A02-41-03', '2025-03-24 03:49:55', '2025-03-24 03:49:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759398743010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A03-35-05', '2025-03-24 03:49:59', '2025-03-24 03:49:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759423645010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A02-42-02', '2025-03-24 03:50:24', '2025-03-24 03:50:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759427842010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A01-34-11', '2025-03-24 03:50:28', '2025-03-24 03:50:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759444043010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-34-06', '2025-03-24 03:50:44', '2025-03-24 03:50:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759451825010000', 2, 1, 1, 'ASRS-0351', 'P3', 'A04-35-05', '2025-03-24 03:50:52', '2025-03-24 03:50:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759476140010000', 2, 1, 1, 'ASRS-0342', 'P3', 'A01-35-10', '2025-03-24 03:51:16', '2025-03-24 03:51:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759480348010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A01-36-09', '2025-03-24 03:51:20', '2025-03-24 03:51:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759499534010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A04-36-04', '2025-03-24 03:51:40', '2025-03-24 03:51:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759503727010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A04-37-03', '2025-03-24 03:51:44', '2025-03-24 03:51:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759531941010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A01-37-08', '2025-03-24 03:52:12', '2025-03-24 03:52:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759536145010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A04-38-02', '2025-03-24 03:52:16', '2025-03-24 03:52:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759570955010000', 2, 1, 1, 'ASRS-1023', 'P3', 'A01-38-07', '2025-03-24 03:52:51', '2025-03-24 03:52:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759575144010000', 2, 1, 1, 'ASRS-1899', 'P3', 'A01-39-06', '2025-03-24 03:52:55', '2025-03-24 03:52:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759618346010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A04-39-01', '2025-03-24 03:53:38', '2025-03-24 03:53:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759622586010000', 2, 1, 1, 'ASRS-0270', 'P3', 'A01-40-05', '2025-03-24 03:53:43', '2025-03-24 03:53:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759645631010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-30-11', '2025-03-24 03:54:06', '2025-03-24 03:54:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759660339010000', 2, 1, 1, 'ASRS-0284', 'P3', 'A03-31-10', '2025-03-24 03:54:20', '2025-03-24 03:54:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759679547010000', 2, 1, 1, 'ASRS-0523', 'P3', 'A01-41-04', '2025-03-24 03:54:40', '2025-03-24 03:54:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759683749010000', 2, 1, 1, 'ASRS-1180', 'P3', 'A03-32-09', '2025-03-24 03:54:44', '2025-03-24 03:54:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759703837010000', 2, 1, 1, 'ASRS-1030', 'P3', 'A01-42-03', '2025-03-24 03:55:04', '2025-03-24 03:55:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759708052010000', 2, 1, 1, 'ASRS-1249', 'P3', 'A03-33-08', '2025-03-24 03:55:08', '2025-03-24 03:55:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759724853010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A02-34-11', '2025-03-24 03:55:25', '2025-03-24 03:55:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759732056010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A03-34-07', '2025-03-24 03:55:32', '2025-03-24 03:55:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759748236010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A02-35-10', '2025-03-24 03:55:48', '2025-03-24 03:55:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759767156010000', 2, 1, 1, 'ASRS-0244', 'P3', 'A03-35-06', '2025-03-24 03:56:07', '2025-03-24 03:56:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759790240010000', 2, 1, 1, 'ASRS-0517', 'P3', 'A02-36-09', '2025-03-24 03:56:30', '2025-03-24 03:56:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759806760010000', 2, 1, 1, 'ASRS-1088', 'P3', 'A02-37-08', '2025-03-24 03:56:47', '2025-03-24 03:56:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759837939010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A03-36-05', '2025-03-24 03:57:18', '2025-03-24 03:57:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759844839010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A03-37-04', '2025-03-24 03:57:25', '2025-03-24 03:57:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759874838010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A02-38-07', '2025-03-24 03:57:55', '2025-03-24 03:57:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759906662010000', 2, 1, 1, 'ASRS-0525', 'P3', 'A03-38-03', '2025-03-24 03:58:27', '2025-03-24 03:58:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759914742010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-39-06', '2025-03-24 03:58:35', '2025-03-24 03:58:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759949840010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A03-39-02', '2025-03-24 03:59:10', '2025-03-24 03:59:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759954054010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-40-05', '2025-03-24 03:59:14', '2025-03-24 03:59:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742759992455010000', 2, 1, 1, 'ASRS-1025', 'P3', 'A03-40-01', '2025-03-24 03:59:52', '2025-03-24 03:59:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775439407010000', 2, 2, 1, 'ASRS-0315', 'A03-31-04', '', '2025-03-24 08:17:19', '2025-03-24 08:17:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775439407010001', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-24 08:17:19', '2025-03-24 08:17:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775486407010000', 2, 2, 1, 'ASRS-0313', 'A01-39-02', '', '2025-03-24 08:18:06', '2025-03-24 08:18:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775488407010000', 2, 2, 1, 'ASRS-0350', 'A04-34-06', '', '2025-03-24 08:18:08', '2025-03-24 08:18:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775540406010000', 2, 2, 1, 'ASRS-0304', 'A02-32-09', '', '2025-03-24 08:19:00', '2025-03-24 08:19:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775542406010000', 2, 2, 1, 'ASRS-0334', 'A03-37-04', '', '2025-03-24 08:19:02', '2025-03-24 08:19:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775591407010000', 2, 2, 1, 'ASRS-0302', 'A02-41-01', '', '2025-03-24 08:19:51', '2025-03-24 08:19:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775646409010000', 2, 2, 1, 'ASRS-0388', 'A01-42-02', '', '2025-03-24 08:20:46', '2025-03-24 08:20:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775893407010000', 2, 2, 1, 'ASRS-0520', 'A02-34-11', '', '2025-03-24 08:24:53', '2025-03-24 08:24:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775918384010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-34-06', '2025-03-24 08:25:18', '2025-03-24 08:25:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775925565010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A03-31-04', '2025-03-24 08:25:26', '2025-03-24 08:25:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775953481010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-39-02', '2025-03-24 08:25:53', '2025-03-24 08:25:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742775979268010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A04-34-06', '2025-03-24 08:26:19', '2025-03-24 08:26:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776008061010000', 2, 1, 1, 'ASRS-0302', 'P3', 'A02-32-09', '2025-03-24 08:26:48', '2025-03-24 08:26:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776234587010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-41-01', '2025-03-24 08:30:35', '2025-03-24 08:30:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776489278010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-42-02', '2025-03-24 08:34:49', '2025-03-24 08:34:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776520763010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A03-37-04', '2025-03-24 08:35:21', '2025-03-24 08:35:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776529406010000', 2, 2, 1, 'ASRS-0324', 'A01-29-07', '', '2025-03-24 08:35:29', '2025-03-24 08:35:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776529406010001', 2, 2, 1, 'ASRS-0329', 'A04-29-06', '', '2025-03-24 08:35:29', '2025-03-24 08:35:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776550479010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A02-34-11', '2025-03-24 08:35:50', '2025-03-24 08:35:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776597404010000', 2, 2, 1, 'ASRS-0340', 'A01-41-03', '', '2025-03-24 08:36:37', '2025-03-24 08:36:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776619407010000', 2, 2, 1, 'ASRS-0305', 'A04-31-05', '', '2025-03-24 08:36:59', '2025-03-24 08:37:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776677404010000', 2, 2, 1, 'ASRS-1027', 'A02-39-06', '', '2025-03-24 08:37:57', '2025-03-24 08:37:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776710673010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-29-07', '2025-03-24 08:38:31', '2025-03-24 08:38:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776733798010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A04-29-06', '2025-03-24 08:38:54', '2025-03-24 08:38:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776760483010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A01-41-03', '2025-03-24 08:39:20', '2025-03-24 08:39:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776790466010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-31-05', '2025-03-24 08:39:50', '2025-03-24 08:39:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776839407010000', 2, 2, 1, 'ASRS-0306', 'A01-31-08', '', '2025-03-24 08:40:39', '2025-03-24 08:40:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776839407010001', 2, 2, 1, 'ASRS-0314', 'A04-32-03', '', '2025-03-24 08:40:39', '2025-03-24 08:40:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776862466010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-39-06', '2025-03-24 08:41:02', '2025-03-24 08:41:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776885408010000', 2, 2, 1, 'ASRS-0392', 'A03-37-03', '', '2025-03-24 08:41:25', '2025-03-24 08:41:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776887407010000', 2, 2, 1, 'ASRS-0333', 'A02-39-01', '', '2025-03-24 08:41:27', '2025-03-24 08:41:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742776965406010000', 2, 2, 1, 'ASRS-1902', 'A02-36-08', '', '2025-03-24 08:42:45', '2025-03-24 08:42:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777018406010000', 2, 2, 1, 'ASRS-1526', 'A02-35-10', '', '2025-03-24 08:43:38', '2025-03-24 08:43:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777202087010000', 2, 1, 1, 'ASRS-0314', 'P3', 'A01-31-08', '2025-03-24 08:46:42', '2025-03-24 08:46:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777282476010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A02-39-01', '2025-03-24 08:48:02', '2025-03-24 08:48:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777319697010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A04-32-03', '2025-03-24 08:48:40', '2025-03-24 08:48:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777413889010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A02-36-08', '2025-03-24 08:50:14', '2025-03-24 08:50:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777463075010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A03-37-03', '2025-03-24 08:51:03', '2025-03-24 08:51:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777484407010000', 2, 2, 1, 'ASRS-0330', 'A02-37-03', '', '2025-03-24 08:51:24', '2025-03-24 08:51:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777508081010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A02-35-10', '2025-03-24 08:51:48', '2025-03-24 08:51:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777516796010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A02-41-04', '2025-03-24 08:51:57', '2025-03-24 08:51:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777530407010000', 2, 2, 1, 'ASRS-0328', 'A02-38-02', '', '2025-03-24 08:52:10', '2025-03-24 08:52:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777694080010000', 2, 1, 1, 'ASRS-0330', 'P3', 'A02-37-03', '2025-03-24 08:54:54', '2025-03-24 08:54:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777699406010000', 2, 2, 1, 'ASRS-1529', 'A02-41-04', '', '2025-03-24 08:54:59', '2025-03-24 08:55:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777720776010000', 2, 1, 1, 'ASRS-0328', 'P3', 'A04-30-11', '2025-03-24 08:55:21', '2025-03-24 08:55:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777839406010000', 2, 2, 1, 'ASRS-0316', 'A03-29-06', '', '2025-03-24 08:57:19', '2025-03-24 08:57:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777862377010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A02-38-02', '2025-03-24 08:57:42', '2025-03-24 08:57:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777884406010000', 2, 2, 1, 'ASRS-0331', 'A03-32-03', '', '2025-03-24 08:58:04', '2025-03-24 08:58:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777935407010000', 2, 2, 1, 'ASRS-0338', 'A04-32-08', '', '2025-03-24 08:58:55', '2025-03-24 08:58:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777962278010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-41-04', '2025-03-24 08:59:22', '2025-03-24 08:59:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742777988691010000', 2, 1, 1, 'ASRS-0528', 'P2', 'A03-29-06', '2025-03-24 08:59:49', '2025-03-24 08:59:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778032504010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A02-42-03', '2025-03-24 09:00:33', '2025-03-24 09:00:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778039407010000', 2, 2, 1, 'ASRS-0327', 'A04-31-04', '', '2025-03-24 09:00:39', '2025-03-24 09:00:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778039407010001', 2, 2, 1, 'ASRS-0274', 'A01-42-01', '', '2025-03-24 09:00:39', '2025-03-24 09:00:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778062479010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A03-32-03', '2025-03-24 09:01:02', '2025-03-24 09:01:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778179406010000', 2, 2, 1, 'ASRS-0528', 'A03-29-06', '', '2025-03-24 09:02:59', '2025-03-24 09:03:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778182795010000', 2, 1, 1, 'ASRS-0327', 'P3', 'A01-42-01', '2025-03-24 09:03:03', '2025-03-24 09:03:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778199600010000', 2, 1, 1, 'ASRS-0274', 'P3', 'A04-31-04', '2025-03-24 09:03:20', '2025-03-24 09:03:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778293781010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A01-35-11', '2025-03-24 09:04:54', '2025-03-24 09:04:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778358407010000', 2, 2, 1, 'ASRS-0528', 'A01-35-11', '', '2025-03-24 09:05:58', '2025-03-24 09:05:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778449406010000', 2, 2, 1, 'ASRS-1524', 'A04-36-04', '', '2025-03-24 09:07:29', '2025-03-24 09:07:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778468397010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A01-35-11', '2025-03-24 09:07:48', '2025-03-24 09:07:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778496406010000', 2, 2, 1, 'ASRS-0522', 'A03-39-02', '', '2025-03-24 09:08:16', '2025-03-24 09:08:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778588397010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A01-36-10', '2025-03-24 09:09:48', '2025-03-24 09:09:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778604405010000', 2, 2, 1, 'ASRS-0303', 'A03-31-06', '', '2025-03-24 09:10:04', '2025-03-24 09:10:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778625593010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A03-29-06', '2025-03-24 09:10:26', '2025-03-24 09:10:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778633403010000', 2, 1, 1, 'ASRS-0527', 'P2', 'A01-37-09', '2025-03-24 09:10:33', '2025-03-24 09:10:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778659499010000', 2, 1, 1, 'ASRS-1034', 'P2', 'A01-38-08', '2025-03-24 09:10:59', '2025-03-24 09:10:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778689797010000', 2, 1, 1, 'ASRS-1032', 'P2', 'A03-31-06', '2025-03-24 09:11:30', '2025-03-24 09:11:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778740193010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A01-39-07', '2025-03-24 09:12:20', '2025-03-24 09:12:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778809407010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-24 09:13:29', '2025-03-24 09:13:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778809407010001', 2, 2, 1, 'ASRS-0332', 'A03-31-04', '', '2025-03-24 09:13:29', '2025-03-24 09:13:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778853407010000', 2, 2, 1, 'ASRS-0313', 'A04-34-06', '', '2025-03-24 09:14:13', '2025-03-24 09:14:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778864407010000', 2, 2, 1, 'ASRS-0304', 'A01-42-02', '', '2025-03-24 09:14:24', '2025-03-24 09:14:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778905407010000', 2, 2, 1, 'ASRS-0388', 'A03-37-04', '', '2025-03-24 09:15:05', '2025-03-24 09:15:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778919407010000', 2, 2, 1, 'ASRS-0302', 'A02-32-09', '', '2025-03-24 09:15:19', '2025-03-24 09:15:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742778971408010000', 2, 2, 1, 'ASRS-0350', 'A01-39-02', '', '2025-03-24 09:16:11', '2025-03-24 09:16:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779026410010000', 2, 2, 1, 'ASRS-0520', 'A02-34-11', '', '2025-03-24 09:17:06', '2025-03-24 09:17:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779051597010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-24 09:17:32', '2025-03-24 09:17:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779078407010000', 2, 2, 1, 'ASRS-0334', 'A02-41-01', '', '2025-03-24 09:17:58', '2025-03-24 09:17:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779108286010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-31-04', '2025-03-24 09:18:28', '2025-03-24 09:18:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779138603010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A01-39-02', '2025-03-24 09:18:59', '2025-03-24 09:18:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779158407010000', 2, 2, 1, 'ASRS-0315', 'A03-31-04', '', '2025-03-24 09:19:18', '2025-03-24 09:19:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779180304010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A04-32-08', '2025-03-24 09:19:40', '2025-03-24 09:19:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779222906010000', 2, 1, 1, 'ASRS-0302', 'P3', 'A02-32-09', '2025-03-24 09:20:23', '2025-03-24 09:20:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779260689010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-31-04', '2025-03-24 09:21:01', '2025-03-24 09:21:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779374388010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A02-41-01', '2025-03-24 09:22:54', '2025-03-24 09:22:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779408304010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A04-34-06', '2025-03-24 09:23:28', '2025-03-24 09:23:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779509992010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-42-02', '2025-03-24 09:25:10', '2025-03-24 09:25:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779709406010000', 2, 2, 1, 'ASRS-0324', 'A01-29-07', '', '2025-03-24 09:28:29', '2025-03-24 09:28:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779709406010001', 2, 2, 1, 'ASRS-0329', 'A04-29-06', '', '2025-03-24 09:28:29', '2025-03-24 09:28:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779728421010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A02-34-11', '2025-03-24 09:28:48', '2025-03-24 09:28:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779755409010000', 2, 2, 1, 'ASRS-0340', 'A04-31-05', '', '2025-03-24 09:29:15', '2025-03-24 09:29:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779757404010000', 2, 2, 1, 'ASRS-0305', 'A01-41-03', '', '2025-03-24 09:29:17', '2025-03-24 09:29:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779838408010000', 2, 2, 1, 'ASRS-1027', 'A02-39-06', '', '2025-03-24 09:30:38', '2025-03-24 09:30:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779893406010000', 2, 2, 1, 'ASRS-1529', 'A02-38-02', '', '2025-03-24 09:31:33', '2025-03-24 09:31:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779911405010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A01-29-07', '2025-03-24 09:31:51', '2025-03-24 09:31:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779954623010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-29-06', '2025-03-24 09:32:35', '2025-03-24 09:32:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742779981915010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A02-38-02', '2025-03-24 09:33:02', '2025-03-24 09:33:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780015809010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-05', '2025-03-24 09:33:36', '2025-03-24 09:33:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780277405010000', 2, 2, 9, 'ASRS-0301', 'A01-32-11', '', '2025-03-24 09:37:57', '2025-03-24 09:37:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780299406010000', 2, 2, 9, 'ASRS-0274', 'A04-31-04', '', '2025-03-24 09:38:19', '2025-03-24 09:38:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780560924010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-32-11', '2025-03-24 09:42:41', '2025-03-24 09:42:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780596000010000', 2, 1, 1, 'ASRS-0348', 'P2', 'A04-31-04', '2025-03-24 09:43:16', '2025-03-24 09:43:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780600210010000', 2, 1, 1, 'ASRS-1261', 'P2', 'A01-41-03', '2025-03-24 09:43:20', '2025-03-24 09:43:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780614407010000', 2, 2, 1, 'ASRS-1027', 'A01-32-11', '', '2025-03-24 09:43:34', '2025-03-24 09:43:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780631410010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A02-39-06', '2025-03-24 09:43:51', '2025-03-24 09:43:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742780884407010000', 2, 2, 1, 'ASRS-1529', 'A02-39-06', '', '2025-03-24 09:48:04', '2025-03-24 09:48:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781019406010000', 2, 2, 1, 'ASRS-0306', 'A02-39-01', '', '2025-03-24 09:50:19', '2025-03-24 09:50:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781019407010000', 2, 2, 1, 'ASRS-0392', 'A04-32-03', '', '2025-03-24 09:50:19', '2025-03-24 09:50:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781040920010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-32-11', '2025-03-24 09:50:41', '2025-03-24 09:50:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781063406010000', 2, 2, 1, 'ASRS-1526', 'A03-37-03', '', '2025-03-24 09:51:03', '2025-03-24 09:51:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781067924010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A04-32-03', '2025-03-24 09:51:08', '2025-03-24 09:51:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781073406010000', 2, 2, 1, 'ASRS-0333', 'A02-36-08', '', '2025-03-24 09:51:13', '2025-03-24 09:51:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781151408010000', 2, 2, 1, 'ASRS-0314', 'A01-31-08', '', '2025-03-24 09:52:31', '2025-03-24 09:52:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781196003010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A02-39-01', '2025-03-24 09:53:16', '2025-03-24 09:53:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781202405010000', 2, 2, 1, 'ASRS-1902', 'A02-35-10', '', '2025-03-24 09:53:22', '2025-03-24 09:53:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781255406010000', 2, 2, 1, 'ASRS-0528', 'A01-35-11', '', '2025-03-24 09:54:15', '2025-03-24 09:54:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781330424010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A01-31-08', '2025-03-24 09:55:30', '2025-03-24 09:55:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781514632010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A02-36-08', '2025-03-24 09:58:35', '2025-03-24 09:58:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781561139010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A03-37-03', '2025-03-24 09:59:21', '2025-03-24 09:59:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781606710010000', 2, 1, 1, 'ASRS-0314', 'P3', 'A02-35-10', '2025-03-24 10:00:07', '2025-03-24 10:00:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781656211010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-36-04', '2025-03-24 10:00:56', '2025-03-24 10:00:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781704407010000', 2, 2, 1, 'ASRS-0330', 'A02-37-03', '', '2025-03-24 10:01:44', '2025-03-24 10:01:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781704407010001', 2, 2, 1, 'ASRS-0328', 'A04-30-11', '', '2025-03-24 10:01:44', '2025-03-24 10:01:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781725523010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A02-39-06', '2025-03-24 10:02:06', '2025-03-24 10:02:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781893523010000', 2, 1, 1, 'ASRS-0328', 'P3', 'A02-37-03', '2025-03-24 10:04:54', '2025-03-24 10:04:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781899409010000', 2, 2, 1, 'ASRS-0316', 'A02-41-04', '', '2025-03-24 10:04:59', '2025-03-24 10:05:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781899409010001', 2, 2, 1, 'ASRS-0338', 'A03-32-03', '', '2025-03-24 10:04:59', '2025-03-24 10:05:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781922329010000', 2, 1, 1, 'ASRS-0330', 'P3', 'A03-37-04', '2025-03-24 10:05:22', '2025-03-24 10:05:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742781947406010000', 2, 2, 1, 'ASRS-0331', 'A02-42-03', '', '2025-03-24 10:05:47', '2025-03-24 10:05:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782027407010000', 2, 2, 9, 'ASRS-0339', 'A02-35-09', '', '2025-03-24 10:07:07', '2025-03-24 10:07:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782078337010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A02-41-04', '2025-03-24 10:07:58', '2025-03-24 10:07:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782117031010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A03-32-03', '2025-03-24 10:08:37', '2025-03-24 10:08:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782221711010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A02-35-09', '2025-03-24 10:10:22', '2025-03-24 10:10:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782266408010000', 2, 2, 1, 'ASRS-0327', 'A01-42-01', '', '2025-03-24 10:11:06', '2025-03-24 10:11:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782266408010001', 2, 2, 1, 'ASRS-0348', 'A04-31-04', '', '2025-03-24 10:11:06', '2025-03-24 10:11:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782290725010000', 2, 1, 1, 'ASRS-0339', 'P3', 'A03-39-02', '2025-03-24 10:11:31', '2025-03-24 10:11:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782479406010000', 2, 2, 1, 'ASRS-0337', 'A01-36-09', '', '2025-03-24 10:14:39', '2025-03-24 10:14:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782498313010000', 2, 1, 1, 'ASRS-0327', 'P3', 'A01-42-01', '2025-03-24 10:14:58', '2025-03-24 10:14:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782594407010000', 2, 2, 1, 'ASRS-1524', 'A01-36-10', '', '2025-03-24 10:16:34', '2025-03-24 10:16:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782594407010001', 2, 2, 1, 'ASRS-0522', 'A03-29-06', '', '2025-03-24 10:16:34', '2025-03-24 10:16:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782617714010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A01-36-09', '2025-03-24 10:16:58', '2025-03-24 10:16:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782749135010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A02-42-03', '2025-03-24 10:19:09', '2025-03-24 10:19:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782754404010000', 2, 2, 1, 'ASRS-0303', 'A01-39-07', '', '2025-03-24 10:19:14', '2025-03-24 10:19:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782789033010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A03-29-06', '2025-03-24 10:19:49', '2025-03-24 10:19:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742782918924010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A01-35-11', '2025-03-24 10:21:59', '2025-03-24 10:21:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742789877404010000', 2, 2, 9, 'ASRS-0376', 'A03-33-07', '', '2025-03-24 12:17:57', '2025-03-24 12:17:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742789906406010000', 2, 2, 9, 'ASRS-0364', 'A02-33-11', '', '2025-03-24 12:18:26', '2025-03-24 12:18:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742790004400010000', 2, 1, 1, 'ASRS-0376', 'P2', 'A02-33-11', '2025-03-24 12:20:04', '2025-03-24 12:20:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794049407010000', 2, 2, 1, 'ASRS-0271', 'A02-33-10', '', '2025-03-24 13:27:29', '2025-03-24 13:27:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794049407010001', 2, 2, 1, 'ASRS-0350', 'A03-31-04', '', '2025-03-24 13:27:29', '2025-03-24 13:27:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794207728010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-24 13:30:08', '2025-03-24 13:30:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794224404010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-24 13:30:24', '2025-03-24 13:30:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794224404010001', 2, 2, 1, 'ASRS-0386', 'A04-39-01', '', '2025-03-24 13:30:24', '2025-03-24 13:30:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794244031010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A03-31-04', '2025-03-24 13:30:44', '2025-03-24 13:30:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794403915010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-03', '2025-03-24 13:33:24', '2025-03-24 13:33:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794441136010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A04-31-04', '2025-03-24 13:34:01', '2025-03-24 13:34:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794479406010000', 2, 2, 1, 'ASRS-0271', 'A03-31-04', '', '2025-03-24 13:34:39', '2025-03-24 13:34:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794479406010001', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-24 13:34:39', '2025-03-24 13:34:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794619901010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-24 13:37:00', '2025-03-24 13:37:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794639406010000', 2, 2, 1, 'ASRS-0298', 'A04-31-04', '', '2025-03-24 13:37:19', '2025-03-24 13:37:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794639406010001', 2, 2, 1, 'ASRS-0386', 'A01-36-03', '', '2025-03-24 13:37:19', '2025-03-24 13:37:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794659220010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A03-31-04', '2025-03-24 13:37:39', '2025-03-24 13:37:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794794499010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-24 13:39:54', '2025-03-24 13:39:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794849999010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-24 13:40:50', '2025-03-24 13:40:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794914406010000', 2, 2, 1, 'ASRS-0271', 'A03-31-04', '', '2025-03-24 13:41:54', '2025-03-24 13:41:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742794914406010001', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-24 13:41:54', '2025-03-24 13:41:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795069897010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A02-33-10', '2025-03-24 13:44:30', '2025-03-24 13:44:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795094407010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-24 13:44:54', '2025-03-24 13:44:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795113714010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-31-04', '2025-03-24 13:45:14', '2025-03-24 13:45:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795165405010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-24 13:46:05', '2025-03-24 13:46:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795266112010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-24 13:47:46', '2025-03-24 13:47:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795320127010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-24 13:48:40', '2025-03-24 13:48:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795334406010000', 2, 2, 1, 'ASRS-0271', 'A02-33-10', '', '2025-03-24 13:48:54', '2025-03-24 13:48:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795334406010001', 2, 2, 1, 'ASRS-0350', 'A03-31-04', '', '2025-03-24 13:48:54', '2025-03-24 13:48:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795494428010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-24 13:51:34', '2025-03-24 13:51:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795504406010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-24 13:51:44', '2025-03-24 13:51:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795527424010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A03-31-04', '2025-03-24 13:52:07', '2025-03-24 13:52:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795558407010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-24 13:52:38', '2025-03-24 13:52:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795694815010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-24 13:54:55', '2025-03-24 13:54:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795746440010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-24 13:55:46', '2025-03-24 13:55:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742795799407010000', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-24 13:56:39', '2025-03-24 13:56:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742796359404010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-24 14:05:59', '2025-03-24 14:06:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742796378226010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-24 14:06:18', '2025-03-24 14:06:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742796768850010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-24 14:12:49', '2025-03-24 14:12:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742863595204010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-39-07', '2025-03-25 08:46:35', '2025-03-25 08:46:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742863607605010000', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-25 08:46:48', '2025-03-25 08:46:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742863882608010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-25 08:51:23', '2025-03-25 08:51:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742863903896010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-25 08:51:44', '2025-03-25 08:51:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864019067010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-25 08:53:39', '2025-03-25 08:53:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864042604010000', 2, 2, 1, 'ASRS-0271', 'A03-31-04', '', '2025-03-25 08:54:03', '2025-03-25 08:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864042604010001', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-25 08:54:03', '2025-03-25 08:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864174486010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A02-33-10', '2025-03-25 08:56:14', '2025-03-25 08:56:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864197604010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-25 08:56:38', '2025-03-25 08:56:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864216469010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-31-04', '2025-03-25 08:56:56', '2025-03-25 08:56:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864269609010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-25 08:57:50', '2025-03-25 08:57:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864364091010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-25 08:59:24', '2025-03-25 08:59:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864417778010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-25 09:00:18', '2025-03-25 09:00:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864467605010000', 2, 2, 1, 'ASRS-0271', 'A02-33-10', '', '2025-03-25 09:01:08', '2025-03-25 09:01:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864467605010001', 2, 2, 1, 'ASRS-0350', 'A03-31-04', '', '2025-03-25 09:01:08', '2025-03-25 09:01:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864588471010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-25 09:03:08', '2025-03-25 09:03:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864592605010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-25 09:03:13', '2025-03-25 09:03:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864615815010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A03-31-04', '2025-03-25 09:03:36', '2025-03-25 09:03:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864645603010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-25 09:04:06', '2025-03-25 09:04:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864727384010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-25 09:05:27', '2025-03-25 09:05:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864812867010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-25 09:06:53', '2025-03-25 09:06:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864852606010000', 2, 2, 1, 'ASRS-0271', 'A03-31-04', '', '2025-03-25 09:07:33', '2025-03-25 09:07:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864852606010001', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-25 09:07:33', '2025-03-25 09:07:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864986571010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A02-33-10', '2025-03-25 09:09:47', '2025-03-25 09:09:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742864992605010000', 2, 2, 1, 'ASRS-0298', 'A01-36-03', '', '2025-03-25 09:09:53', '2025-03-25 09:09:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865015069010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-31-04', '2025-03-25 09:10:15', '2025-03-25 09:10:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865045603010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-25 09:10:46', '2025-03-25 09:10:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865122605010000', 2, 2, 1, 'ASRS-1531', 'A01-39-07', '', '2025-03-25 09:12:03', '2025-03-25 09:12:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865187314010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-36-03', '2025-03-25 09:13:07', '2025-03-25 09:13:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865900981010000', 2, 1, 1, 'ASRS-1531', 'P2', 'A01-36-10', '2025-03-25 09:25:01', '2025-03-25 09:25:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742865963604010000', 2, 2, 1, 'ASRS-1531', 'A01-36-10', '', '2025-03-25 09:26:04', '2025-03-25 09:26:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866004604010000', 2, 2, 9, 'ASRS-0298', 'A01-36-03', '', '2025-03-25 09:26:45', '2025-03-25 09:26:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866004604010001', 2, 2, 9, 'ASRS-1180', 'A03-32-09', '', '2025-03-25 09:26:45', '2025-03-25 09:26:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866092084010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-36-03', '2025-03-25 09:28:12', '2025-03-25 09:28:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866107605010000', 2, 2, 1, 'ASRS-0271', 'A02-33-10', '', '2025-03-25 09:28:28', '2025-03-25 09:28:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866107605010001', 2, 2, 1, 'ASRS-0350', 'A03-31-04', '', '2025-03-25 09:28:28', '2025-03-25 09:28:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866242693010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-33-10', '2025-03-25 09:30:43', '2025-03-25 09:30:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866252605010000', 2, 2, 1, 'ASRS-1531', 'A01-36-03', '', '2025-03-25 09:30:53', '2025-03-25 09:30:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866274192010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A03-31-04', '2025-03-25 09:31:14', '2025-03-25 09:31:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866406494010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-36-03', '2025-03-25 09:33:26', '2025-03-25 09:33:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866553208010000', 2, 1, 1, 'ASRS-0298', 'P2', 'A01-36-10', '2025-03-25 09:35:53', '2025-03-25 09:35:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866616605010000', 2, 2, 1, 'ASRS-0298', 'A01-36-10', '', '2025-03-25 09:36:57', '2025-03-25 09:36:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866883200010000', 2, 1, 1, 'ASRS-0386', 'P2', 'A01-36-10', '2025-03-25 09:41:23', '2025-03-25 09:41:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742866947603010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-25 09:42:28', '2025-03-25 09:42:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867112086010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-36-10', '2025-03-25 09:45:12', '2025-03-25 09:45:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867257608010000', 2, 2, 1, 'ASRS-0304', 'A04-32-08', '', '2025-03-25 09:47:38', '2025-03-25 09:47:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867257608010001', 2, 2, 1, 'ASRS-0340', 'A02-38-02', '', '2025-03-25 09:47:38', '2025-03-25 09:47:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867302605010000', 2, 2, 1, 'ASRS-0299', 'A03-35-04', '', '2025-03-25 09:48:23', '2025-03-25 09:48:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867355604010000', 2, 2, 1, 'ASRS-0250', 'A03-38-01', '', '2025-03-25 09:49:16', '2025-03-25 09:49:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867420785010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A02-38-02', '2025-03-25 09:50:21', '2025-03-25 09:50:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867445101010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-31-04', '2025-03-25 09:50:45', '2025-03-25 09:50:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867480195010000', 2, 1, 1, 'ASRS-0299', 'P3', 'A01-39-07', '2025-03-25 09:51:20', '2025-03-25 09:51:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867492605010000', 2, 2, 1, 'ASRS-0297', 'A01-33-10', '', '2025-03-25 09:51:33', '2025-03-25 09:51:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867492605010001', 2, 2, 1, 'ASRS-1189', 'A03-34-07', '', '2025-03-25 09:51:33', '2025-03-25 09:51:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867512300010000', 2, 1, 1, 'ASRS-0250', 'P3', 'A03-35-04', '2025-03-25 09:51:52', '2025-03-25 09:51:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867686902010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A01-33-10', '2025-03-25 09:54:47', '2025-03-25 09:54:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867687609010000', 2, 2, 1, 'ASRS-0340', 'A04-31-04', '', '2025-03-25 09:54:48', '2025-03-25 09:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867687609010001', 2, 2, 1, 'ASRS-1531', 'A01-36-03', '', '2025-03-25 09:54:48', '2025-03-25 09:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867754394010000', 2, 1, 1, 'ASRS-0297', 'P3', 'A04-31-04', '2025-03-25 09:55:54', '2025-03-25 09:55:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867838091010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A01-36-03', '2025-03-25 09:57:18', '2025-03-25 09:57:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742867868418010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A03-38-01', '2025-03-25 09:57:48', '2025-03-25 09:57:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742868203605010000', 2, 2, 9, 'ASRS-1529', 'A04-32-03', '', '2025-03-25 10:03:24', '2025-03-25 10:03:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742868511608010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A01-40-06', '2025-03-25 10:08:32', '2025-03-25 10:08:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742868779605010000', 2, 2, 9, 'ASRS-0303', 'A01-35-11', '', '2025-03-25 10:13:00', '2025-03-25 10:13:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742868945602010000', 2, 2, 9, 'ASRS-0329', 'A01-29-07', '', '2025-03-25 10:15:46', '2025-03-25 10:15:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742868995608010000', 2, 2, 9, 'ASRS-0331', 'A02-35-09', '', '2025-03-25 10:16:36', '2025-03-25 10:16:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869007605010000', 2, 2, 9, 'ASRS-0330', 'A03-37-04', '', '2025-03-25 10:16:48', '2025-03-25 10:16:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869047604010000', 2, 2, 9, 'ASRS-0328', 'A02-37-03', '', '2025-03-25 10:17:28', '2025-03-25 10:17:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869059604010000', 2, 2, 9, 'ASRS-0273', 'A04-31-08', '', '2025-03-25 10:17:40', '2025-03-25 10:17:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869100604010000', 2, 2, 9, 'ASRS-0327', 'A01-42-01', '', '2025-03-25 10:18:21', '2025-03-25 10:18:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869328604010000', 2, 2, 9, 'ASRS-0272', 'A02-32-11', '', '2025-03-25 10:22:09', '2025-03-25 10:22:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869379608010000', 2, 2, 9, 'ASRS-0314', 'A02-35-10', '', '2025-03-25 10:23:00', '2025-03-25 10:23:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869431605010000', 2, 2, 9, 'ASRS-0302', 'A02-32-09', '', '2025-03-25 10:23:52', '2025-03-25 10:23:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869442518010000', 2, 1, 1, 'ASRS-0364', 'P2', 'A01-29-07', '2025-03-25 10:24:03', '2025-03-25 10:24:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869829604010000', 2, 2, 1, 'ASRS-0364', 'A01-29-07', '', '2025-03-25 10:30:30', '2025-03-25 10:30:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869981604010000', 2, 2, 1, 'ASRS-0519', 'A02-40-05', '', '2025-03-25 10:33:02', '2025-03-25 10:33:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742869981604010001', 2, 2, 1, 'ASRS-1025', 'A03-40-01', '', '2025-03-25 10:33:02', '2025-03-25 10:33:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870035603010000', 2, 2, 1, 'ASRS-1221', 'A03-32-08', '', '2025-03-25 10:33:56', '2025-03-25 10:33:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870037605010000', 2, 2, 1, 'ASRS-0337', 'A01-36-09', '', '2025-03-25 10:33:58', '2025-03-25 10:33:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870090603010000', 2, 2, 1, 'ASRS-1436', 'A02-40-04', '', '2025-03-25 10:34:51', '2025-03-25 10:34:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870239606010000', 2, 1, 1, 'ASRS-1025', 'P2', 'A01-29-07', '2025-03-25 10:37:20', '2025-03-25 10:37:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870273235010000', 2, 1, 1, 'ASRS-1221', 'P2', 'A04-32-03', '2025-03-25 10:37:53', '2025-03-25 10:37:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870373102010000', 2, 1, 1, 'ASRS-1436', 'P2', 'A02-37-03', '2025-03-25 10:39:33', '2025-03-25 10:39:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870442426010000', 2, 1, 1, 'ASRS-0337', 'P2', 'A02-32-09', '2025-03-25 10:40:42', '2025-03-25 10:40:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870467617010000', 2, 1, 1, 'ASRS-0519', 'P2', 'A04-31-08', '2025-03-25 10:41:08', '2025-03-25 10:41:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870670603010000', 2, 2, 1, 'ASRS-1088', 'A02-37-08', '', '2025-03-25 10:44:31', '2025-03-25 10:44:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870670603010001', 2, 2, 1, 'ASRS-1032', 'A03-31-06', '', '2025-03-25 10:44:31', '2025-03-25 10:44:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870717605010000', 2, 2, 1, 'ASRS-1031', 'A02-42-02', '', '2025-03-25 10:45:18', '2025-03-25 10:45:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870884894010000', 2, 1, 1, 'ASRS-0364', 'P2', 'A01-42-01', '2025-03-25 10:48:05', '2025-03-25 10:48:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742870966195010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A02-32-11', '2025-03-25 10:49:26', '2025-03-25 10:49:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742871039704010000', 2, 1, 1, 'ASRS-1088', 'P2', 'A03-31-06', '2025-03-25 10:50:40', '2025-03-25 10:50:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742871071515010000', 2, 1, 1, 'ASRS-1032', 'P2', 'A02-35-09', '2025-03-25 10:51:12', '2025-03-25 10:51:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742871100933010000', 2, 1, 1, 'ASRS-0274', 'P2', 'A03-32-08', '2025-03-25 10:51:41', '2025-03-25 10:51:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742879818606010000', 2, 2, 9, 'ASRS-0341', 'A03-36-04', '', '2025-03-25 13:16:59', '2025-03-25 13:17:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742879831605010000', 2, 2, 9, 'ASRS-0346', 'A01-36-08', '', '2025-03-25 13:17:12', '2025-03-25 13:17:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742879964494010000', 2, 1, 1, 'ASRS-0341', 'P3', 'A03-33-07', '2025-03-25 13:19:24', '2025-03-25 13:19:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742880406090010000', 2, 1, 1, 'ASRS-0346', 'P3', 'A01-36-08', '2025-03-25 13:26:46', '2025-03-25 13:26:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742882917605010000', 2, 2, 1, 'ASRS-0315', 'A02-34-11', '', '2025-03-25 14:08:38', '2025-03-25 14:08:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742882917605010001', 2, 2, 1, 'ASRS-0520', 'A04-34-06', '', '2025-03-25 14:08:38', '2025-03-25 14:08:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742882963605010000', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-25 14:09:24', '2025-03-25 14:09:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883015602010000', 2, 2, 1, 'ASRS-0313', 'A01-39-02', '', '2025-03-25 14:10:16', '2025-03-25 14:10:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883069605010000', 2, 2, 1, 'ASRS-0304', 'A02-38-02', '', '2025-03-25 14:11:10', '2025-03-25 14:11:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883123605010000', 2, 2, 1, 'ASRS-0334', 'A01-42-02', '', '2025-03-25 14:12:04', '2025-03-25 14:12:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883262122010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-34-06', '2025-03-25 14:14:22', '2025-03-25 14:14:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883284634010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-36-04', '2025-03-25 14:14:45', '2025-03-25 14:14:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883295747010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A02-38-02', '2025-03-25 14:14:56', '2025-03-25 14:14:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883311031010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A04-32-08', '2025-03-25 14:15:11', '2025-03-25 14:15:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883332605010000', 2, 2, 1, 'ASRS-0388', 'A02-41-01', '', '2025-03-25 14:15:33', '2025-03-25 14:15:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883335348010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-39-02', '2025-03-25 14:15:35', '2025-03-25 14:15:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883355415010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A04-34-06', '2025-03-25 14:15:55', '2025-03-25 14:15:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883404611010000', 2, 2, 1, 'ASRS-1436', 'A02-37-03', '', '2025-03-25 14:16:45', '2025-03-25 14:16:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883484605010000', 2, 2, 1, 'ASRS-0350', 'A02-33-10', '', '2025-03-25 14:18:05', '2025-03-25 14:18:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883486213010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A02-37-03', '2025-03-25 14:18:06', '2025-03-25 14:18:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883536604010000', 2, 2, 1, 'ASRS-0334', 'A01-39-02', '', '2025-03-25 14:18:57', '2025-03-25 14:18:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883567214010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A04-39-01', '2025-03-25 14:19:27', '2025-03-25 14:19:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883617934010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-39-02', '2025-03-25 14:20:18', '2025-03-25 14:20:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883677604010000', 2, 2, 1, 'ASRS-0305', 'A04-31-05', '', '2025-03-25 14:21:18', '2025-03-25 14:21:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883677604010001', 2, 2, 1, 'ASRS-0340', 'A01-36-03', '', '2025-03-25 14:21:18', '2025-03-25 14:21:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883699219010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-41-01', '2025-03-25 14:21:39', '2025-03-25 14:21:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883722605010000', 2, 2, 1, 'ASRS-1027', 'A01-32-11', '', '2025-03-25 14:22:03', '2025-03-25 14:22:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883799131010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A01-36-03', '2025-03-25 14:23:19', '2025-03-25 14:23:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883803604010000', 2, 2, 1, 'ASRS-1032', 'A02-35-09', '', '2025-03-25 14:23:24', '2025-03-25 14:23:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883822237010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-31-05', '2025-03-25 14:23:42', '2025-03-25 14:23:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883886126010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A03-32-09', '2025-03-25 14:24:46', '2025-03-25 14:24:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883912604010000', 2, 2, 1, 'ASRS-0324', 'A04-29-06', '', '2025-03-25 14:25:13', '2025-03-25 14:25:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883912604010001', 2, 2, 1, 'ASRS-0392', 'A02-39-01', '', '2025-03-25 14:25:13', '2025-03-25 14:25:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883936219010000', 2, 1, 1, 'ASRS-1032', 'P3', 'A01-32-11', '2025-03-25 14:25:36', '2025-03-25 14:25:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883959605010000', 2, 2, 1, 'ASRS-1526', 'A02-36-08', '', '2025-03-25 14:26:00', '2025-03-25 14:26:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742883981605010000', 2, 2, 1, 'ASRS-0333', 'A03-37-03', '', '2025-03-25 14:26:22', '2025-03-25 14:26:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884034605010000', 2, 2, 1, 'ASRS-1902', 'A04-36-04', '', '2025-03-25 14:27:15', '2025-03-25 14:27:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884036604010000', 2, 2, 1, 'ASRS-1529', 'A01-40-06', '', '2025-03-25 14:27:17', '2025-03-25 14:27:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884040040010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A02-39-01', '2025-03-25 14:27:20', '2025-03-25 14:27:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884059226010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-29-06', '2025-03-25 14:27:39', '2025-03-25 14:27:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884086605010000', 2, 2, 1, 'ASRS-1027', 'A03-32-09', '', '2025-03-25 14:28:07', '2025-03-25 14:28:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884090604010000', 2, 2, 1, 'ASRS-0528', 'A02-39-06', '', '2025-03-25 14:28:11', '2025-03-25 14:28:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884109325010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A02-33-10', '2025-03-25 14:28:29', '2025-03-25 14:28:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884133622010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A03-37-03', '2025-03-25 14:28:54', '2025-03-25 14:28:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884166918010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A01-42-02', '2025-03-25 14:29:27', '2025-03-25 14:29:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884189118010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A04-36-04', '2025-03-25 14:29:49', '2025-03-25 14:29:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884237605010000', 2, 2, 1, 'ASRS-0306', 'A01-31-08', '', '2025-03-25 14:30:38', '2025-03-25 14:30:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884237605010001', 2, 2, 1, 'ASRS-0316', 'A03-32-03', '', '2025-03-25 14:30:38', '2025-03-25 14:30:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884239825010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-35-09', '2025-03-25 14:30:40', '2025-03-25 14:30:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884261144010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A03-32-09', '2025-03-25 14:31:01', '2025-03-25 14:31:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884287605010000', 2, 2, 1, 'ASRS-1221', 'A04-32-03', '', '2025-03-25 14:31:28', '2025-03-25 14:31:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884297604010000', 2, 2, 1, 'ASRS-0338', 'A02-41-04', '', '2025-03-25 14:31:38', '2025-03-25 14:31:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884366139010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A01-31-08', '2025-03-25 14:32:46', '2025-03-25 14:32:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884385350010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A03-32-03', '2025-03-25 14:33:05', '2025-03-25 14:33:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884442604010000', 2, 2, 1, 'ASRS-0519', 'A04-31-08', '', '2025-03-25 14:34:03', '2025-03-25 14:34:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884442604010001', 2, 2, 1, 'ASRS-1025', 'A01-29-07', '', '2025-03-25 14:34:03', '2025-03-25 14:34:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884447737010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A02-36-08', '2025-03-25 14:34:08', '2025-03-25 14:34:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884462724010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A04-32-03', '2025-03-25 14:34:23', '2025-03-25 14:34:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884557604010000', 2, 2, 1, 'ASRS-0318', 'A01-33-06', '', '2025-03-25 14:35:58', '2025-03-25 14:35:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884560823010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A01-29-07', '2025-03-25 14:36:01', '2025-03-25 14:36:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884576440010000', 2, 1, 1, 'ASRS-1025', 'P3', 'A04-31-08', '2025-03-25 14:36:16', '2025-03-25 14:36:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884602604010000', 2, 2, 1, 'ASRS-1031', 'A02-32-11', '', '2025-03-25 14:36:43', '2025-03-25 14:36:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884692536010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A01-33-06', '2025-03-25 14:38:13', '2025-03-25 14:38:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884727605010000', 2, 2, 1, 'ASRS-0337', 'A02-32-09', '', '2025-03-25 14:38:48', '2025-03-25 14:38:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884727605010001', 2, 2, 1, 'ASRS-1524', 'A03-29-06', '', '2025-03-25 14:38:48', '2025-03-25 14:38:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884750720010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A03-34-07', '2025-03-25 14:39:11', '2025-03-25 14:39:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884852604010000', 2, 2, 1, 'ASRS-1088', 'A03-31-06', '', '2025-03-25 14:40:53', '2025-03-25 14:40:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884852604010001', 2, 2, 1, 'ASRS-0522', 'A02-42-03', '', '2025-03-25 14:40:53', '2025-03-25 14:40:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884859632010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A02-32-09', '2025-03-25 14:41:00', '2025-03-25 14:41:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884874930010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A03-29-06', '2025-03-25 14:41:15', '2025-03-25 14:41:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884978114010000', 2, 1, 1, 'ASRS-1088', 'P3', 'A02-32-11', '2025-03-25 14:42:58', '2025-03-25 14:42:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742884992539010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A03-31-06', '2025-03-25 14:43:13', '2025-03-25 14:43:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885082605010000', 2, 2, 1, 'ASRS-0315', 'A03-36-04', '', '2025-03-25 14:44:43', '2025-03-25 14:44:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885082605010001', 2, 2, 1, 'ASRS-0332', 'A02-38-02', '', '2025-03-25 14:44:43', '2025-03-25 14:44:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885128604010000', 2, 2, 1, 'ASRS-0313', 'A04-32-08', '', '2025-03-25 14:45:29', '2025-03-25 14:45:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885130602010000', 2, 2, 1, 'ASRS-0388', 'A02-37-03', '', '2025-03-25 14:45:31', '2025-03-25 14:45:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885179605010000', 2, 2, 1, 'ASRS-0304', 'A04-34-06', '', '2025-03-25 14:46:20', '2025-03-25 14:46:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885184604010000', 2, 2, 1, 'ASRS-0520', 'A01-34-06', '', '2025-03-25 14:46:25', '2025-03-25 14:46:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885231605010000', 2, 2, 1, 'ASRS-1900', 'A04-38-02', '', '2025-03-25 14:47:12', '2025-03-25 14:47:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885236605010000', 2, 2, 1, 'ASRS-0334', 'A02-41-01', '', '2025-03-25 14:47:17', '2025-03-25 14:47:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885240321010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-34-06', '2025-03-25 14:47:20', '2025-03-25 14:47:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885277536010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A03-36-04', '2025-03-25 14:47:58', '2025-03-25 14:47:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885291338010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A02-37-03', '2025-03-25 14:48:11', '2025-03-25 14:48:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885326122010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A04-32-08', '2025-03-25 14:48:46', '2025-03-25 14:48:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885368420010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A02-38-02', '2025-03-25 14:49:28', '2025-03-25 14:49:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885390623010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A04-34-06', '2025-03-25 14:49:51', '2025-03-25 14:49:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885417031010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A02-41-01', '2025-03-25 14:50:17', '2025-03-25 14:50:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885447604010000', 2, 2, 1, 'ASRS-1436', 'A04-39-01', '', '2025-03-25 14:50:48', '2025-03-25 14:50:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885447604010001', 2, 2, 1, 'ASRS-0350', 'A01-39-02', '', '2025-03-25 14:50:48', '2025-03-25 14:50:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885471325010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-38-02', '2025-03-25 14:51:11', '2025-03-25 14:51:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885535602010000', 2, 2, 1, 'ASRS-0384', 'A02-38-07', '', '2025-03-25 14:52:16', '2025-03-25 14:52:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885589605010000', 2, 2, 1, 'ASRS-1027', 'A02-35-09', '', '2025-03-25 14:53:10', '2025-03-25 14:53:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885607228010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A01-39-02', '2025-03-25 14:53:27', '2025-03-25 14:53:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885647440010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-39-01', '2025-03-25 14:54:07', '2025-03-25 14:54:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885693946010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A02-35-09', '2025-03-25 14:54:54', '2025-03-25 14:54:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885737605010000', 2, 2, 1, 'ASRS-0324', 'A04-29-06', '', '2025-03-25 14:55:38', '2025-03-25 14:55:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885737606010000', 2, 2, 1, 'ASRS-0305', 'A01-36-03', '', '2025-03-25 14:55:38', '2025-03-25 14:55:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885760537010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A03-37-04', '2025-03-25 14:56:01', '2025-03-25 14:56:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885784604010000', 2, 2, 1, 'ASRS-0340', 'A04-31-05', '', '2025-03-25 14:56:25', '2025-03-25 14:56:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885860604010000', 2, 2, 1, 'ASRS-0392', 'A02-39-01', '', '2025-03-25 14:57:41', '2025-03-25 14:57:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885862605010000', 2, 2, 1, 'ASRS-0336', 'A04-37-03', '', '2025-03-25 14:57:43', '2025-03-25 14:57:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885881444010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-36-03', '2025-03-25 14:58:01', '2025-03-25 14:58:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885915605010000', 2, 2, 1, 'ASRS-0517', 'A02-36-09', '', '2025-03-25 14:58:36', '2025-03-25 14:58:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885917606010000', 2, 2, 1, 'ASRS-1027', 'A03-37-04', '', '2025-03-25 14:58:38', '2025-03-25 14:58:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885946828010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-29-06', '2025-03-25 14:59:07', '2025-03-25 14:59:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885970604010000', 2, 2, 1, 'ASRS-1529', 'A04-36-04', '', '2025-03-25 14:59:31', '2025-03-25 14:59:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742885971143010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A02-39-01', '2025-03-25 14:59:31', '2025-03-25 14:59:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886041349010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-40-04', '2025-03-25 15:00:41', '2025-03-25 15:00:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886079433010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A04-31-05', '2025-03-25 15:01:19', '2025-03-25 15:01:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886099846010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-42-02', '2025-03-25 15:01:40', '2025-03-25 15:01:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886176634010000', 2, 1, 1, 'ASRS-0517', 'P3', 'A04-36-04', '2025-03-25 15:02:57', '2025-03-25 15:02:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886202605010000', 2, 2, 1, 'ASRS-0318', 'A01-33-06', '', '2025-03-25 15:03:23', '2025-03-25 15:03:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886202605010001', 2, 2, 1, 'ASRS-0383', 'A03-30-11', '', '2025-03-25 15:03:23', '2025-03-25 15:03:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886224649010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-36-09', '2025-03-25 15:03:45', '2025-03-25 15:03:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886259604010000', 2, 2, 1, 'ASRS-0523', 'A01-41-04', '', '2025-03-25 15:04:20', '2025-03-25 15:04:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886340605010000', 2, 2, 9, 'ASRS-1261', 'A01-41-03', '', '2025-03-25 15:05:41', '2025-03-25 15:05:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886347333010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A01-33-06', '2025-03-25 15:05:47', '2025-03-25 15:05:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886375257010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A04-37-03', '2025-03-25 15:06:15', '2025-03-25 15:06:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886442605010000', 2, 2, 1, 'ASRS-0317', 'A01-35-04', '', '2025-03-25 15:07:23', '2025-03-25 15:07:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886442606010000', 2, 2, 1, 'ASRS-1025', 'A04-31-08', '', '2025-03-25 15:07:23', '2025-03-25 15:07:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886462844010000', 2, 1, 1, 'ASRS-0523', 'P3', 'A01-41-03', '2025-03-25 15:07:43', '2025-03-25 15:07:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886488604010000', 2, 2, 1, 'ASRS-1902', 'A01-42-02', '', '2025-03-25 15:08:09', '2025-03-25 15:08:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886490607010000', 2, 2, 1, 'ASRS-0528', 'A03-32-09', '', '2025-03-25 15:08:11', '2025-03-25 15:08:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886567604010000', 2, 2, 1, 'ASRS-1221', 'A02-36-08', '', '2025-03-25 15:09:28', '2025-03-25 15:09:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886582260010000', 2, 1, 1, 'ASRS-1025', 'P3', 'A01-35-04', '2025-03-25 15:09:42', '2025-03-25 15:09:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886620602010000', 2, 2, 1, 'ASRS-0519', 'A01-29-07', '', '2025-03-25 15:10:21', '2025-03-25 15:10:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886696605010000', 2, 2, 1, 'ASRS-0527', 'A01-37-09', '', '2025-03-25 15:11:37', '2025-03-25 15:11:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886723862010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A01-29-07', '2025-03-25 15:12:04', '2025-03-25 15:12:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886764057010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A04-31-08', '2025-03-25 15:12:44', '2025-03-25 15:12:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886809040010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A01-42-02', '2025-03-25 15:13:29', '2025-03-25 15:13:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886842358010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-30-11', '2025-03-25 15:14:02', '2025-03-25 15:14:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886858250010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-36-08', '2025-03-25 15:14:18', '2025-03-25 15:14:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886867605010000', 2, 2, 1, 'ASRS-0306', 'A03-32-03', '', '2025-03-25 15:14:28', '2025-03-25 15:14:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886867605010001', 2, 2, 1, 'ASRS-0316', 'A01-31-08', '', '2025-03-25 15:14:28', '2025-03-25 15:14:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886886743010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A01-41-04', '2025-03-25 15:14:47', '2025-03-25 15:14:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742886940603010000', 2, 2, 1, 'ASRS-0338', 'A04-32-03', '', '2025-03-25 15:15:41', '2025-03-25 15:15:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887028642010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A01-31-08', '2025-03-25 15:17:09', '2025-03-25 15:17:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887033459010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A03-32-03', '2025-03-25 15:17:13', '2025-03-25 15:17:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887052604010000', 2, 2, 1, 'ASRS-1031', 'A03-34-07', '', '2025-03-25 15:17:33', '2025-03-25 15:17:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887073345010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A02-34-11', '2025-03-25 15:17:53', '2025-03-25 15:17:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887228443010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A02-35-10', '2025-03-25 15:20:28', '2025-03-25 15:20:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887427605010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-25 15:23:48', '2025-03-25 15:23:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887427606010000', 2, 2, 1, 'ASRS-0332', 'A03-36-04', '', '2025-03-25 15:23:48', '2025-03-25 15:23:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887472604010000', 2, 2, 1, 'ASRS-0313', 'A02-37-03', '', '2025-03-25 15:24:33', '2025-03-25 15:24:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887479605010000', 2, 2, 1, 'ASRS-0388', 'A04-32-08', '', '2025-03-25 15:24:40', '2025-03-25 15:24:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887525604010000', 2, 2, 1, 'ASRS-0304', 'A02-38-02', '', '2025-03-25 15:25:26', '2025-03-25 15:25:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887530603010000', 2, 2, 1, 'ASRS-0520', 'A04-34-06', '', '2025-03-25 15:25:31', '2025-03-25 15:25:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887579605010000', 2, 2, 1, 'ASRS-1900', 'A02-41-01', '', '2025-03-25 15:26:20', '2025-03-25 15:26:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887582605010000', 2, 2, 1, 'ASRS-0334', 'A04-38-02', '', '2025-03-25 15:26:23', '2025-03-25 15:26:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887585458010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-34-06', '2025-03-25 15:26:25', '2025-03-25 15:26:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887604675010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A04-32-03', '2025-03-25 15:26:45', '2025-03-25 15:26:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887621775010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A02-37-03', '2025-03-25 15:27:02', '2025-03-25 15:27:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887642462010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A03-36-04', '2025-03-25 15:27:22', '2025-03-25 15:27:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887661646010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A02-38-02', '2025-03-25 15:27:42', '2025-03-25 15:27:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887678442010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A04-32-08', '2025-03-25 15:27:58', '2025-03-25 15:27:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887770860010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-41-01', '2025-03-25 15:29:31', '2025-03-25 15:29:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887802606010000', 2, 2, 1, 'ASRS-1436', 'A01-39-02', '', '2025-03-25 15:30:03', '2025-03-25 15:30:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887802606010001', 2, 2, 1, 'ASRS-0350', 'A04-39-01', '', '2025-03-25 15:30:03', '2025-03-25 15:30:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887825762010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A04-34-06', '2025-03-25 15:30:26', '2025-03-25 15:30:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887887605010000', 2, 2, 1, 'ASRS-0384', 'A02-35-09', '', '2025-03-25 15:31:28', '2025-03-25 15:31:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887939469010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-39-02', '2025-03-25 15:32:19', '2025-03-25 15:32:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742887940604010000', 2, 2, 1, 'ASRS-1027', 'A02-42-02', '', '2025-03-25 15:32:21', '2025-03-25 15:32:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888009342010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A04-38-02', '2025-03-25 15:33:29', '2025-03-25 15:33:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888037560010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A02-35-09', '2025-03-25 15:33:58', '2025-03-25 15:33:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888072605010000', 2, 2, 1, 'ASRS-0324', 'A01-36-03', '', '2025-03-25 15:34:33', '2025-03-25 15:34:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888072606010000', 2, 2, 1, 'ASRS-0392', 'A04-31-05', '', '2025-03-25 15:34:33', '2025-03-25 15:34:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888094844010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-39-01', '2025-03-25 15:34:55', '2025-03-25 15:34:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888117605010000', 2, 2, 1, 'ASRS-0340', 'A04-29-06', '', '2025-03-25 15:35:18', '2025-03-25 15:35:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888148605010000', 2, 2, 1, 'ASRS-0305', 'A02-39-01', '', '2025-03-25 15:35:49', '2025-03-25 15:35:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888195663010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A01-36-03', '2025-03-25 15:36:36', '2025-03-25 15:36:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888197605010000', 2, 2, 1, 'ASRS-1245', 'A04-38-01', '', '2025-03-25 15:36:38', '2025-03-25 15:36:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888202605010000', 2, 2, 1, 'ASRS-0336', 'A02-40-04', '', '2025-03-25 15:36:43', '2025-03-25 15:36:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888228653010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-29-06', '2025-03-25 15:37:09', '2025-03-25 15:37:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888251604010000', 2, 2, 1, 'ASRS-1027', 'A04-39-01', '', '2025-03-25 15:37:32', '2025-03-25 15:37:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888256605010000', 2, 2, 1, 'ASRS-1529', 'A01-36-09', '', '2025-03-25 15:37:37', '2025-03-25 15:37:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888274247010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A02-39-01', '2025-03-25 15:37:54', '2025-03-25 15:37:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888291055010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-05', '2025-03-25 15:38:11', '2025-03-25 15:38:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888357647010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A02-40-04', '2025-03-25 15:39:18', '2025-03-25 15:39:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888420661010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-42-02', '2025-03-25 15:40:21', '2025-03-25 15:40:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888432605010000', 2, 2, 1, 'ASRS-0318', 'A01-33-06', '', '2025-03-25 15:40:33', '2025-03-25 15:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888432606010000', 2, 2, 1, 'ASRS-0383', 'A04-37-03', '', '2025-03-25 15:40:33', '2025-03-25 15:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888439844010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-38-01', '2025-03-25 15:40:40', '2025-03-25 15:40:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888456343010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-36-09', '2025-03-25 15:40:56', '2025-03-25 15:40:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888527605010000', 2, 2, 1, 'ASRS-0523', 'A01-41-03', '', '2025-03-25 15:42:08', '2025-03-25 15:42:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888565862010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A01-33-06', '2025-03-25 15:42:46', '2025-03-25 15:42:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888643864010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A01-41-03', '2025-03-25 15:44:04', '2025-03-25 15:44:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888692605010000', 2, 2, 1, 'ASRS-0317', 'A01-29-07', '', '2025-03-25 15:44:53', '2025-03-25 15:44:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888692605010001', 2, 2, 1, 'ASRS-1221', 'A03-30-11', '', '2025-03-25 15:44:53', '2025-03-25 15:44:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888739605010000', 2, 2, 1, 'ASRS-0528', 'A04-31-08', '', '2025-03-25 15:45:40', '2025-03-25 15:45:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888748605010000', 2, 2, 1, 'ASRS-1902', 'A01-42-02', '', '2025-03-25 15:45:49', '2025-03-25 15:45:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888803605010000', 2, 2, 1, 'ASRS-0519', 'A02-36-08', '', '2025-03-25 15:46:44', '2025-03-25 15:46:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888824155010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A01-29-07', '2025-03-25 15:47:04', '2025-03-25 15:47:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888844260010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A04-31-08', '2025-03-25 15:47:24', '2025-03-25 15:47:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888856605010000', 2, 2, 1, 'ASRS-1025', 'A01-35-04', '', '2025-03-25 15:47:37', '2025-03-25 15:47:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888889552010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A01-42-02', '2025-03-25 15:48:10', '2025-03-25 15:48:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888910866010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-37-03', '2025-03-25 15:48:31', '2025-03-25 15:48:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888933604010000', 2, 2, 1, 'ASRS-0527', 'A01-41-04', '', '2025-03-25 15:48:54', '2025-03-25 15:48:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742888943260010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A01-35-04', '2025-03-25 15:49:03', '2025-03-25 15:49:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889011970010000', 2, 1, 1, 'ASRS-1025', 'P3', 'A04-39-01', '2025-03-25 15:50:12', '2025-03-25 15:50:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889082605010000', 2, 2, 1, 'ASRS-0306', 'A03-32-03', '', '2025-03-25 15:51:23', '2025-03-25 15:51:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889082606010000', 2, 2, 1, 'ASRS-0316', 'A01-31-08', '', '2025-03-25 15:51:23', '2025-03-25 15:51:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889105561010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A02-36-08', '2025-03-25 15:51:46', '2025-03-25 15:51:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889128605010000', 2, 2, 1, 'ASRS-0338', 'A02-34-11', '', '2025-03-25 15:52:09', '2025-03-25 15:52:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889200955010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A01-31-08', '2025-03-25 15:53:21', '2025-03-25 15:53:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889220156010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A03-32-03', '2025-03-25 15:53:40', '2025-03-25 15:53:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889267604010000', 2, 2, 1, 'ASRS-1031', 'A02-35-10', '', '2025-03-25 15:54:28', '2025-03-25 15:54:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889287059010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-04', '2025-03-25 15:54:47', '2025-03-25 15:54:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889387605010000', 2, 2, 1, 'ASRS-1683', 'A03-35-05', '', '2025-03-25 15:56:28', '2025-03-25 15:56:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889406781010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A02-34-11', '2025-03-25 15:56:47', '2025-03-25 15:56:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742889515963010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A02-35-10', '2025-03-25 15:58:36', '2025-03-25 15:58:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742948965614010000', 2, 2, 1, 'ASRS-1030', 'A01-42-03', '', '2025-03-26 08:29:26', '2025-03-26 08:29:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949018603010000', 2, 2, 1, 'ASRS-1031', 'A02-34-11', '', '2025-03-26 08:30:19', '2025-03-26 08:30:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949075605010000', 2, 2, 1, 'ASRS-0386', 'A01-36-10', '', '2025-03-26 08:31:16', '2025-03-26 08:31:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949133605010000', 2, 2, 1, 'ASRS-0338', 'A01-41-04', '', '2025-03-26 08:32:14', '2025-03-26 08:32:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949153066010000', 2, 1, 1, 'asrs-1392', 'P2', 'A01-42-03', '2025-03-26 08:32:33', '2025-03-26 08:32:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949209764010000', 2, 1, 1, 'asrs-1443', 'P2', 'A03-35-05', '2025-03-26 08:33:30', '2025-03-26 08:33:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949240650010000', 2, 1, 1, 'ASRS-0501', 'P2', 'A01-41-04', '2025-03-26 08:34:01', '2025-03-26 08:34:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949319264010000', 2, 1, 1, 'ASRS-1030', 'P2', 'A03-30-11', '2025-03-26 08:35:19', '2025-03-26 08:35:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949421862010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A02-34-11', '2025-03-26 08:37:02', '2025-03-26 08:37:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949442257010000', 2, 1, 1, 'ASRS-0338', 'P2', 'A03-32-09', '2025-03-26 08:37:22', '2025-03-26 08:37:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742949461480010000', 2, 1, 1, 'ASRS-0386', 'P2', 'A02-36-09', '2025-03-26 08:37:41', '2025-03-26 08:37:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954087605010000', 2, 2, 1, 'ASRS-1907', 'A02-34-09', '', '2025-03-26 09:54:48', '2025-03-26 09:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954087605010001', 2, 2, 1, 'ASRS-1436', 'A04-38-02', '', '2025-03-26 09:54:48', '2025-03-26 09:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954141604010000', 2, 2, 1, 'ASRS-0351', 'A04-35-05', '', '2025-03-26 09:55:42', '2025-03-26 09:55:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954143604010000', 2, 2, 1, 'ASRS-0350', 'A01-39-02', '', '2025-03-26 09:55:44', '2025-03-26 09:55:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954194606010000', 2, 2, 1, 'ASRS-1900', 'A04-34-06', '', '2025-03-26 09:56:35', '2025-03-26 09:56:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954202605010000', 2, 2, 1, 'ASRS-0336', 'A02-42-02', '', '2025-03-26 09:56:43', '2025-03-26 09:56:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954246605010000', 2, 2, 1, 'ASRS-1027', 'A04-38-01', '', '2025-03-26 09:57:27', '2025-03-26 09:57:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742954263605010000', 2, 2, 1, 'ASRS-1899', 'A01-39-06', '', '2025-03-26 09:57:44', '2025-03-26 09:57:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742958518844010000', 2, 1, 1, 'ASRS-0551', 'P2', 'A01-39-02', '2025-03-26 11:08:39', '2025-03-26 11:08:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742958534606010000', 2, 2, 9, 'asrs-1392', 'A01-42-03', '', '2025-03-26 11:08:55', '2025-03-26 11:08:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742961863605010000', 2, 2, 1, 'ASRS-0520', 'A02-38-02', '', '2025-03-26 12:04:24', '2025-03-26 12:04:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742961888200010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A02-34-09', '2025-03-26 12:04:48', '2025-03-26 12:04:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742961921604010000', 2, 2, 1, 'ASRS-0384', 'A02-35-09', '', '2025-03-26 12:05:22', '2025-03-26 12:05:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742961947859010000', 2, 1, 1, 'ASRS-1907', 'P3', 'A04-38-01', '2025-03-26 12:05:48', '2025-03-26 12:05:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742961976348010000', 2, 1, 1, 'ASRS-0351', 'P3', 'A02-38-02', '2025-03-26 12:06:16', '2025-03-26 12:06:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962003065010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-35-09', '2025-03-26 12:06:43', '2025-03-26 12:06:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962025849010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-34-06', '2025-03-26 12:07:06', '2025-03-26 12:07:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962095161010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A02-42-02', '2025-03-26 12:08:15', '2025-03-26 12:08:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962119747010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A04-35-05', '2025-03-26 12:08:40', '2025-03-26 12:08:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962147660010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-39-06', '2025-03-26 12:09:08', '2025-03-26 12:09:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962178565010000', 2, 1, 1, 'ASRS-1899', 'P3', 'A04-38-02', '2025-03-26 12:09:39', '2025-03-26 12:09:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962182605010000', 2, 2, 1, 'ASRS-0335', 'A02-37-07', '', '2025-03-26 12:09:43', '2025-03-26 12:09:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962182605010001', 2, 2, 1, 'ASRS-0284', 'A03-31-10', '', '2025-03-26 12:09:43', '2025-03-26 12:09:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962202551010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-42-03', '2025-03-26 12:10:03', '2025-03-26 12:10:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962228604010000', 2, 2, 1, 'ASRS-0244', 'A03-35-06', '', '2025-03-26 12:10:29', '2025-03-26 12:10:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962257604010000', 2, 2, 1, 'ASRS-1026', 'A01-34-11', '', '2025-03-26 12:10:58', '2025-03-26 12:10:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962306605010000', 2, 2, 1, 'asrs-1443', 'A03-35-05', '', '2025-03-26 12:11:47', '2025-03-26 12:11:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962342606010000', 2, 2, 1, 'ASRS-0528', 'A01-42-02', '', '2025-03-26 12:12:23', '2025-03-26 12:12:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962495367010000', 2, 1, 1, 'ASRS-0284', 'P3', 'A01-42-02', '2025-03-26 12:14:55', '2025-03-26 12:14:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962734183010000', 2, 1, 1, 'ASRS-0335', 'P3', 'A02-37-07', '2025-03-26 12:18:54', '2025-03-26 12:18:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962772295010000', 2, 1, 1, 'ASRS-0244', 'P3', 'A03-35-05', '2025-03-26 12:19:32', '2025-03-26 12:19:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962800755010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A01-34-11', '2025-03-26 12:20:01', '2025-03-26 12:20:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962842754010000', 2, 1, 1, 'asrs-1443', 'P3', 'A03-31-10', '2025-03-26 12:20:43', '2025-03-26 12:20:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962907605010000', 2, 2, 1, 'ASRS-0324', 'A04-29-06', '', '2025-03-26 12:21:48', '2025-03-26 12:21:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962907605010001', 2, 2, 1, 'ASRS-0521', 'A01-37-08', '', '2025-03-26 12:21:48', '2025-03-26 12:21:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962927656010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A02-37-08', '2025-03-26 12:22:08', '2025-03-26 12:22:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962952605010000', 2, 2, 1, 'ASRS-1027', 'A04-34-06', '', '2025-03-26 12:22:33', '2025-03-26 12:22:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742962955604010000', 2, 2, 1, 'ASRS-1900', 'A02-42-02', '', '2025-03-26 12:22:36', '2025-03-26 12:22:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963040602010000', 2, 2, 1, 'ASRS-1189', 'A01-33-10', '', '2025-03-26 12:24:01', '2025-03-26 12:24:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963096604010000', 2, 2, 1, 'ASRS-0334', 'A02-41-01', '', '2025-03-26 12:24:57', '2025-03-26 12:24:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963156606010000', 2, 2, 1, 'ASRS-0384', 'A01-42-03', '', '2025-03-26 12:25:57', '2025-03-26 12:25:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963354285010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-41-01', '2025-03-26 12:29:14', '2025-03-26 12:29:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963410079010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A01-33-10', '2025-03-26 12:30:10', '2025-03-26 12:30:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963460763010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-42-02', '2025-03-26 12:31:01', '2025-03-26 12:31:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963486858010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A01-37-08', '2025-03-26 12:31:27', '2025-03-26 12:31:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963533978010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A01-42-03', '2025-03-26 12:32:14', '2025-03-26 12:32:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963622606010000', 2, 2, 1, 'ASRS-1713', 'A02-38-06', '', '2025-03-26 12:33:43', '2025-03-26 12:33:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963622606010001', 2, 2, 1, 'ASRS-1249', 'A03-33-08', '', '2025-03-26 12:33:43', '2025-03-26 12:33:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963624564010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-38-07', '2025-03-26 12:33:45', '2025-03-26 12:33:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963644975010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A02-39-06', '2025-03-26 12:34:05', '2025-03-26 12:34:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963674604010000', 2, 2, 1, 'ASRS-0385', 'A03-36-05', '', '2025-03-26 12:34:35', '2025-03-26 12:34:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742963977665010000', 2, 1, 1, 'ASRS-1249', 'P3', 'A02-38-06', '2025-03-26 12:39:38', '2025-03-26 12:39:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964025689010000', 2, 1, 1, 'ASRS-1713', 'P3', 'A02-40-05', '2025-03-26 12:40:26', '2025-03-26 12:40:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964032604010000', 2, 2, 1, 'ASRS-1023', 'A01-38-07', '', '2025-03-26 12:40:33', '2025-03-26 12:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964055367010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A04-29-06', '2025-03-26 12:40:55', '2025-03-26 12:40:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964099606010000', 2, 2, 1, 'ASRS-0270', 'A01-40-05', '', '2025-03-26 12:41:40', '2025-03-26 12:41:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964276786010000', 2, 1, 1, 'ASRS-1023', 'P3', 'A01-38-07', '2025-03-26 12:44:37', '2025-03-26 12:44:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964284284010000', 2, 1, 1, 'ASRS-0301', 'P3', 'A01-40-05', '2025-03-26 12:44:44', '2025-03-26 12:44:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964337605010000', 2, 2, 1, 'ASRS-0545', 'A02-39-05', '', '2025-03-26 12:45:38', '2025-03-26 12:45:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964337605010001', 2, 2, 1, 'ASRS-0525', 'A03-38-03', '', '2025-03-26 12:45:38', '2025-03-26 12:45:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964357467010000', 2, 1, 1, 'ASRS-0270', 'P3', 'A02-41-04', '2025-03-26 12:45:57', '2025-03-26 12:45:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964427605010000', 2, 2, 1, 'ASRS-1528', 'A02-41-03', '', '2025-03-26 12:47:08', '2025-03-26 12:47:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964508605010000', 2, 2, 1, 'ASRS-1026', 'A01-34-11', '', '2025-03-26 12:48:29', '2025-03-26 12:48:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964564606010000', 2, 2, 1, 'ASRS-0342', 'A01-35-10', '', '2025-03-26 12:49:25', '2025-03-26 12:49:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964623889010000', 2, 1, 1, 'ASRS-0525', 'P3', 'A02-39-05', '2025-03-26 12:50:24', '2025-03-26 12:50:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964730072010000', 2, 1, 1, 'ASRS-0545', 'P3', 'A02-41-03', '2025-03-26 12:52:10', '2025-03-26 12:52:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964789170010000', 2, 1, 1, 'ASRS-1528', 'P3', 'A01-34-11', '2025-03-26 12:53:09', '2025-03-26 12:53:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964872573010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A01-35-10', '2025-03-26 12:54:33', '2025-03-26 12:54:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742964901972010000', 2, 1, 1, 'ASRS-0342', 'P3', 'A02-42-03', '2025-03-26 12:55:02', '2025-03-26 12:55:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742965543605010000', 2, 2, 1, 'ASRS-0385', 'A04-29-06', '', '2025-03-26 13:05:44', '2025-03-26 13:05:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742965703276010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A01-35-11', '2025-03-26 13:08:23', '2025-03-26 13:08:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742965982605010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-26 13:13:03', '2025-03-26 13:13:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742965982605010001', 2, 2, 1, 'ASRS-0332', 'A04-32-03', '', '2025-03-26 13:13:03', '2025-03-26 13:13:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966029604010000', 2, 2, 1, 'ASRS-0313', 'A02-37-03', '', '2025-03-26 13:13:50', '2025-03-26 13:13:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966033605010000', 2, 2, 1, 'ASRS-0304', 'A04-32-08', '', '2025-03-26 13:13:54', '2025-03-26 13:13:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966084604010000', 2, 2, 1, 'ASRS-0388', 'A03-36-04', '', '2025-03-26 13:14:45', '2025-03-26 13:14:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966086606010000', 2, 2, 1, 'ASRS-0350', 'A02-35-09', '', '2025-03-26 13:14:47', '2025-03-26 13:14:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966128377010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-26 13:15:28', '2025-03-26 13:15:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966143604010000', 2, 2, 1, 'ASRS-0520', 'A01-39-06', '', '2025-03-26 13:15:44', '2025-03-26 13:15:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966161079010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A04-29-06', '2025-03-26 13:16:01', '2025-03-26 13:16:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966182097010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A02-37-03', '2025-03-26 13:16:22', '2025-03-26 13:16:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966199501010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A02-35-09', '2025-03-26 13:16:40', '2025-03-26 13:16:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966227605010000', 2, 2, 1, 'ASRS-0334', 'A02-38-07', '', '2025-03-26 13:17:08', '2025-03-26 13:17:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966228579010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A04-32-03', '2025-03-26 13:17:09', '2025-03-26 13:17:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966251082010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-36-04', '2025-03-26 13:17:31', '2025-03-26 13:17:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966305678010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-39-06', '2025-03-26 13:18:26', '2025-03-26 13:18:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966309605010000', 2, 2, 1, 'ASRS-1436', 'A02-34-09', '', '2025-03-26 13:18:30', '2025-03-26 13:18:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966408295010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-32-08', '2025-03-26 13:20:08', '2025-03-26 13:20:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966442605010000', 2, 2, 1, 'ASRS-0324', 'A02-41-01', '', '2025-03-26 13:20:43', '2025-03-26 13:20:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966442605010001', 2, 2, 1, 'ASRS-0305', 'A04-31-05', '', '2025-03-26 13:20:43', '2025-03-26 13:20:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966465004010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A02-34-09', '2025-03-26 13:21:05', '2025-03-26 13:21:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966491605010000', 2, 2, 1, 'ASRS-0340', 'A02-39-01', '', '2025-03-26 13:21:32', '2025-03-26 13:21:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966573604010000', 2, 2, 1, 'ASRS-1027', 'A02-42-02', '', '2025-03-26 13:22:54', '2025-03-26 13:22:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966586793010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-39-01', '2025-03-26 13:23:07', '2025-03-26 13:23:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966597596010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-05', '2025-03-26 13:23:18', '2025-03-26 13:23:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966633604010000', 2, 2, 1, 'ASRS-1529', 'A01-36-09', '', '2025-03-26 13:23:54', '2025-03-26 13:23:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966653982010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-34-06', '2025-03-26 13:24:14', '2025-03-26 13:24:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966716608010000', 2, 2, 1, 'ASRS-1032', 'A01-32-11', '', '2025-03-26 13:25:17', '2025-03-26 13:25:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966753293010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-41-01', '2025-03-26 13:25:53', '2025-03-26 13:25:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966875099010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-32-11', '2025-03-26 13:27:55', '2025-03-26 13:27:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966897604010000', 2, 2, 1, 'ASRS-0306', 'A01-31-08', '', '2025-03-26 13:28:18', '2025-03-26 13:28:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966897604010001', 2, 2, 1, 'ASRS-1902', 'A04-37-03', '', '2025-03-26 13:28:18', '2025-03-26 13:28:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966917400010000', 2, 1, 1, 'ASRS-1032', 'P3', 'A03-33-08', '2025-03-26 13:28:37', '2025-03-26 13:28:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966945604010000', 2, 2, 1, 'ASRS-1526', 'A03-37-03', '', '2025-03-26 13:29:06', '2025-03-26 13:29:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742966981604010000', 2, 2, 1, 'ASRS-0333', 'A02-33-10', '', '2025-03-26 13:29:42', '2025-03-26 13:29:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967037604010000', 2, 2, 1, 'ASRS-0392', 'A01-36-03', '', '2025-03-26 13:30:38', '2025-03-26 13:30:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967061683010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A01-31-08', '2025-03-26 13:31:02', '2025-03-26 13:31:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967084802010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A03-37-03', '2025-03-26 13:31:25', '2025-03-26 13:31:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967094604010000', 2, 2, 1, 'ASRS-1221', 'A01-29-07', '', '2025-03-26 13:31:35', '2025-03-26 13:31:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967107588010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A01-36-03', '2025-03-26 13:31:48', '2025-03-26 13:31:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967130404010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A02-33-10', '2025-03-26 13:32:10', '2025-03-26 13:32:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967171605010000', 2, 2, 1, 'ASRS-0528', 'A02-37-08', '', '2025-03-26 13:32:52', '2025-03-26 13:32:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967171809010000', 2, 1, 1, 'ASRS-0392', 'P3', 'A04-37-03', '2025-03-26 13:32:52', '2025-03-26 13:32:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967321486010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A01-29-07', '2025-03-26 13:35:21', '2025-03-26 13:35:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967332605010000', 2, 2, 1, 'ASRS-0519', 'A01-35-04', '', '2025-03-26 13:35:33', '2025-03-26 13:35:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967332605010001', 2, 2, 1, 'ASRS-1025', 'A04-39-01', '', '2025-03-26 13:35:33', '2025-03-26 13:35:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967354505010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A03-34-07', '2025-03-26 13:35:55', '2025-03-26 13:35:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967481098010000', 2, 1, 1, 'ASRS-1025', 'P3', 'A01-35-04', '2025-03-26 13:38:01', '2025-03-26 13:38:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967492604010000', 2, 2, 1, 'ASRS-0316', 'A03-32-03', '', '2025-03-26 13:38:13', '2025-03-26 13:38:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967492604010001', 2, 2, 1, 'ASRS-1031', 'A02-34-11', '', '2025-03-26 13:38:13', '2025-03-26 13:38:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967515288010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A04-39-01', '2025-03-26 13:38:35', '2025-03-26 13:38:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967538605010000', 2, 2, 1, 'ASRS-0338', 'A03-32-09', '', '2025-03-26 13:38:59', '2025-03-26 13:39:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967633815010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-42-02', '2025-03-26 13:40:34', '2025-03-26 13:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967663801010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A03-32-03', '2025-03-26 13:41:04', '2025-03-26 13:41:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967712605010000', 2, 2, 1, 'ASRS-0337', 'A03-29-06', '', '2025-03-26 13:41:53', '2025-03-26 13:41:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967712605010001', 2, 2, 1, 'ASRS-0501', 'A01-41-04', '', '2025-03-26 13:41:53', '2025-03-26 13:41:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967735487010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-36-09', '2025-03-26 13:42:15', '2025-03-26 13:42:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967837188010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A01-41-04', '2025-03-26 13:43:57', '2025-03-26 13:43:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967872604010000', 2, 2, 1, 'ASRS-1524', 'A02-32-09', '', '2025-03-26 13:44:33', '2025-03-26 13:44:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967872604010001', 2, 2, 1, 'ASRS-0522', 'A03-31-06', '', '2025-03-26 13:44:33', '2025-03-26 13:44:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967891785010000', 2, 1, 1, 'ASRS-0501', 'P3', 'A03-29-06', '2025-03-26 13:44:52', '2025-03-26 13:44:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742967999496010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A02-32-09', '2025-03-26 13:46:39', '2025-03-26 13:46:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968007604010000', 2, 2, 1, 'ASRS-1088', 'A02-32-11', '', '2025-03-26 13:46:48', '2025-03-26 13:46:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968026787010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A03-31-06', '2025-03-26 13:47:07', '2025-03-26 13:47:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968208885010000', 2, 1, 1, 'ASRS-1088', 'P3', 'A02-32-11', '2025-03-26 13:50:09', '2025-03-26 13:50:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968277605010000', 2, 2, 1, 'ASRS-1907', 'A04-38-01', '', '2025-03-26 13:51:18', '2025-03-26 13:51:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968277605010001', 2, 2, 1, 'ASRS-0351', 'A02-38-02', '', '2025-03-26 13:51:18', '2025-03-26 13:51:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968325605010000', 2, 2, 1, 'ASRS-0350', 'A03-36-04', '', '2025-03-26 13:52:06', '2025-03-26 13:52:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968327604010000', 2, 2, 1, 'ASRS-1900', 'A01-37-08', '', '2025-03-26 13:52:08', '2025-03-26 13:52:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968378606010000', 2, 2, 1, 'ASRS-0336', 'A04-35-05', '', '2025-03-26 13:52:59', '2025-03-26 13:53:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968385605010000', 2, 2, 1, 'ASRS-0520', 'A01-39-06', '', '2025-03-26 13:53:06', '2025-03-26 13:53:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968430602010000', 2, 2, 1, 'ASRS-1899', 'A04-38-02', '', '2025-03-26 13:53:51', '2025-03-26 13:53:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968444605010000', 2, 2, 1, 'ASRS-0384', 'A02-39-06', '', '2025-03-26 13:54:05', '2025-03-26 13:54:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968501393010000', 2, 1, 1, 'ASRS-1907', 'P3', 'A02-38-02', '2025-03-26 13:55:01', '2025-03-26 13:55:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968502605010000', 2, 2, 1, 'ASRS-1027', 'A02-41-01', '', '2025-03-26 13:55:03', '2025-03-26 13:55:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968519395010000', 2, 1, 1, 'ASRS-0351', 'P3', 'A04-38-01', '2025-03-26 13:55:19', '2025-03-26 13:55:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968545209010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-37-08', '2025-03-26 13:55:45', '2025-03-26 13:55:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968562604010000', 2, 2, 1, 'ASRS-1436', 'A02-34-09', '', '2025-03-26 13:56:03', '2025-03-26 13:56:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968569205010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A03-36-04', '2025-03-26 13:56:09', '2025-03-26 13:56:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968589004010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A04-35-05', '2025-03-26 13:56:29', '2025-03-26 13:56:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968617513010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-41-01', '2025-03-26 13:56:58', '2025-03-26 13:56:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968625294010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-39-06', '2025-03-26 13:57:05', '2025-03-26 13:57:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968644507010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-38-02', '2025-03-26 13:57:25', '2025-03-26 13:57:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968648709010000', 2, 1, 1, 'ASRS-1899', 'P3', 'A03-32-09', '2025-03-26 13:57:29', '2025-03-26 13:57:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968707604010000', 2, 2, 1, 'ASRS-0324', 'A02-39-01', '', '2025-03-26 13:58:28', '2025-03-26 13:58:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968707604010001', 2, 2, 1, 'ASRS-1900', 'A03-36-04', '', '2025-03-26 13:58:28', '2025-03-26 13:58:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968740508010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A02-34-09', '2025-03-26 13:59:01', '2025-03-26 13:59:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968761604010000', 2, 2, 1, 'ASRS-0334', 'A04-32-08', '', '2025-03-26 13:59:22', '2025-03-26 13:59:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968778604010000', 2, 2, 1, 'ASRS-0521', 'A01-33-10', '', '2025-03-26 13:59:39', '2025-03-26 13:59:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968835605010000', 2, 2, 1, 'ASRS-1027', 'A04-38-02', '', '2025-03-26 14:00:36', '2025-03-26 14:00:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968835911010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A03-36-04', '2025-03-26 14:00:36', '2025-03-26 14:00:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968861605010000', 2, 2, 1, 'ASRS-1189', 'A01-42-03', '', '2025-03-26 14:01:02', '2025-03-26 14:01:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968880312010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-39-01', '2025-03-26 14:01:20', '2025-03-26 14:01:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968938795010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-32-08', '2025-03-26 14:02:19', '2025-03-26 14:02:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968945605010000', 2, 2, 1, 'ASRS-0384', 'A01-39-06', '', '2025-03-26 14:02:26', '2025-03-26 14:02:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968964896010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A01-33-10', '2025-03-26 14:02:45', '2025-03-26 14:02:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742968986216010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-42-03', '2025-03-26 14:03:06', '2025-03-26 14:03:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969048296010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A04-38-02', '2025-03-26 14:04:08', '2025-03-26 14:04:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969092605010000', 2, 2, 1, 'ASRS-0335', 'A02-37-07', '', '2025-03-26 14:04:53', '2025-03-26 14:04:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969092605010001', 2, 2, 1, 'ASRS-0244', 'A03-35-05', '', '2025-03-26 14:04:53', '2025-03-26 14:04:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969111618010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A03-35-06', '2025-03-26 14:05:12', '2025-03-26 14:05:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969146604010000', 2, 2, 1, 'ASRS-0528', 'A03-34-07', '', '2025-03-26 14:05:47', '2025-03-26 14:05:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969162605010000', 2, 2, 1, 'ASRS-1026', 'A01-35-10', '', '2025-03-26 14:06:03', '2025-03-26 14:06:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969219604010000', 2, 2, 1, 'ASRS-0284', 'A01-42-02', '', '2025-03-26 14:07:00', '2025-03-26 14:07:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969223605010000', 2, 2, 1, 'asrs-1443', 'A03-31-10', '', '2025-03-26 14:07:04', '2025-03-26 14:07:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969243901010000', 2, 1, 1, 'ASRS-0244', 'P3', 'A02-37-07', '2025-03-26 14:07:24', '2025-03-26 14:07:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969273015010000', 2, 1, 1, 'ASRS-0335', 'P3', 'A03-35-05', '2025-03-26 14:07:53', '2025-03-26 14:07:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969303900010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A01-42-02', '2025-03-26 14:08:24', '2025-03-26 14:08:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969312624010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A03-31-10', '2025-03-26 14:08:33', '2025-03-26 14:08:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969337605010000', 2, 2, 1, 'ASRS-0349', 'A04-31-09', '', '2025-03-26 14:08:58', '2025-03-26 14:08:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969337605010001', 2, 2, 1, 'ASRS-1713', 'A02-40-05', '', '2025-03-26 14:08:58', '2025-03-26 14:08:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969348600010000', 2, 1, 1, 'asrs-1443', 'P3', 'A01-35-10', '2025-03-26 14:09:09', '2025-03-26 14:09:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969357902010000', 2, 1, 1, 'ASRS-0284', 'P3', 'A03-34-07', '2025-03-26 14:09:18', '2025-03-26 14:09:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969415603010000', 2, 2, 1, 'ASRS-1249', 'A02-38-06', '', '2025-03-26 14:10:16', '2025-03-26 14:10:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969474604010000', 2, 2, 1, 'ASRS-0385', 'A01-35-11', '', '2025-03-26 14:11:15', '2025-03-26 14:11:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969484518010000', 2, 1, 1, 'ASRS-0349', 'P3', 'A04-31-09', '2025-03-26 14:11:25', '2025-03-26 14:11:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969495321010000', 2, 1, 1, 'ASRS-1713', 'P3', 'A02-38-06', '2025-03-26 14:11:35', '2025-03-26 14:11:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969553812010000', 2, 1, 1, 'ASRS-1249', 'P3', 'A03-36-05', '2025-03-26 14:12:34', '2025-03-26 14:12:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969692606010000', 2, 2, 1, 'ASRS-1023', 'A01-38-07', '', '2025-03-26 14:14:53', '2025-03-26 14:14:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969714327010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A03-37-04', '2025-03-26 14:15:14', '2025-03-26 14:15:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969750603010000', 2, 2, 1, 'ASRS-0270', 'A02-41-04', '', '2025-03-26 14:15:51', '2025-03-26 14:15:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969846311010000', 2, 1, 1, 'ASRS-1023', 'P3', 'A03-38-03', '2025-03-26 14:17:26', '2025-03-26 14:17:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969872605010000', 2, 2, 1, 'ASRS-0545', 'A02-41-03', '', '2025-03-26 14:17:53', '2025-03-26 14:17:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969872605010001', 2, 2, 1, 'ASRS-1026', 'A03-31-10', '', '2025-03-26 14:17:53', '2025-03-26 14:17:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969896406010000', 2, 1, 1, 'ASRS-0270', 'P3', 'A03-40-01', '2025-03-26 14:18:16', '2025-03-26 14:18:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969931605010000', 2, 2, 1, 'ASRS-1528', 'A01-34-11', '', '2025-03-26 14:18:52', '2025-03-26 14:18:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969946605010000', 2, 2, 1, 'ASRS-0385', 'A03-37-04', '', '2025-03-26 14:19:07', '2025-03-26 14:19:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742969986605010000', 2, 2, 1, 'ASRS-0342', 'A02-42-03', '', '2025-03-26 14:19:47', '2025-03-26 14:19:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970046605010000', 2, 2, 1, 'ASRS-0525', 'A02-39-05', '', '2025-03-26 14:20:47', '2025-03-26 14:20:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970097106010000', 2, 1, 1, 'ASRS-0545', 'P3', 'A03-31-10', '2025-03-26 14:21:37', '2025-03-26 14:21:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970119620010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A03-37-04', '2025-03-26 14:22:00', '2025-03-26 14:22:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970138825010000', 2, 1, 1, 'ASRS-1528', 'P3', 'A02-39-05', '2025-03-26 14:22:19', '2025-03-26 14:22:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970149330010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A04-30-11', '2025-03-26 14:22:29', '2025-03-26 14:22:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970164309010000', 2, 1, 1, 'ASRS-0342', 'P3', 'A04-31-10', '2025-03-26 14:22:44', '2025-03-26 14:22:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970176015010000', 2, 1, 1, 'ASRS-0525', 'P3', 'A02-41-03', '2025-03-26 14:22:56', '2025-03-26 14:22:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970382605010000', 2, 2, 1, 'ASRS-1907', 'A02-38-02', '', '2025-03-26 14:26:23', '2025-03-26 14:26:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970382605010001', 2, 2, 1, 'ASRS-0351', 'A04-38-01', '', '2025-03-26 14:26:23', '2025-03-26 14:26:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970430604010000', 2, 2, 1, 'ASRS-1900', 'A03-36-04', '', '2025-03-26 14:27:11', '2025-03-26 14:27:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970440605010000', 2, 2, 1, 'ASRS-0350', 'A01-37-08', '', '2025-03-26 14:27:21', '2025-03-26 14:27:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970482604010000', 2, 2, 1, 'ASRS-1899', 'A03-32-09', '', '2025-03-26 14:28:03', '2025-03-26 14:28:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970498606010000', 2, 2, 1, 'ASRS-0336', 'A02-41-01', '', '2025-03-26 14:28:19', '2025-03-26 14:28:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970530619010000', 2, 1, 1, 'ASRS-0351', 'P3', 'A04-38-01', '2025-03-26 14:28:51', '2025-03-26 14:28:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970533605010000', 2, 2, 1, 'ASRS-0520', 'A04-35-05', '', '2025-03-26 14:28:54', '2025-03-26 14:28:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970552812010000', 2, 1, 1, 'ASRS-1907', 'P3', 'A03-36-04', '2025-03-26 14:29:13', '2025-03-26 14:29:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970557607010000', 2, 2, 1, 'ASRS-1027', 'A01-42-03', '', '2025-03-26 14:29:18', '2025-03-26 14:29:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970581322010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A03-32-09', '2025-03-26 14:29:41', '2025-03-26 14:29:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970586605010000', 2, 2, 1, 'ASRS-0384', 'A03-35-06', '', '2025-03-26 14:29:47', '2025-03-26 14:29:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970617032010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-35-05', '2025-03-26 14:30:17', '2025-03-26 14:30:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970617605010000', 2, 2, 1, 'ASRS-1436', 'A02-34-09', '', '2025-03-26 14:30:18', '2025-03-26 14:30:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970637429010000', 2, 1, 1, 'ASRS-1899', 'P3', 'A04-32-09', '2025-03-26 14:30:37', '2025-03-26 14:30:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970656632010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-38-02', '2025-03-26 14:30:57', '2025-03-26 14:30:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970668035010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A03-35-06', '2025-03-26 14:31:08', '2025-03-26 14:31:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970694714010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-41-01', '2025-03-26 14:31:35', '2025-03-26 14:31:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970737605010000', 2, 2, 1, 'ASRS-0324', 'A02-39-01', '', '2025-03-26 14:32:18', '2025-03-26 14:32:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970737605010001', 2, 2, 1, 'ASRS-1189', 'A04-38-02', '', '2025-03-26 14:32:18', '2025-03-26 14:32:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970745418010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A04-33-08', '2025-03-26 14:32:25', '2025-03-26 14:32:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970757434010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A04-34-07', '2025-03-26 14:32:37', '2025-03-26 14:32:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970791604010000', 2, 2, 1, 'ASRS-1900', 'A03-32-09', '', '2025-03-26 14:33:12', '2025-03-26 14:33:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970796605010000', 2, 2, 1, 'ASRS-0521', 'A01-33-10', '', '2025-03-26 14:33:17', '2025-03-26 14:33:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970869605010000', 2, 2, 1, 'ASRS-0334', 'A04-32-08', '', '2025-03-26 14:34:30', '2025-03-26 14:34:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970886119010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A04-38-02', '2025-03-26 14:34:46', '2025-03-26 14:34:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970908036010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A03-32-09', '2025-03-26 14:35:08', '2025-03-26 14:35:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970928123010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A04-35-06', '2025-03-26 14:35:28', '2025-03-26 14:35:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742970947933010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A02-39-01', '2025-03-26 14:35:48', '2025-03-26 14:35:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742971028605010000', 2, 2, 1, 'ASRS-0384', 'A04-33-08', '', '2025-03-26 14:37:09', '2025-03-26 14:37:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742971054118010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-32-08', '2025-03-26 14:37:34', '2025-03-26 14:37:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742971205936010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A04-33-08', '2025-03-26 14:40:06', '2025-03-26 14:40:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742971763604010000', 2, 2, 1, 'ASRS-1027', 'A02-41-01', '', '2025-03-26 14:49:24', '2025-03-26 14:49:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972042604010000', 2, 2, 1, 'ASRS-0335', 'A03-35-05', '', '2025-03-26 14:54:03', '2025-03-26 14:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972042604010001', 2, 2, 1, 'ASRS-0244', 'A02-37-07', '', '2025-03-26 14:54:03', '2025-03-26 14:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972064842010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-41-01', '2025-03-26 14:54:25', '2025-03-26 14:54:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972087604010000', 2, 2, 1, 'ASRS-1026', 'A03-37-04', '', '2025-03-26 14:54:48', '2025-03-26 14:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972090604010000', 2, 2, 1, 'ASRS-0528', 'A01-42-02', '', '2025-03-26 14:54:51', '2025-03-26 14:54:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972139605010000', 2, 2, 1, 'ASRS-0284', 'A03-34-07', '', '2025-03-26 14:55:40', '2025-03-26 14:55:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972172605010000', 2, 2, 1, 'asrs-1443', 'A01-35-10', '', '2025-03-26 14:56:13', '2025-03-26 14:56:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972210043010000', 2, 1, 1, 'ASRS-0335', 'P3', 'A01-33-10', '2025-03-26 14:56:50', '2025-03-26 14:56:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972229541010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A03-35-05', '2025-03-26 14:57:10', '2025-03-26 14:57:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972252029010000', 2, 1, 1, 'ASRS-0244', 'P3', 'A02-34-09', '2025-03-26 14:57:32', '2025-03-26 14:57:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972277547010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A01-42-02', '2025-03-26 14:57:58', '2025-03-26 14:57:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972292604010000', 2, 2, 1, 'ASRS-0349', 'A04-31-09', '', '2025-03-26 14:58:13', '2025-03-26 14:58:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972292604010001', 2, 2, 1, 'ASRS-1713', 'A02-38-06', '', '2025-03-26 14:58:13', '2025-03-26 14:58:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972293130010000', 2, 1, 1, 'ASRS-0284', 'P3', 'A03-34-07', '2025-03-26 14:58:13', '2025-03-26 14:58:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972315349010000', 2, 1, 1, 'asrs-1443', 'P3', 'A02-37-07', '2025-03-26 14:58:35', '2025-03-26 14:58:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972336605010000', 2, 2, 1, 'ASRS-1249', 'A03-36-05', '', '2025-03-26 14:58:57', '2025-03-26 14:58:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972413605010000', 2, 2, 1, 'ASRS-0385', 'A04-30-11', '', '2025-03-26 15:00:14', '2025-03-26 15:00:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972510959010000', 2, 1, 1, 'ASRS-0349', 'P3', 'A04-31-09', '2025-03-26 15:01:51', '2025-03-26 15:01:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972540051010000', 2, 1, 1, 'ASRS-1713', 'P3', 'A02-38-06', '2025-03-26 15:02:20', '2025-03-26 15:02:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972552605010000', 2, 2, 1, 'ASRS-1030', 'A03-30-11', '', '2025-03-26 15:02:33', '2025-03-26 15:02:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972554745010000', 2, 1, 1, 'ASRS-1249', 'P3', 'A03-36-05', '2025-03-26 15:02:35', '2025-03-26 15:02:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972573928010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A03-37-04', '2025-03-26 15:02:54', '2025-03-26 15:02:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972677604010000', 2, 2, 1, 'ASRS-0545', 'A03-31-10', '', '2025-03-26 15:04:38', '2025-03-26 15:04:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972677604010001', 2, 2, 1, 'ASRS-1528', 'A02-39-05', '', '2025-03-26 15:04:38', '2025-03-26 15:04:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972698462010000', 2, 1, 1, 'ASRS-1030', 'P3', 'A03-30-11', '2025-03-26 15:04:58', '2025-03-26 15:04:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972725602010000', 2, 2, 1, 'ASRS-0525', 'A02-41-03', '', '2025-03-26 15:05:26', '2025-03-26 15:05:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972727605010000', 2, 2, 1, 'ASRS-1026', 'A03-35-05', '', '2025-03-26 15:05:28', '2025-03-26 15:05:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972803604010000', 2, 2, 1, 'ASRS-0342', 'A04-31-10', '', '2025-03-26 15:06:44', '2025-03-26 15:06:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972851134010000', 2, 1, 1, 'ASRS-0545', 'P3', 'A03-35-05', '2025-03-26 15:07:31', '2025-03-26 15:07:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972853604010000', 2, 2, 1, 'ASRS-0385', 'A03-37-04', '', '2025-03-26 15:07:34', '2025-03-26 15:07:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972887139010000', 2, 1, 1, 'ASRS-1528', 'P3', 'A03-31-10', '2025-03-26 15:08:07', '2025-03-26 15:08:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972908751010000', 2, 1, 1, 'ASRS-0525', 'P3', 'A02-39-05', '2025-03-26 15:08:29', '2025-03-26 15:08:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972935136010000', 2, 1, 1, 'ASRS-1026', 'P3', 'A03-37-04', '2025-03-26 15:08:55', '2025-03-26 15:08:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972954359010000', 2, 1, 1, 'ASRS-0342', 'P3', 'A04-30-11', '2025-03-26 15:09:14', '2025-03-26 15:09:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742972984037010000', 2, 1, 1, 'ASRS-0385', 'P3', 'A02-41-03', '2025-03-26 15:09:44', '2025-03-26 15:09:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742973552604010000', 2, 2, 1, 'ASRS-1528', 'A03-31-10', '', '2025-03-26 15:19:13', '2025-03-26 15:19:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742973755655010000', 2, 1, 1, 'ASRS-1528', 'P2', 'A03-31-10', '2025-03-26 15:22:36', '2025-03-26 15:22:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974212604010000', 2, 2, 1, 'ASRS-1907', 'A03-36-04', '', '2025-03-26 15:30:13', '2025-03-26 15:30:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974212604010001', 2, 2, 1, 'ASRS-0336', 'A02-38-02', '', '2025-03-26 15:30:13', '2025-03-26 15:30:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974258604010000', 2, 2, 1, 'ASRS-0350', 'A04-35-05', '', '2025-03-26 15:30:59', '2025-03-26 15:31:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974262605010000', 2, 2, 1, 'ASRS-1900', 'A02-39-01', '', '2025-03-26 15:31:03', '2025-03-26 15:31:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974310602010000', 2, 2, 1, 'ASRS-0351', 'A04-38-01', '', '2025-03-26 15:31:51', '2025-03-26 15:31:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974321605010000', 2, 2, 1, 'ASRS-1027', 'A02-41-01', '', '2025-03-26 15:32:02', '2025-03-26 15:32:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974342149010000', 2, 1, 1, 'ASRS-1907', 'P3', 'A02-38-02', '2025-03-26 15:32:22', '2025-03-26 15:32:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974364606010000', 2, 2, 1, 'ASRS-1899', 'A04-32-09', '', '2025-03-26 15:32:45', '2025-03-26 15:32:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974380577010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A04-38-01', '2025-03-26 15:33:01', '2025-03-26 15:33:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974406652010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A02-39-01', '2025-03-26 15:33:27', '2025-03-26 15:33:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974415605010000', 2, 2, 1, 'ASRS-0520', 'A03-35-06', '', '2025-03-26 15:33:36', '2025-03-26 15:33:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974441750010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A02-41-01', '2025-03-26 15:34:02', '2025-03-26 15:34:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974457062010000', 2, 1, 1, 'ASRS-0351', 'P3', 'A03-36-04', '2025-03-26 15:34:17', '2025-03-26 15:34:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974476566010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-34-11', '2025-03-26 15:34:37', '2025-03-26 15:34:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974493363010000', 2, 1, 1, 'ASRS-1899', 'P3', 'A04-35-05', '2025-03-26 15:34:53', '2025-03-26 15:34:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974494605010000', 2, 2, 1, 'ASRS-0384', 'A04-33-08', '', '2025-03-26 15:34:55', '2025-03-26 15:34:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974572264010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-35-10', '2025-03-26 15:36:12', '2025-03-26 15:36:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974573605010000', 2, 2, 1, 'ASRS-1436', 'A04-34-07', '', '2025-03-26 15:36:14', '2025-03-26 15:36:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974667352010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-37-08', '2025-03-26 15:37:47', '2025-03-26 15:37:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974782604010000', 2, 2, 1, 'ASRS-0324', 'A03-32-09', '', '2025-03-26 15:39:43', '2025-03-26 15:39:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974782604010001', 2, 2, 1, 'ASRS-1900', 'A02-41-01', '', '2025-03-26 15:39:43', '2025-03-26 15:39:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974802960010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A01-38-07', '2025-03-26 15:40:03', '2025-03-26 15:40:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974831605010000', 2, 2, 1, 'ASRS-0384', 'A01-37-08', '', '2025-03-26 15:40:32', '2025-03-26 15:40:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974833604010000', 2, 2, 1, 'ASRS-0521', 'A04-35-06', '', '2025-03-26 15:40:34', '2025-03-26 15:40:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974884604010000', 2, 2, 1, 'ASRS-1189', 'A04-38-02', '', '2025-03-26 15:41:25', '2025-03-26 15:41:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974912606010000', 2, 2, 1, 'ASRS-1027', 'A01-34-11', '', '2025-03-26 15:41:53', '2025-03-26 15:41:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1742974937605010000', 2, 2, 1, 'ASRS-0334', 'A04-32-08', '', '2025-03-26 15:42:18', '2025-03-26 15:42:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038415661010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-41-01', '2025-03-27 09:20:16', '2025-03-27 09:20:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038432155010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A04-32-08', '2025-03-27 09:20:32', '2025-03-27 09:20:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038443254010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A01-34-11', '2025-03-27 09:20:43', '2025-03-27 09:20:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038454952010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A04-38-02', '2025-03-27 09:20:55', '2025-03-27 09:20:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038475955010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-37-08', '2025-03-27 09:21:16', '2025-03-27 09:21:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038483605010000', 2, 2, 1, 'ASRS-1900', 'A04-32-08', '', '2025-03-27 09:21:24', '2025-03-27 09:21:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038486737010000', 2, 1, 1, 'ASRS-1189', 'P3', 'A03-32-09', '2025-03-27 09:21:27', '2025-03-27 09:21:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038506840010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-39-06', '2025-03-27 09:21:47', '2025-03-27 09:21:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038524605010000', 2, 2, 1, 'ASRS-0521', 'A01-34-11', '', '2025-03-27 09:22:05', '2025-03-27 09:22:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038713257010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A01-34-11', '2025-03-27 09:25:13', '2025-03-27 09:25:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743038727359010000', 2, 1, 1, 'ASRS-0521', 'P3', 'A04-32-08', '2025-03-27 09:25:27', '2025-03-27 09:25:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124776604010000', 2, 2, 1, 'ASRS-1436', 'A01-38-07', '', '2025-03-28 09:19:37', '2025-03-28 09:19:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124776605010000', 2, 2, 1, 'ASRS-1528', 'A03-31-10', '', '2025-03-28 09:19:37', '2025-03-28 09:19:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124820603010000', 2, 2, 1, 'ASRS-1531', 'A03-38-01', '', '2025-03-28 09:20:21', '2025-03-28 09:20:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124825605010000', 2, 2, 1, 'ASRS-1683', 'A02-35-10', '', '2025-03-28 09:20:26', '2025-03-28 09:20:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124873605010000', 2, 2, 1, 'ASRS-1031', 'A03-32-03', '', '2025-03-28 09:21:14', '2025-03-28 09:21:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124881613010000', 2, 2, 1, 'ASRS-0386', 'A02-36-09', '', '2025-03-28 09:21:22', '2025-03-28 09:21:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124923608010000', 2, 2, 9, 'ASRS-0271', 'A03-31-04', '', '2025-03-28 09:22:04', '2025-03-28 09:22:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124938605010000', 2, 2, 9, 'ASRS-0299', 'A01-39-07', '', '2025-03-28 09:22:19', '2025-03-28 09:22:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743124974608010000', 2, 2, 9, 'ASRS-0297', 'A04-31-04', '', '2025-03-28 09:22:55', '2025-03-28 09:22:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125019414010000', 2, 1, 1, 'ASRS-1528', 'P2', 'A01-38-07', '2025-03-28 09:23:39', '2025-03-28 09:23:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125025604010000', 2, 2, 9, 'ASRS-0250', 'A03-35-04', '', '2025-03-28 09:23:46', '2025-03-28 09:23:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125111811010000', 2, 1, 1, 'ASRS-1436', 'P2', 'A01-42-03', '2025-03-28 09:25:12', '2025-03-28 09:25:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125127424010000', 2, 1, 1, 'ASRS-0271', 'P2', 'A03-31-04', '2025-03-28 09:25:27', '2025-03-28 09:25:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125162512010000', 2, 1, 1, 'ASRS-0299', 'P2', 'A02-34-11', '2025-03-28 09:26:03', '2025-03-28 09:26:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125190425010000', 2, 1, 1, 'ASRS-0297', 'P2', 'A03-32-03', '2025-03-28 09:26:30', '2025-03-28 09:26:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125197324010000', 2, 1, 1, 'ASRS-0250', 'P2', 'A02-35-10', '2025-03-28 09:26:37', '2025-03-28 09:26:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125232424010000', 2, 1, 1, 'ASRS-0386', 'P2', 'A02-36-09', '2025-03-28 09:27:12', '2025-03-28 09:27:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125267827010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A04-31-04', '2025-03-28 09:27:48', '2025-03-28 09:27:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125287925010000', 2, 1, 1, 'ASRS-1683', 'P2', 'A02-37-08', '2025-03-28 09:28:08', '2025-03-28 09:28:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125312519010000', 2, 1, 1, 'ASRS-1531', 'P2', 'A03-35-04', '2025-03-28 09:28:33', '2025-03-28 09:28:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125324523010000', 2, 1, 1, 'ASRS-0348', 'P2', 'A03-38-01', '2025-03-28 09:28:45', '2025-03-28 09:28:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125343128010000', 2, 1, 1, 'ASRS-1254', 'P2', 'A02-38-07', '2025-03-28 09:29:03', '2025-03-28 09:29:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125359300010000', 2, 1, 1, 'ASRS-1258', 'P2', 'A02-39-06', '2025-03-28 09:29:19', '2025-03-28 09:29:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125373122010000', 2, 1, 1, 'ASRS-1250', 'P2', 'A03-31-10', '2025-03-28 09:29:33', '2025-03-28 09:29:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125386910010000', 2, 1, 1, 'ASRS-1667', 'P2', 'A02-40-05', '2025-03-28 09:29:47', '2025-03-28 09:29:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125409409010000', 2, 1, 1, 'ASRS-1592', 'P2', 'A03-35-06', '2025-03-28 09:30:09', '2025-03-28 09:30:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125414528010000', 2, 1, 1, 'ASRS-1222', 'P2', 'A02-41-04', '2025-03-28 09:30:15', '2025-03-28 09:30:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125428313010000', 2, 1, 1, 'ASRS-0378', 'P2', 'A04-31-10', '2025-03-28 09:30:28', '2025-03-28 09:30:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125442113010000', 2, 1, 1, 'ASRS-1220', 'P2', 'A02-42-03', '2025-03-28 09:30:42', '2025-03-28 09:30:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125455910010000', 2, 1, 1, 'ASRS-1259', 'P2', 'A04-32-09', '2025-03-28 09:30:56', '2025-03-28 09:30:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125470924010000', 2, 1, 1, 'ASRS-1219', 'P2', 'A04-33-08', '2025-03-28 09:31:11', '2025-03-28 09:31:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125485613010000', 2, 1, 1, 'ASRS-1223', 'P2', 'A01-35-11', '2025-03-28 09:31:26', '2025-03-28 09:31:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125501809010000', 2, 1, 1, 'ASRS-1244', 'P2', 'A01-36-10', '2025-03-28 09:31:42', '2025-03-28 09:31:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125556728010000', 2, 1, 1, 'ASRS-1271', 'P2', 'A04-34-07', '2025-03-28 09:32:37', '2025-03-28 09:32:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125568422010000', 2, 1, 1, 'ASRS-1660', 'P2', 'A04-35-06', '2025-03-28 09:32:48', '2025-03-28 09:32:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125587331010000', 2, 1, 1, 'ASRS-1268', 'P2', 'A01-37-09', '2025-03-28 09:33:07', '2025-03-28 09:33:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125602605010000', 2, 2, 1, 'ASRS-0301', 'A01-40-05', '', '2025-03-28 09:33:23', '2025-03-28 09:33:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125602605010001', 2, 2, 1, 'ASRS-0384', 'A04-38-02', '', '2025-03-28 09:33:23', '2025-03-28 09:33:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125684605010000', 2, 2, 1, 'ASRS-0501', 'A03-29-06', '', '2025-03-28 09:34:45', '2025-03-28 09:34:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125690604010000', 2, 2, 1, 'ASRS-0525', 'A02-39-05', '', '2025-03-28 09:34:51', '2025-03-28 09:34:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125772605010000', 2, 2, 1, 'ASRS-0313', 'A02-35-09', '', '2025-03-28 09:36:13', '2025-03-28 09:36:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125870812010000', 2, 1, 1, 'ASRS-0384', 'P2', 'A03-29-06', '2025-03-28 09:37:51', '2025-03-28 09:37:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125927226010000', 2, 1, 1, 'ASRS-0525', 'P2', 'A02-35-09', '2025-03-28 09:38:47', '2025-03-28 09:38:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743125974613010000', 2, 1, 1, 'ASRS-0501', 'P2', 'A04-38-02', '2025-03-28 09:39:35', '2025-03-28 09:39:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126017834010000', 2, 1, 1, 'ASRS-0313', 'P2', 'A02-39-05', '2025-03-28 09:40:18', '2025-03-28 09:40:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126032232010000', 2, 1, 1, 'ASRS-0017', 'P2', 'A04-36-05', '2025-03-28 09:40:32', '2025-03-28 09:40:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126046028010000', 2, 1, 1, 'ASRS-1885', 'P2', 'A01-40-05', '2025-03-28 09:40:46', '2025-03-28 09:40:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126057711010000', 2, 1, 1, 'ASRS-1630', 'P2', 'A04-37-04', '2025-03-28 09:40:58', '2025-03-28 09:40:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126076916010000', 2, 1, 1, 'ASRS-0999', 'P2', 'A01-39-07', '2025-03-28 09:41:17', '2025-03-28 09:41:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126105413010000', 2, 1, 1, 'ASRS-0523', 'P2', 'A04-38-03', '2025-03-28 09:41:45', '2025-03-28 09:41:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126119212010000', 2, 1, 1, 'ASRS-0347', 'P2', 'A01-40-06', '2025-03-28 09:41:59', '2025-03-28 09:41:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126133011010000', 2, 1, 1, 'ASRS-0362', 'P2', 'A04-39-02', '2025-03-28 09:42:13', '2025-03-28 09:42:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126143825010000', 2, 1, 1, 'ASRS-0371', 'P2', 'A01-41-05', '2025-03-28 09:42:24', '2025-03-28 09:42:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126157615010000', 2, 1, 1, 'ASRS-0901', 'P2', 'A04-40-01', '2025-03-28 09:42:38', '2025-03-28 09:42:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126172014010000', 2, 1, 1, 'ASRS-0889', 'P2', 'A01-42-04', '2025-03-28 09:42:52', '2025-03-28 09:42:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126199018010000', 2, 1, 1, 'ASRS-1604', 'P2', 'A03-31-11', '2025-03-28 09:43:19', '2025-03-28 09:43:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126211015010000', 2, 1, 1, 'ASRS-1261', 'P2', 'A02-35-11', '2025-03-28 09:43:31', '2025-03-28 09:43:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126224810010000', 2, 1, 1, 'ASRS-1371', 'P2', 'A03-32-10', '2025-03-28 09:43:45', '2025-03-28 09:43:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126252713010000', 2, 1, 1, 'ASRS-0302', 'P2', 'A02-36-10', '2025-03-28 09:44:13', '2025-03-28 09:44:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126267118010000', 2, 1, 1, 'ASRS-0314', 'P2', 'A03-33-09', '2025-03-28 09:44:27', '2025-03-28 09:44:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126280928010000', 2, 1, 1, 'ASRS-0272', 'P2', 'A03-34-08', '2025-03-28 09:44:41', '2025-03-28 09:44:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126294728010000', 2, 1, 1, 'ASRS-0327', 'P2', 'A02-37-09', '2025-03-28 09:44:55', '2025-03-28 09:44:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743126304616010000', 2, 1, 1, 'ASRS-1257', 'P2', 'A02-38-08', '2025-03-28 09:45:05', '2025-03-28 09:45:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129025961010000', 2, 1, 1, 'ASRS-1530', 'P3', 'A02-39-07', '2025-03-28 10:30:26', '2025-03-28 10:30:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129042450010000', 2, 1, 1, 'ASRS-0360', 'P3', 'A03-35-07', '2025-03-28 10:30:42', '2025-03-28 10:30:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129053869010000', 2, 1, 1, 'ASRS-0524', 'P3', 'A02-40-06', '2025-03-28 10:30:54', '2025-03-28 10:30:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129067664010000', 2, 1, 1, 'ASRS-1028', 'P3', 'A03-36-06', '2025-03-28 10:31:08', '2025-03-28 10:31:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129081755010000', 2, 1, 1, 'ASRS-1904', 'P3', 'A02-41-05', '2025-03-28 10:31:22', '2025-03-28 10:31:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129091352010000', 2, 1, 1, 'ASRS-1903', 'P3', 'A03-37-05', '2025-03-28 10:31:31', '2025-03-28 10:31:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129099609010000', 2, 2, 1, 'ASRS-1093', 'A01-02-11', '', '2025-03-28 10:31:40', '2025-03-28 10:31:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129099609010001', 2, 2, 1, 'ASRS-1224', 'A03-01-06', '', '2025-03-28 10:31:40', '2025-03-28 10:31:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129186605010000', 2, 2, 1, 'ASRS-1264', 'A04-01-08', '', '2025-03-28 10:33:07', '2025-03-28 10:33:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129190608010000', 2, 2, 1, 'ASRS-1544', 'A02-02-10', '', '2025-03-28 10:33:11', '2025-03-28 10:33:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129265603010000', 2, 2, 1, 'ASRS-0909', 'A04-03-09', '', '2025-03-28 10:34:26', '2025-03-28 10:34:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743129273605010000', 2, 2, 1, 'ASRS-1242', 'A02-01-03', '', '2025-03-28 10:34:34', '2025-03-28 10:34:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131635984010000', 2, 1, 1, 'ASRS-0909', 'P3', 'A02-01-03', '2025-03-28 11:13:56', '2025-03-28 11:13:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131644982010000', 2, 1, 1, 'ASRS-1242', 'P3', 'A03-01-06', '2025-03-28 11:14:05', '2025-03-28 11:14:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131656969010000', 2, 1, 1, 'ASRS-1093', 'P3', 'A02-02-10', '2025-03-28 11:14:17', '2025-03-28 11:14:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131682470010000', 2, 1, 1, 'ASRS-1544', 'P3', 'A01-02-11', '2025-03-28 11:14:42', '2025-03-28 11:14:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131696284010000', 2, 1, 1, 'ASRS-1264', 'P3', 'A04-01-08', '2025-03-28 11:14:56', '2025-03-28 11:14:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743131706772010000', 2, 1, 1, 'ASRS-1224', 'P3', 'A04-03-09', '2025-03-28 11:15:07', '2025-03-28 11:15:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743133432604010000', 2, 2, 1, 'ASRS-1254', 'A02-38-07', '', '2025-03-28 11:43:53', '2025-03-28 11:43:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743133759671010000', 2, 1, 1, 'ASRS-1254', 'P2', 'A02-38-07', '2025-03-28 11:49:20', '2025-03-28 11:49:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743133776604010000', 2, 2, 9, 'ASRS-1528', 'A01-38-07', '', '2025-03-28 11:49:37', '2025-03-28 11:49:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743133995170010000', 2, 1, 1, 'ASRS-1528', 'P2', 'A01-38-07', '2025-03-28 11:53:15', '2025-03-28 11:53:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134418604010000', 2, 2, 9, 'ASRS-1268', 'A01-37-09', '', '2025-03-28 12:00:19', '2025-03-28 12:00:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134540603010000', 2, 2, 1, 'ASRS-1251', 'A01-01-06', '', '2025-03-28 12:02:21', '2025-03-28 12:02:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134540603010001', 2, 2, 1, 'ASRS-0956', 'A04-02-11', '', '2025-03-28 12:02:21', '2025-03-28 12:02:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134566686010000', 2, 1, 1, 'ASRS-1268', 'P2', 'A01-37-09', '2025-03-28 12:02:47', '2025-03-28 12:02:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134576605010000', 2, 2, 1, 'ASRS-1191', 'A02-01-06', '', '2025-03-28 12:02:57', '2025-03-28 12:02:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134579605010000', 2, 2, 1, 'ASRS-0958', 'A03-03-01', '', '2025-03-28 12:03:00', '2025-03-28 12:03:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134612604010000', 2, 2, 1, 'ASRS-1267', 'A01-01-10', '', '2025-03-28 12:03:33', '2025-03-28 12:03:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134616604010000', 2, 2, 1, 'ASRS-0961', 'A04-05-06', '', '2025-03-28 12:03:37', '2025-03-28 12:03:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134655608010000', 2, 2, 1, 'ASRS-0964', 'A04-04-05', '', '2025-03-28 12:04:16', '2025-03-28 12:04:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134693604010000', 2, 2, 1, 'ASRS-0967', 'A03-04-04', '', '2025-03-28 12:04:54', '2025-03-28 12:04:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134695602010000', 2, 2, 1, 'ASRS-0623', 'A01-05-05', '', '2025-03-28 12:04:56', '2025-03-28 12:04:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134731604010000', 2, 2, 1, 'ASRS-0970', 'A03-04-05', '', '2025-03-28 12:05:32', '2025-03-28 12:05:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134822574010000', 2, 1, 1, 'ASRS-1191', 'P3', 'A01-01-06', '2025-03-28 12:07:03', '2025-03-28 12:07:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134840838010000', 2, 1, 1, 'ASRS-1251', 'P3', 'A03-03-01', '2025-03-28 12:07:21', '2025-03-28 12:07:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134857994010000', 2, 1, 1, 'ASRS-0958', 'P3', 'A02-01-06', '2025-03-28 12:07:38', '2025-03-28 12:07:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134871793010000', 2, 1, 1, 'ASRS-0956', 'P3', 'A01-05-05', '2025-03-28 12:07:52', '2025-03-28 12:07:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134892495010000', 2, 1, 1, 'ASRS-1267', 'P3', 'A03-04-04', '2025-03-28 12:08:12', '2025-03-28 12:08:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134906311010000', 2, 1, 1, 'ASRS-0964', 'P3', 'A01-01-10', '2025-03-28 12:08:26', '2025-03-28 12:08:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134920078010000', 2, 1, 1, 'ASRS-0961', 'P3', 'A03-04-05', '2025-03-28 12:08:40', '2025-03-28 12:08:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134960290010000', 2, 1, 1, 'ASRS-0970', 'P3', 'A02-42-04', '2025-03-28 12:09:20', '2025-03-28 12:09:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134971979010000', 2, 1, 1, 'ASRS-0623', 'P3', 'A04-04-05', '2025-03-28 12:09:32', '2025-03-28 12:09:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743134982806010000', 2, 1, 1, 'ASRS-0967', 'P3', 'A01-36-11', '2025-03-28 12:09:43', '2025-03-28 12:09:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743135194604010000', 2, 2, 9, 'ASRS-1528', 'A01-38-07', '', '2025-03-28 12:13:15', '2025-03-28 12:13:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743135453785010000', 2, 1, 1, 'ASRS-1528', 'P2', 'A01-38-07', '2025-03-28 12:17:34', '2025-03-28 12:17:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743141239673010000', 2, 1, 1, 'ASRS-0301', 'P2', 'A01-37-10', '2025-03-28 13:54:00', '2025-03-28 13:54:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142162603010000', 2, 2, 9, 'ASRS-0364', 'A01-42-01', '', '2025-03-28 14:09:23', '2025-03-28 14:09:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142162603010001', 2, 2, 9, 'ASRS-0274', 'A03-32-08', '', '2025-03-28 14:09:23', '2025-03-28 14:09:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142212605010000', 2, 2, 9, 'ASRS-0269', 'A01-36-07', '', '2025-03-28 14:10:13', '2025-03-28 14:10:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142216604010000', 2, 2, 9, 'ASRS-0247', 'A04-28-11', '', '2025-03-28 14:10:17', '2025-03-28 14:10:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142541654010000', 2, 1, 1, 'ASRS-0269', 'P3', 'A01-36-07', '2025-03-28 14:15:42', '2025-03-28 14:15:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142623539010000', 2, 1, 1, 'ASRS-0247', 'P3', 'A01-42-01', '2025-03-28 14:17:04', '2025-03-28 14:17:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142634605010000', 2, 2, 9, 'ASRS-1246', 'A01-41-02', '', '2025-03-28 14:17:15', '2025-03-28 14:17:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142759604010000', 2, 2, 9, 'ASRS-0300', 'A03-34-05', '', '2025-03-28 14:19:20', '2025-03-28 14:19:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142812604010000', 2, 2, 9, 'ASRS-0248', 'A01-40-03', '', '2025-03-28 14:20:13', '2025-03-28 14:20:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142843604010000', 2, 2, 9, 'ASRS-0276', 'A04-30-09', '', '2025-03-28 14:20:44', '2025-03-28 14:20:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142884605010000', 2, 2, 9, 'ASRS-0249', 'A01-37-06', '', '2025-03-28 14:21:25', '2025-03-28 14:21:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743142906605010000', 2, 2, 9, 'ASRS-0275', 'A04-29-10', '', '2025-03-28 14:21:47', '2025-03-28 14:21:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743168358605010000', 2, 2, 1, 'ASRS-1529', 'A01-32-11', '', '2025-03-28 21:25:59', '2025-03-28 21:26:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743207907451010000', 2, 1, 1, 'ASRS-0359', 'P3', 'A01-37-06', '2025-03-29 08:25:07', '2025-03-29 08:25:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209126038010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-32-11', '2025-03-29 08:45:26', '2025-03-29 08:45:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209165032010000', 2, 1, 1, 'ASRS-0249', 'P3', 'A04-05-06', '2025-03-29 08:46:05', '2025-03-29 08:46:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209196836010000', 2, 1, 1, 'ASRS-0276', 'P3', 'A01-40-03', '2025-03-29 08:46:37', '2025-03-29 08:46:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209201016010000', 2, 1, 1, 'ASRS-0300', 'P3', 'A01-41-02', '2025-03-29 08:46:41', '2025-03-29 08:46:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209253214010000', 2, 1, 1, 'ASRS-1246', 'P3', 'A04-02-11', '2025-03-29 08:47:33', '2025-03-29 08:47:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209257434010000', 2, 1, 1, 'ASRS-0248', 'P3', 'A03-34-05', '2025-03-29 08:47:37', '2025-03-29 08:47:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209340516010000', 2, 1, 1, 'ASRS-1035', 'P3', 'A01-38-09', '2025-03-29 08:49:01', '2025-03-29 08:49:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743209345342010000', 2, 1, 1, 'ASRS-1392', 'P3', 'A04-28-11', '2025-03-29 08:49:05', '2025-03-29 08:49:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212729604010000', 2, 2, 1, 'ASRS-0315', 'A04-29-06', '', '2025-03-29 09:45:30', '2025-03-29 09:45:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212729605010000', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-29 09:45:30', '2025-03-29 09:45:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212774604010000', 2, 2, 1, 'ASRS-0388', 'A04-32-03', '', '2025-03-29 09:46:15', '2025-03-29 09:46:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212778605010000', 2, 2, 1, 'ASRS-0313', 'A02-39-05', '', '2025-03-29 09:46:19', '2025-03-29 09:46:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212836604010000', 2, 2, 1, 'ASRS-0304', 'A02-37-03', '', '2025-03-29 09:47:17', '2025-03-29 09:47:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212894605010000', 2, 2, 1, 'ASRS-0350', 'A02-39-01', '', '2025-03-29 09:48:15', '2025-03-29 09:48:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743212953605010000', 2, 2, 1, 'ASRS-0520', 'A01-35-10', '', '2025-03-29 09:49:14', '2025-03-29 09:49:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743213010604010000', 2, 2, 1, 'ASRS-0334', 'A01-39-06', '', '2025-03-29 09:50:11', '2025-03-29 09:50:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743214507605010000', 2, 2, 1, 'ASRS-1900', 'A01-34-11', '', '2025-03-29 10:15:08', '2025-03-29 10:15:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220243157010000', 2, 2, 1, 'ASRS-1436', 'A01-42-03', '', '2025-03-29 11:50:43', '2025-03-29 11:50:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220300291010000', 2, 1, 1, 'ASRS-0350', 'P2', 'A01-34-06', '2025-03-29 11:51:40', '2025-03-29 11:51:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220532775010000', 2, 1, 1, 'ASRS-1436', 'P2', 'A02-37-03', '2025-03-29 11:55:33', '2025-03-29 11:55:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220595440010000', 2, 1, 1, 'ASRS-0273', 'P2', 'A04-29-06', '2025-03-29 11:56:35', '2025-03-29 11:56:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220609276010000', 2, 1, 1, 'ASRS-0328', 'P2', 'A02-39-01', '2025-03-29 11:56:49', '2025-03-29 11:56:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220623043010000', 2, 1, 1, 'ASRS-0330', 'P2', 'A02-39-05', '2025-03-29 11:57:03', '2025-03-29 11:57:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220841745010000', 2, 1, 1, 'ASRS-0313', 'P2', 'A01-34-11', '2025-03-29 12:00:42', '2025-03-29 12:00:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220923643010000', 2, 1, 1, 'ASRS-0332', 'P2', 'A01-35-10', '2025-03-29 12:02:04', '2025-03-29 12:02:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220956132010000', 2, 2, 1, 'ASRS-0324', 'A02-41-01', '', '2025-03-29 12:02:36', '2025-03-29 12:02:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220956133010000', 2, 2, 1, 'ASRS-0305', 'A04-31-05', '', '2025-03-29 12:02:36', '2025-03-29 12:02:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220970142010000', 2, 1, 1, 'ASRS-0388', 'P2', 'A04-32-03', '2025-03-29 12:02:50', '2025-03-29 12:02:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743220974350010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A01-39-06', '2025-03-29 12:02:54', '2025-03-29 12:02:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221000124010000', 2, 2, 1, 'ASRS-0340', 'A04-34-06', '', '2025-03-29 12:03:20', '2025-03-29 12:03:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221007055010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-42-03', '2025-03-29 12:03:27', '2025-03-29 12:03:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221035124010000', 2, 2, 1, 'ASRS-1027', 'A01-37-08', '', '2025-03-29 12:03:55', '2025-03-29 12:03:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221078124010000', 2, 2, 1, 'ASRS-1032', 'A03-33-08', '', '2025-03-29 12:04:38', '2025-03-29 12:04:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221117124010000', 2, 2, 1, 'ASRS-1529', 'A01-32-11', '', '2025-03-29 12:05:17', '2025-03-29 12:05:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221138755010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-31-05', '2025-03-29 12:05:39', '2025-03-29 12:05:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221204451010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A02-41-01', '2025-03-29 12:06:44', '2025-03-29 12:06:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221380254010000', 2, 1, 1, 'ASRS-0305', 'P2', 'A01-32-11', '2025-03-29 12:09:40', '2025-03-29 12:09:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221418661010000', 2, 1, 1, 'ASRS-0324', 'P2', 'A04-29-10', '2025-03-29 12:10:19', '2025-03-29 12:10:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221454943010000', 2, 1, 1, 'ASRS-0340', 'P2', 'A01-37-08', '2025-03-29 12:10:55', '2025-03-29 12:10:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221592045010000', 2, 1, 1, 'ASRS-1027', 'P2', 'A01-39-08', '2025-03-29 12:13:12', '2025-03-29 12:13:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221639748010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A04-30-09', '2025-03-29 12:14:00', '2025-03-29 12:14:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221691125010000', 2, 2, 1, 'ASRS-0306', 'A03-37-03', '', '2025-03-29 12:14:51', '2025-03-29 12:14:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221691125010001', 2, 2, 1, 'ASRS-0333', 'A02-33-10', '', '2025-03-29 12:14:51', '2025-03-29 12:14:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221709656010000', 2, 1, 1, 'ASRS-1032', 'P2', 'A01-40-07', '2025-03-29 12:15:10', '2025-03-29 12:15:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221738133010000', 2, 2, 1, 'ASRS-0392', 'A04-37-03', '', '2025-03-29 12:15:38', '2025-03-29 12:15:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221741125010000', 2, 2, 1, 'ASRS-1902', 'A01-31-08', '', '2025-03-29 12:15:41', '2025-03-29 12:15:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221822124010000', 2, 2, 1, 'ASRS-1221', 'A01-29-07', '', '2025-03-29 12:17:02', '2025-03-29 12:17:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221875126010000', 2, 2, 1, 'ASRS-1526', 'A01-36-03', '', '2025-03-29 12:17:55', '2025-03-29 12:17:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221932127010000', 2, 2, 1, 'ASRS-0528', 'A01-42-02', '', '2025-03-29 12:18:52', '2025-03-29 12:18:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221960752010000', 2, 1, 1, 'ASRS-0306', 'P2', 'A01-29-07', '2025-03-29 12:19:21', '2025-03-29 12:19:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743221992126010000', 2, 2, 1, 'ASRS-0551', 'A01-39-02', '', '2025-03-29 12:19:52', '2025-03-29 12:19:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743222021644010000', 2, 1, 1, 'ASRS-0333', 'P2', 'A03-32-08', '2025-03-29 12:20:22', '2025-03-29 12:20:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743222178547010000', 2, 1, 1, 'ASRS-1902', 'P2', 'A01-31-08', '2025-03-29 12:22:59', '2025-03-29 12:22:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743222227446010000', 2, 1, 1, 'ASRS-1221', 'P2', 'A03-37-03', '2025-03-29 12:23:47', '2025-03-29 12:23:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743222263412010000', 2, 1, 1, 'ASRS-1526', 'P2', 'A01-36-03', '2025-03-29 12:24:23', '2025-03-29 12:24:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743222352851010000', 2, 1, 1, 'ASRS-0528', 'P2', 'A01-39-02', '2025-03-29 12:25:53', '2025-03-29 12:25:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225700163010000', 2, 1, 1, 'ASRS-0551', 'P2', 'A02-33-10', '2025-03-29 13:21:40', '2025-03-29 13:21:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225766532010000', 2, 2, 1, 'ASRS-0551', 'A02-33-10', '', '2025-03-29 13:22:47', '2025-03-29 13:22:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225877529010000', 2, 2, 1, 'ASRS-0519', 'A04-39-01', '', '2025-03-29 13:24:38', '2025-03-29 13:24:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225877529010001', 2, 2, 1, 'ASRS-1025', 'A01-35-04', '', '2025-03-29 13:24:38', '2025-03-29 13:24:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225892728010000', 2, 1, 1, 'ASRS-0551', 'P2', 'A02-33-10', '2025-03-29 13:24:53', '2025-03-29 13:24:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225934530010000', 2, 2, 1, 'ASRS-1034', 'A01-38-08', '', '2025-03-29 13:25:35', '2025-03-29 13:25:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225942530010000', 2, 2, 1, 'ASRS-0350', 'A01-34-06', '', '2025-03-29 13:25:43', '2025-03-29 13:25:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225942530010001', 2, 2, 1, 'ASRS-0384', 'A03-29-06', '', '2025-03-29 13:25:43', '2025-03-29 13:25:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743225965314010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A04-34-06', '2025-03-29 13:26:05', '2025-03-29 13:26:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226014530010000', 2, 2, 1, 'ASRS-1027', 'A01-39-08', '', '2025-03-29 13:26:55', '2025-03-29 13:26:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226030722010000', 2, 1, 1, 'ASRS-0519', 'P2', 'A01-35-04', '2025-03-29 13:27:11', '2025-03-29 13:27:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226073617010000', 2, 1, 1, 'ASRS-1025', 'P2', 'A03-29-06', '2025-03-29 13:27:54', '2025-03-29 13:27:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226119529010000', 2, 2, 1, 'ASRS-1436', 'A02-37-03', '', '2025-03-29 13:28:40', '2025-03-29 13:28:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226147531010000', 2, 2, 1, 'ASRS-1025', 'A03-29-06', '', '2025-03-29 13:29:08', '2025-03-29 13:29:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226164515010000', 2, 1, 1, 'ASRS-1034', 'P2', 'A01-34-06', '2025-03-29 13:29:25', '2025-03-29 13:29:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226203515010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A03-29-06', '2025-03-29 13:30:04', '2025-03-29 13:30:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226242530010000', 2, 2, 1, 'ASRS-0316', 'A02-42-02', '', '2025-03-29 13:30:43', '2025-03-29 13:30:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226242530010001', 2, 2, 1, 'ASRS-1031', 'A04-31-04', '', '2025-03-29 13:30:43', '2025-03-29 13:30:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226256336010000', 2, 1, 1, 'ASRS-1025', 'P2', 'A02-37-03', '2025-03-29 13:30:56', '2025-03-29 13:30:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226270127010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-37-03', '2025-03-29 13:31:10', '2025-03-29 13:31:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226294529010000', 2, 2, 1, 'ASRS-0338', 'A01-36-09', '', '2025-03-29 13:31:35', '2025-03-29 13:31:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226338223010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-42-02', '2025-03-29 13:32:18', '2025-03-29 13:32:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226482529010000', 2, 2, 1, 'ASRS-0324', 'A04-29-10', '', '2025-03-29 13:34:43', '2025-03-29 13:34:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226482529010001', 2, 2, 1, 'ASRS-0305', 'A01-32-11', '', '2025-03-29 13:34:43', '2025-03-29 13:34:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226502917010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A02-42-02', '2025-03-29 13:35:03', '2025-03-29 13:35:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226528529010000', 2, 2, 1, 'ASRS-0336', 'A04-38-01', '', '2025-03-29 13:35:29', '2025-03-29 13:35:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226531530010000', 2, 2, 1, 'ASRS-0340', 'A01-37-08', '', '2025-03-29 13:35:32', '2025-03-29 13:35:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226541334010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A04-31-04', '2025-03-29 13:35:41', '2025-03-29 13:35:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226581530010000', 2, 2, 1, 'ASRS-1529', 'A04-30-09', '', '2025-03-29 13:36:22', '2025-03-29 13:36:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226615530010000', 2, 2, 1, 'ASRS-1245', 'A02-40-04', '', '2025-03-29 13:36:56', '2025-03-29 13:36:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226618435010000', 2, 1, 1, 'ASRS-0316', 'P2', 'A01-32-11', '2025-03-29 13:36:58', '2025-03-29 13:36:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226672530010002', 2, 2, 1, 'ASRS-0337', 'A01-41-04', '', '2025-03-29 13:37:53', '2025-03-29 13:37:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226672530010004', 2, 2, 1, 'ASRS-0501', 'A04-38-02', '', '2025-03-29 13:37:53', '2025-03-29 13:37:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226673530010000', 2, 2, 1, 'ASRS-1027', 'A01-42-02', '', '2025-03-29 13:37:54', '2025-03-29 13:37:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226690116010000', 2, 1, 1, 'ASRS-0338', 'P2', 'A04-29-10', '2025-03-29 13:38:10', '2025-03-29 13:38:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226735424010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-40-04', '2025-03-29 13:38:55', '2025-03-29 13:38:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226759529010000', 2, 2, 1, 'ASRS-0551', 'A02-33-10', '', '2025-03-29 13:39:20', '2025-03-29 13:39:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226787917010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-30-09', '2025-03-29 13:39:48', '2025-03-29 13:39:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226827233010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A01-42-02', '2025-03-29 13:40:27', '2025-03-29 13:40:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226856924010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-38-01', '2025-03-29 13:40:57', '2025-03-29 13:40:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226923241010000', 2, 1, 1, 'ASRS-0501', 'P2', 'A04-38-02', '2025-03-29 13:42:03', '2025-03-29 13:42:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226937021010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A02-33-10', '2025-03-29 13:42:17', '2025-03-29 13:42:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226983223010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A04-39-01', '2025-03-29 13:43:03', '2025-03-29 13:43:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226992530010000', 2, 2, 1, 'ASRS-1524', 'A03-31-06', '', '2025-03-29 13:43:13', '2025-03-29 13:43:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743226992530010001', 2, 2, 1, 'ASRS-0522', 'A02-32-09', '', '2025-03-29 13:43:13', '2025-03-29 13:43:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227023728010000', 2, 1, 1, 'ASRS-0337', 'P2', 'A01-36-09', '2025-03-29 13:43:44', '2025-03-29 13:43:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227049535010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A03-33-08', '2025-03-29 13:44:10', '2025-03-29 13:44:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227107529010000', 2, 2, 1, 'ASRS-0318', 'A01-41-03', '', '2025-03-29 13:45:08', '2025-03-29 13:45:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227129620010000', 2, 1, 1, 'ASRS-0551', 'P3', 'A02-32-09', '2025-03-29 13:45:30', '2025-03-29 13:45:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227157529010000', 2, 2, 1, 'ASRS-0383', 'A01-33-06', '', '2025-03-29 13:45:58', '2025-03-29 13:45:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227235529010000', 2, 2, 1, 'ASRS-1268', 'A01-37-09', '', '2025-03-29 13:47:16', '2025-03-29 13:47:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227235529010001', 2, 2, 1, 'ASRS-0272', 'A03-34-08', '', '2025-03-29 13:47:16', '2025-03-29 13:47:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227306327010000', 2, 1, 1, 'ASRS-0273', 'P1', 'A01-33-06', '2025-03-29 13:48:26', '2025-03-29 13:48:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227330943010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A03-31-06', '2025-03-29 13:48:51', '2025-03-29 13:48:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227381929010000', 2, 1, 1, 'ASRS-0522', 'P2', 'A01-41-03', '2025-03-29 13:49:42', '2025-03-29 13:49:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227397531010000', 2, 2, 1, 'ASRS-1088', 'A02-32-11', '', '2025-03-29 13:49:58', '2025-03-29 13:49:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227399025010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-34-08', '2025-03-29 13:49:59', '2025-03-29 13:49:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227415527010000', 2, 1, 1, 'ASRS-1524', 'P2', 'A01-37-08', '2025-03-29 13:50:16', '2025-03-29 13:50:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227495935010000', 2, 1, 1, 'ASRS-1268', 'P3', 'A03-38-04', '2025-03-29 13:51:36', '2025-03-29 13:51:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227555529010000', 2, 2, 1, 'ASRS-1268', 'A03-38-04', '', '2025-03-29 13:52:36', '2025-03-29 13:52:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227642531010000', 2, 2, 1, 'ASRS-0317', 'A04-31-08', '', '2025-03-29 13:54:03', '2025-03-29 13:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227642531010001', 2, 2, 1, 'ASRS-1902', 'A01-31-08', '', '2025-03-29 13:54:03', '2025-03-29 13:54:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227664843010000', 2, 1, 1, 'ASRS-1268', 'P3', 'A02-32-11', '2025-03-29 13:54:25', '2025-03-29 13:54:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227689529010000', 2, 2, 1, 'ASRS-0519', 'A01-35-04', '', '2025-03-29 13:54:50', '2025-03-29 13:54:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227692531010000', 2, 2, 1, 'ASRS-1221', 'A03-37-03', '', '2025-03-29 13:54:53', '2025-03-29 13:54:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227726645010000', 2, 1, 1, 'ASRS-1088', 'P2', 'A01-31-08', '2025-03-29 13:55:27', '2025-03-29 13:55:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227770530010000', 2, 2, 1, 'ASRS-0528', 'A01-39-02', '', '2025-03-29 13:56:11', '2025-03-29 13:56:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227852529010000', 2, 2, 1, 'ASRS-0527', 'A02-36-08', '', '2025-03-29 13:57:33', '2025-03-29 13:57:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227872530010000', 2, 2, 1, 'ASRS-0315', 'A04-34-06', '', '2025-03-29 13:57:53', '2025-03-29 13:57:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227872530010001', 2, 2, 1, 'ASRS-0332', 'A01-35-10', '', '2025-03-29 13:57:53', '2025-03-29 13:57:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227908529010000', 2, 2, 1, 'ASRS-1034', 'A01-34-06', '', '2025-03-29 13:58:29', '2025-03-29 13:58:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227924529010000', 2, 2, 1, 'ASRS-0388', 'A04-32-03', '', '2025-03-29 13:58:45', '2025-03-29 13:58:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227959530010000', 2, 2, 1, 'ASRS-0313', 'A01-34-11', '', '2025-03-29 13:59:20', '2025-03-29 13:59:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743227974529010000', 2, 2, 1, 'ASRS-0350', 'A04-37-03', '', '2025-03-29 13:59:35', '2025-03-29 13:59:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228027530010000', 2, 2, 1, 'ASRS-0334', 'A04-31-05', '', '2025-03-29 14:00:28', '2025-03-29 14:00:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228059530010000', 2, 2, 1, 'ASRS-0304', 'A02-41-01', '', '2025-03-29 14:01:00', '2025-03-29 14:01:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228118529010000', 2, 2, 1, 'ASRS-0520', 'A01-42-03', '', '2025-03-29 14:01:59', '2025-03-29 14:02:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228255543010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A01-35-04', '2025-03-29 14:04:16', '2025-03-29 14:04:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228307530010000', 2, 2, 1, 'ASRS-1436', 'A02-42-02', '', '2025-03-29 14:05:08', '2025-03-29 14:05:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228326951010000', 2, 1, 1, 'ASRS-0315', 'P2', 'A01-34-06', '2025-03-29 14:05:27', '2025-03-29 14:05:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228361162010000', 2, 1, 1, 'ASRS-0332', 'P2', 'A04-32-03', '2025-03-29 14:06:01', '2025-03-29 14:06:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228397153010000', 2, 1, 1, 'ASRS-0388', 'P2', 'A01-39-02', '2025-03-29 14:06:37', '2025-03-29 14:06:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228426559010000', 2, 1, 1, 'ASRS-0350', 'P2', 'A04-31-05', '2025-03-29 14:07:07', '2025-03-29 14:07:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228473637010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A02-41-01', '2025-03-29 14:07:54', '2025-03-29 14:07:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228496461010000', 2, 1, 1, 'ASRS-0334', 'P2', 'A04-31-08', '2025-03-29 14:08:16', '2025-03-29 14:08:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228522837010000', 2, 1, 1, 'ASRS-0313', 'P2', 'A02-36-08', '2025-03-29 14:08:43', '2025-03-29 14:08:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228548036010000', 2, 1, 1, 'ASRS-0304', 'P2', 'A02-42-02', '2025-03-29 14:09:08', '2025-03-29 14:09:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228556149010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-37-03', '2025-03-29 14:09:16', '2025-03-29 14:09:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228570234010000', 2, 1, 1, 'ASRS-0520', 'P2', 'A04-34-06', '2025-03-29 14:09:30', '2025-03-29 14:09:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228585838010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A01-34-11', '2025-03-29 14:09:46', '2025-03-29 14:09:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228607530010000', 2, 2, 1, 'ASRS-0324', 'A02-40-04', '', '2025-03-29 14:10:08', '2025-03-29 14:10:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228607530010001', 2, 2, 1, 'ASRS-0305', 'A04-30-09', '', '2025-03-29 14:10:08', '2025-03-29 14:10:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228625166010000', 2, 1, 1, 'ASRS-1436', 'P2', 'A04-37-03', '2025-03-29 14:10:25', '2025-03-29 14:10:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228655529010000', 2, 2, 1, 'ASRS-0340', 'A04-38-01', '', '2025-03-29 14:10:56', '2025-03-29 14:10:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228689531010000', 2, 2, 1, 'ASRS-1032', 'A01-40-07', '', '2025-03-29 14:11:30', '2025-03-29 14:11:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228733530010000', 2, 2, 1, 'ASRS-1027', 'A03-33-08', '', '2025-03-29 14:12:14', '2025-03-29 14:12:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228755958010000', 2, 1, 1, 'ASRS-0528', 'P3', 'A02-40-04', '2025-03-29 14:12:36', '2025-03-29 14:12:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228771529010000', 2, 2, 1, 'ASRS-1529', 'A02-33-10', '', '2025-03-29 14:12:52', '2025-03-29 14:12:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228795263010000', 2, 1, 1, 'ASRS-0305', 'P2', 'A04-30-09', '2025-03-29 14:13:15', '2025-03-29 14:13:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228799445010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A01-35-10', '2025-03-29 14:13:19', '2025-03-29 14:13:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228812529010000', 2, 2, 1, 'ASRS-0306', 'A01-29-07', '', '2025-03-29 14:13:33', '2025-03-29 14:13:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228812529010001', 2, 2, 1, 'ASRS-0338', 'A04-29-10', '', '2025-03-29 14:13:33', '2025-03-29 14:13:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228825858010000', 2, 1, 1, 'ASRS-0324', 'P2', 'A01-41-04', '2025-03-29 14:13:46', '2025-03-29 14:13:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228834849010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A04-38-01', '2025-03-29 14:13:55', '2025-03-29 14:13:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228856457010000', 2, 1, 1, 'ASRS-0340', 'P2', 'A03-33-08', '2025-03-29 14:14:16', '2025-03-29 14:14:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228902658010000', 2, 1, 1, 'ASRS-1032', 'P2', 'A01-29-07', '2025-03-29 14:15:03', '2025-03-29 14:15:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228904531010000', 2, 2, 1, 'ASRS-0316', 'A01-32-11', '', '2025-03-29 14:15:05', '2025-03-29 14:15:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743228979445010000', 2, 1, 1, 'ASRS-1027', 'P2', 'A04-29-10', '2025-03-29 14:16:19', '2025-03-29 14:16:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229007529010000', 2, 2, 1, 'ASRS-0333', 'A03-32-08', '', '2025-03-29 14:16:48', '2025-03-29 14:16:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229007529010001', 2, 2, 1, 'ASRS-1902', 'A02-41-01', '', '2025-03-29 14:16:48', '2025-03-29 14:16:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229022658010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A01-32-11', '2025-03-29 14:17:03', '2025-03-29 14:17:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229066529010000', 2, 2, 1, 'ASRS-1526', 'A01-36-03', '', '2025-03-29 14:17:47', '2025-03-29 14:17:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229075530010000', 2, 2, 1, 'ASRS-1221', 'A03-37-03', '', '2025-03-29 14:17:56', '2025-03-29 14:17:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229147530010000', 2, 2, 1, 'ASRS-0528', 'A02-40-04', '', '2025-03-29 14:19:08', '2025-03-29 14:19:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229213454010000', 2, 1, 1, 'ASRS-1902', 'P2', 'A01-36-03', '2025-03-29 14:20:13', '2025-03-29 14:20:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229231529010000', 2, 2, 1, 'ASRS-0551', 'A02-32-09', '', '2025-03-29 14:20:32', '2025-03-29 14:20:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229244065010000', 2, 1, 1, 'ASRS-0333', 'P2', 'A03-32-08', '2025-03-29 14:20:44', '2025-03-29 14:20:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229278244010000', 2, 1, 1, 'ASRS-1221', 'P2', 'A02-41-01', '2025-03-29 14:21:18', '2025-03-29 14:21:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229333744010000', 2, 1, 1, 'ASRS-1526', 'P2', 'A03-37-03', '2025-03-29 14:22:14', '2025-03-29 14:22:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229460950010000', 2, 1, 1, 'ASRS-0528', 'P2', 'A02-32-09', '2025-03-29 14:24:21', '2025-03-29 14:24:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229511060010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A03-38-04', '2025-03-29 14:25:11', '2025-03-29 14:25:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229557530010000', 2, 2, 1, 'ASRS-1031', 'A04-31-04', '', '2025-03-29 14:25:58', '2025-03-29 14:25:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229572529010000', 2, 2, 1, 'ASRS-0519', 'A01-34-11', '', '2025-03-29 14:26:13', '2025-03-29 14:26:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229582464010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-33-10', '2025-03-29 14:26:22', '2025-03-29 14:26:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229586645010000', 2, 1, 1, 'ASRS-0306', 'P2', 'A03-39-03', '2025-03-29 14:26:27', '2025-03-29 14:26:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229618530010000', 2, 2, 1, 'ASRS-1034', 'A01-35-10', '', '2025-03-29 14:26:59', '2025-03-29 14:27:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229743557010000', 2, 1, 1, 'ASRS-0519', 'P2', 'A02-40-04', '2025-03-29 14:29:04', '2025-03-29 14:29:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229774447010000', 2, 1, 1, 'ASRS-0331', 'P2', 'A04-31-04', '2025-03-29 14:29:34', '2025-03-29 14:29:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229782530010000', 2, 2, 1, 'ASRS-0316', 'A02-33-10', '', '2025-03-29 14:29:43', '2025-03-29 14:29:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229782531010000', 2, 2, 1, 'ASRS-0338', 'A03-38-04', '', '2025-03-29 14:29:43', '2025-03-29 14:29:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229799063010000', 2, 1, 1, 'ASRS-1034', 'P2', 'A01-34-11', '2025-03-29 14:29:59', '2025-03-29 14:29:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229807529010000', 2, 2, 1, 'ASRS-1683', 'A02-37-08', '', '2025-03-29 14:30:08', '2025-03-29 14:30:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229942758010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A02-33-10', '2025-03-29 14:32:23', '2025-03-29 14:32:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229974255010000', 2, 1, 1, 'ASRS-0316', 'P2', 'A03-38-04', '2025-03-29 14:32:54', '2025-03-29 14:32:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229995866010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A01-35-10', '2025-03-29 14:33:16', '2025-03-29 14:33:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743229997531010000', 2, 2, 1, 'ASRS-0331', 'A04-31-04', '', '2025-03-29 14:33:18', '2025-03-29 14:33:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230014144010000', 2, 1, 1, 'ASRS-0338', 'P2', 'A01-42-03', '2025-03-29 14:33:34', '2025-03-29 14:33:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230162530010000', 2, 2, 1, 'ASRS-0337', 'A01-36-09', '', '2025-03-29 14:36:03', '2025-03-29 14:36:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230162531010000', 2, 2, 1, 'ASRS-0501', 'A04-38-02', '', '2025-03-29 14:36:03', '2025-03-29 14:36:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230177673010000', 2, 1, 1, 'ASRS-0331', 'P2', 'A02-37-08', '2025-03-29 14:36:18', '2025-03-29 14:36:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230369964010000', 2, 1, 1, 'ASRS-0501', 'P2', 'A01-36-09', '2025-03-29 14:39:30', '2025-03-29 14:39:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230397530010000', 2, 2, 1, 'ASRS-1524', 'A01-37-08', '', '2025-03-29 14:39:58', '2025-03-29 14:39:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230414063010000', 2, 1, 1, 'ASRS-0337', 'P2', 'A04-31-04', '2025-03-29 14:40:14', '2025-03-29 14:40:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230478529010000', 2, 2, 1, 'ASRS-0522', 'A01-41-03', '', '2025-03-29 14:41:19', '2025-03-29 14:41:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230560154010000', 2, 1, 1, 'ASRS-1524', 'P2', 'A01-41-03', '2025-03-29 14:42:40', '2025-03-29 14:42:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230597529010000', 2, 2, 1, 'ASRS-1088', 'A01-31-08', '', '2025-03-29 14:43:18', '2025-03-29 14:43:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230615071010000', 2, 1, 1, 'ASRS-0522', 'P2', 'A01-37-08', '2025-03-29 14:43:35', '2025-03-29 14:43:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230766257010000', 2, 1, 1, 'ASRS-1088', 'P2', 'A01-31-08', '2025-03-29 14:46:06', '2025-03-29 14:46:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230797530010000', 2, 2, 1, 'ASRS-0271', 'A03-31-04', '', '2025-03-29 14:46:38', '2025-03-29 14:46:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230839529010000', 2, 2, 1, 'ASRS-0350', 'A04-31-05', '', '2025-03-29 14:47:20', '2025-03-29 14:47:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230867529010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-29 14:47:48', '2025-03-29 14:47:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230867529010001', 2, 2, 1, 'ASRS-0332', 'A04-32-03', '', '2025-03-29 14:47:48', '2025-03-29 14:47:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230914529010000', 2, 2, 1, 'ASRS-0313', 'A02-36-08', '', '2025-03-29 14:48:35', '2025-03-29 14:48:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230935529010000', 2, 2, 1, 'ASRS-0520', 'A04-34-06', '', '2025-03-29 14:48:56', '2025-03-29 14:48:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230971529010000', 2, 2, 1, 'ASRS-0304', 'A02-42-02', '', '2025-03-29 14:49:32', '2025-03-29 14:49:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743230987529010000', 2, 2, 1, 'ASRS-0334', 'A04-31-08', '', '2025-03-29 14:49:48', '2025-03-29 14:49:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231005051010000', 2, 1, 1, 'ASRS-0315', 'P2', 'A01-34-06', '2025-03-29 14:50:05', '2025-03-29 14:50:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231024874010000', 2, 1, 1, 'ASRS-0332', 'P2', 'A03-31-04', '2025-03-29 14:50:25', '2025-03-29 14:50:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231031529010000', 2, 2, 1, 'ASRS-0388', 'A01-39-02', '', '2025-03-29 14:50:32', '2025-03-29 14:50:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231037531010000', 2, 2, 1, 'ASRS-1436', 'A04-37-03', '', '2025-03-29 14:50:38', '2025-03-29 14:50:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231057561010000', 2, 1, 1, 'ASRS-0313', 'P2', 'A02-36-08', '2025-03-29 14:50:58', '2025-03-29 14:50:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231077372010000', 2, 1, 1, 'ASRS-0520', 'P2', 'A04-32-03', '2025-03-29 14:51:17', '2025-03-29 14:51:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231081573010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A02-42-02', '2025-03-29 14:51:22', '2025-03-29 14:51:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231111268010000', 2, 1, 1, 'ASRS-0304', 'P2', 'A04-31-05', '2025-03-29 14:51:51', '2025-03-29 14:51:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231142529010000', 2, 2, 1, 'ASRS-1531', 'A03-35-04', '', '2025-03-29 14:52:23', '2025-03-29 14:52:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231142529010001', 2, 2, 1, 'ASRS-0386', 'A02-36-09', '', '2025-03-29 14:52:23', '2025-03-29 14:52:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231167671010000', 2, 1, 1, 'ASRS-0334', 'P2', 'A01-39-02', '2025-03-29 14:52:48', '2025-03-29 14:52:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231187154010000', 2, 1, 1, 'ASRS-0350', 'P2', 'A04-31-08', '2025-03-29 14:53:07', '2025-03-29 14:53:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231219873010000', 2, 1, 1, 'ASRS-1436', 'P2', 'A02-36-09', '2025-03-29 14:53:40', '2025-03-29 14:53:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231237530010000', 2, 2, 1, 'ASRS-0324', 'A01-41-04', '', '2025-03-29 14:53:58', '2025-03-29 14:53:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231237530010001', 2, 2, 1, 'ASRS-0305', 'A04-30-09', '', '2025-03-29 14:53:58', '2025-03-29 14:53:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231252859010000', 2, 1, 1, 'ASRS-0388', 'P2', 'A03-35-04', '2025-03-29 14:54:13', '2025-03-29 14:54:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231311529010000', 2, 2, 1, 'ASRS-0340', 'A03-33-08', '', '2025-03-29 14:55:12', '2025-03-29 14:55:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231327529010000', 2, 2, 1, 'ASRS-1032', 'A01-29-07', '', '2025-03-29 14:55:28', '2025-03-29 14:55:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231388476010000', 2, 1, 1, 'ASRS-0305', 'P2', 'A01-41-04', '2025-03-29 14:56:28', '2025-03-29 14:56:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231390530010000', 2, 2, 1, 'ASRS-1027', 'A04-29-10', '', '2025-03-29 14:56:31', '2025-03-29 14:56:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231406159010000', 2, 1, 1, 'ASRS-0324', 'P2', 'A04-30-09', '2025-03-29 14:56:46', '2025-03-29 14:56:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231408529010000', 2, 2, 1, 'ASRS-1529', 'A01-32-11', '', '2025-03-29 14:56:49', '2025-03-29 14:56:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231467361010000', 2, 1, 1, 'ASRS-0340', 'P2', 'A01-29-07', '2025-03-29 14:57:47', '2025-03-29 14:57:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231539080010000', 2, 1, 1, 'ASRS-1032', 'P2', 'A01-32-11', '2025-03-29 14:58:59', '2025-03-29 14:58:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231571160010000', 2, 1, 1, 'ASRS-1027', 'P2', 'A04-29-10', '2025-03-29 14:59:31', '2025-03-29 14:59:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231577529010000', 2, 2, 1, 'ASRS-0306', 'A03-39-03', '', '2025-03-29 14:59:38', '2025-03-29 14:59:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231577529010001', 2, 2, 1, 'ASRS-1902', 'A01-36-03', '', '2025-03-29 14:59:38', '2025-03-29 14:59:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231594288010000', 2, 1, 1, 'ASRS-1529', 'P2', 'A01-37-09', '2025-03-29 14:59:54', '2025-03-29 14:59:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231626530010000', 2, 2, 1, 'ASRS-0333', 'A03-32-08', '', '2025-03-29 15:00:27', '2025-03-29 15:00:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231645530010000', 2, 2, 1, 'ASRS-1221', 'A02-41-01', '', '2025-03-29 15:00:46', '2025-03-29 15:00:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231701529010000', 2, 2, 1, 'ASRS-1526', 'A03-37-03', '', '2025-03-29 15:01:42', '2025-03-29 15:01:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231703775010000', 2, 1, 1, 'ASRS-0306', 'P2', 'A01-36-03', '2025-03-29 15:01:44', '2025-03-29 15:01:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231728530010000', 2, 2, 1, 'ASRS-0528', 'A02-32-09', '', '2025-03-29 15:02:09', '2025-03-29 15:02:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231753285010000', 2, 1, 1, 'ASRS-1902', 'P2', 'A03-32-08', '2025-03-29 15:02:33', '2025-03-29 15:02:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231800975010000', 2, 1, 1, 'ASRS-0333', 'P2', 'A02-41-01', '2025-03-29 15:03:21', '2025-03-29 15:03:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231808530010000', 2, 2, 1, 'ASRS-0331', 'A02-37-08', '', '2025-03-29 15:03:29', '2025-03-29 15:03:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231855285010000', 2, 1, 1, 'ASRS-1221', 'P2', 'A03-37-03', '2025-03-29 15:04:15', '2025-03-29 15:04:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231869672010000', 2, 1, 1, 'ASRS-1526', 'P2', 'A02-32-09', '2025-03-29 15:04:30', '2025-03-29 15:04:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231932530010000', 2, 2, 1, 'ASRS-0519', 'A02-40-04', '', '2025-03-29 15:05:33', '2025-03-29 15:05:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231932960010000', 2, 1, 1, 'ASRS-0528', 'P2', 'A04-34-06', '2025-03-29 15:05:33', '2025-03-29 15:05:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231950664010000', 2, 1, 1, 'ASRS-0331', 'P2', 'A02-37-08', '2025-03-29 15:05:51', '2025-03-29 15:05:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743231983665010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-38-08', '2025-03-29 15:06:24', '2025-03-29 15:06:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232002530010000', 2, 2, 1, 'ASRS-1034', 'A01-34-11', '', '2025-03-29 15:06:43', '2025-03-29 15:06:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232090778010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A04-37-03', '2025-03-29 15:08:11', '2025-03-29 15:08:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232094982010000', 2, 1, 1, 'ASRS-0519', 'P2', 'A02-40-04', '2025-03-29 15:08:15', '2025-03-29 15:08:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232142529010000', 2, 2, 1, 'ASRS-0316', 'A03-38-04', '', '2025-03-29 15:09:03', '2025-03-29 15:09:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232142529010001', 2, 2, 1, 'ASRS-1031', 'A02-33-10', '', '2025-03-29 15:09:03', '2025-03-29 15:09:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232160961010000', 2, 1, 1, 'ASRS-1034', 'P2', 'A04-38-02', '2025-03-29 15:09:21', '2025-03-29 15:09:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232167530010000', 2, 2, 1, 'ASRS-0271', 'A02-42-02', '', '2025-03-29 15:09:28', '2025-03-29 15:09:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232167530010001', 2, 2, 1, 'ASRS-0350', 'A04-31-08', '', '2025-03-29 15:09:28', '2025-03-29 15:09:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232269530010000', 2, 2, 1, 'ASRS-0338', 'A01-42-03', '', '2025-03-29 15:11:10', '2025-03-29 15:11:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232270203010000', 2, 1, 1, 'ASRS-0316', 'P2', 'A02-33-10', '2025-03-29 15:11:10', '2025-03-29 15:11:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232355072010000', 2, 1, 1, 'ASRS-1031', 'P2', 'A04-31-08', '2025-03-29 15:12:35', '2025-03-29 15:12:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232402529010000', 2, 2, 1, 'ASRS-0337', 'A04-31-04', '', '2025-03-29 15:13:23', '2025-03-29 15:13:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232402529010001', 2, 2, 1, 'ASRS-0501', 'A01-36-09', '', '2025-03-29 15:13:23', '2025-03-29 15:13:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232418385010000', 2, 1, 1, 'ASRS-0338', 'P2', 'A02-42-02', '2025-03-29 15:13:38', '2025-03-29 15:13:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232467879010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A04-31-04', '2025-03-29 15:14:28', '2025-03-29 15:14:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232522529010000', 2, 2, 1, 'ASRS-1531', 'A01-38-08', '', '2025-03-29 15:15:23', '2025-03-29 15:15:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232522529010001', 2, 2, 1, 'ASRS-0386', 'A04-37-03', '', '2025-03-29 15:15:23', '2025-03-29 15:15:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232545278010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-34-11', '2025-03-29 15:15:45', '2025-03-29 15:15:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232577529010000', 2, 2, 1, 'ASRS-1524', 'A01-41-03', '', '2025-03-29 15:16:18', '2025-03-29 15:16:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232586663010000', 2, 1, 1, 'ASRS-0501', 'P2', 'A04-37-03', '2025-03-29 15:16:27', '2025-03-29 15:16:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232594467010000', 2, 1, 1, 'ASRS-0337', 'P2', 'A01-36-09', '2025-03-29 15:16:34', '2025-03-29 15:16:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232654530010000', 2, 2, 1, 'ASRS-0522', 'A01-37-08', '', '2025-03-29 15:17:35', '2025-03-29 15:17:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232716871010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-41-03', '2025-03-29 15:18:37', '2025-03-29 15:18:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232744785010000', 2, 1, 1, 'ASRS-1524', 'P2', 'A03-33-08', '2025-03-29 15:19:05', '2025-03-29 15:19:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232842289010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-37-08', '2025-03-29 15:20:42', '2025-03-29 15:20:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232842530010000', 2, 2, 1, 'ASRS-1088', 'A01-31-08', '', '2025-03-29 15:20:43', '2025-03-29 15:20:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232858501010000', 2, 1, 1, 'ASRS-0522', 'P2', 'A03-38-04', '2025-03-29 15:20:59', '2025-03-29 15:20:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743232994972010000', 2, 1, 1, 'ASRS-1088', 'P2', 'A01-31-08', '2025-03-29 15:23:15', '2025-03-29 15:23:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233032530010000', 2, 2, 1, 'ASRS-0271', 'A04-31-04', '', '2025-03-29 15:23:53', '2025-03-29 15:23:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233032530010001', 2, 2, 1, 'ASRS-0350', 'A01-34-11', '', '2025-03-29 15:23:53', '2025-03-29 15:23:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233152530010000', 2, 2, 1, 'ASRS-1531', 'A01-37-08', '', '2025-03-29 15:25:53', '2025-03-29 15:25:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233156672010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A01-34-11', '2025-03-29 15:25:57', '2025-03-29 15:25:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233175894010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-31-04', '2025-03-29 15:26:16', '2025-03-29 15:26:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233210529010000', 2, 2, 1, 'ASRS-0386', 'A01-41-03', '', '2025-03-29 15:26:51', '2025-03-29 15:26:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233306675010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-41-03', '2025-03-29 15:28:27', '2025-03-29 15:28:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743233369389010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-37-08', '2025-03-29 15:29:29', '2025-03-29 15:29:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743383837535010000', 2, 2, 1, 'ASRS-0271', 'A01-34-11', '', '2025-03-31 09:17:18', '2025-03-31 09:17:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743383837536010000', 2, 2, 1, 'ASRS-0350', 'A04-31-04', '', '2025-03-31 09:17:18', '2025-03-31 09:17:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384070283010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-34-11', '2025-03-31 09:21:10', '2025-03-31 09:21:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384122529010000', 2, 2, 1, 'ASRS-1531', 'A01-41-03', '', '2025-03-31 09:22:03', '2025-03-31 09:22:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384144954010000', 2, 1, 1, 'ASRS-0271', 'P3', 'A01-42-03', '2025-03-31 09:22:25', '2025-03-31 09:22:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384173529010000', 2, 2, 1, 'ASRS-0386', 'A01-37-08', '', '2025-03-31 09:22:54', '2025-03-31 09:22:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384376576010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-41-03', '2025-03-31 09:26:17', '2025-03-31 09:26:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384467530010000', 2, 2, 1, 'ASRS-0350', 'A01-34-11', '', '2025-03-31 09:27:48', '2025-03-31 09:27:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384468657010000', 2, 1, 1, 'ASRS-0386', 'P3', 'A01-37-08', '2025-03-31 09:27:49', '2025-03-31 09:27:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384787529010000', 2, 2, 1, 'ASRS-1531', 'A01-41-03', '', '2025-03-31 09:33:08', '2025-03-31 09:33:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384810973010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-34-11', '2025-03-31 09:33:31', '2025-03-31 09:33:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743384936664010000', 2, 1, 1, 'ASRS-1531', 'P3', 'A01-41-03', '2025-03-31 09:35:37', '2025-03-31 09:35:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395122529010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-31 12:25:23', '2025-03-31 12:25:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395122529010001', 2, 2, 1, 'ASRS-0332', 'A03-31-04', '', '2025-03-31 12:25:23', '2025-03-31 12:25:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395171529010000', 2, 2, 1, 'ASRS-0313', 'A02-36-08', '', '2025-03-31 12:26:12', '2025-03-31 12:26:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395173529010000', 2, 2, 1, 'ASRS-0304', 'A04-31-05', '', '2025-03-31 12:26:14', '2025-03-31 12:26:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395224529010000', 2, 2, 1, 'ASRS-0388', 'A03-35-04', '', '2025-03-31 12:27:05', '2025-03-31 12:27:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395228530010000', 2, 2, 1, 'ASRS-1900', 'A01-39-06', '', '2025-03-31 12:27:09', '2025-03-31 12:27:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395276530010000', 2, 2, 1, 'ASRS-0520', 'A04-32-03', '', '2025-03-31 12:27:57', '2025-03-31 12:27:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395281960010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-31 12:28:02', '2025-03-31 12:28:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395287530010000', 2, 2, 1, 'ASRS-0334', 'A01-39-02', '', '2025-03-31 12:28:08', '2025-03-31 12:28:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395313442010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-31-04', '2025-03-31 12:28:33', '2025-03-31 12:28:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395347643010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-39-02', '2025-03-31 12:29:08', '2025-03-31 12:29:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395382459010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A04-31-04', '2025-03-31 12:29:42', '2025-03-31 12:29:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395409743010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A02-36-08', '2025-03-31 12:30:10', '2025-03-31 12:30:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395430145010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A04-32-03', '2025-03-31 12:30:30', '2025-03-31 12:30:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395726560010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-39-06', '2025-03-31 12:35:27', '2025-03-31 12:35:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395752531010000', 2, 2, 1, 'ASRS-0350', 'A01-34-11', '', '2025-03-31 12:35:53', '2025-03-31 12:35:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395752531010001', 2, 2, 1, 'ASRS-0384', 'A03-29-06', '', '2025-03-31 12:35:53', '2025-03-31 12:35:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395774582010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-31-05', '2025-03-31 12:36:15', '2025-03-31 12:36:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395796531010000', 2, 2, 1, 'ASRS-1027', 'A04-29-10', '', '2025-03-31 12:36:37', '2025-03-31 12:36:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395835532010000', 2, 2, 1, 'ASRS-1436', 'A02-36-09', '', '2025-03-31 12:37:16', '2025-03-31 12:37:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395911660010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-34-11', '2025-03-31 12:38:32', '2025-03-31 12:38:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395944655010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-29-06', '2025-03-31 12:39:05', '2025-03-31 12:39:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743395983037010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-36-09', '2025-03-31 12:39:43', '2025-03-31 12:39:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396032530010000', 2, 2, 1, 'ASRS-0324', 'A04-30-09', '', '2025-03-31 12:40:33', '2025-03-31 12:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396032530010001', 2, 2, 1, 'ASRS-0305', 'A01-41-04', '', '2025-03-31 12:40:33', '2025-03-31 12:40:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396055972010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A01-38-08', '2025-03-31 12:40:56', '2025-03-31 12:40:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396076530010000', 2, 2, 1, 'ASRS-1245', 'A04-39-01', '', '2025-03-31 12:41:17', '2025-03-31 12:41:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396093530010000', 2, 2, 1, 'ASRS-0340', 'A01-29-07', '', '2025-03-31 12:41:34', '2025-03-31 12:41:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396161558010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-41-04', '2025-03-31 12:42:42', '2025-03-31 12:42:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396175528010000', 2, 2, 1, 'ASRS-0336', 'A01-42-02', '', '2025-03-31 12:42:56', '2025-03-31 12:42:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396183458010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A03-35-04', '2025-03-31 12:43:03', '2025-03-31 12:43:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396231456010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A01-29-07', '2025-03-31 12:43:51', '2025-03-31 12:43:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396260530010000', 2, 2, 1, 'ASRS-1027', 'A02-36-09', '', '2025-03-31 12:44:21', '2025-03-31 12:44:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396260590010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-29-10', '2025-03-31 12:44:21', '2025-03-31 12:44:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396341535010000', 2, 2, 1, 'ASRS-1529', 'A01-37-09', '', '2025-03-31 12:45:42', '2025-03-31 12:45:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396374542010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A01-42-02', '2025-03-31 12:46:15', '2025-03-31 12:46:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396399534010000', 2, 2, 1, 'ASRS-0331', 'A02-37-08', '', '2025-03-31 12:46:40', '2025-03-31 12:46:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396432442010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-30-09', '2025-03-31 12:47:12', '2025-03-31 12:47:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396508046010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A02-36-09', '2025-03-31 12:48:28', '2025-03-31 12:48:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396547529010000', 2, 2, 1, 'ASRS-0318', 'A03-31-06', '', '2025-03-31 12:49:08', '2025-03-31 12:49:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396547529010001', 2, 2, 1, 'ASRS-1268', 'A02-32-11', '', '2025-03-31 12:49:08', '2025-03-31 12:49:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396568679010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A02-37-08', '2025-03-31 12:49:29', '2025-03-31 12:49:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396591535010000', 2, 2, 1, 'ASRS-0383', 'A03-34-08', '', '2025-03-31 12:49:52', '2025-03-31 12:49:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396690443010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A02-32-11', '2025-03-31 12:51:30', '2025-03-31 12:51:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396757077010000', 2, 1, 1, 'ASRS-1268', 'P3', 'A01-37-09', '2025-03-31 12:52:37', '2025-03-31 12:52:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396767536010000', 2, 2, 1, 'ASRS-0317', 'A01-35-04', '', '2025-03-31 12:52:48', '2025-03-31 12:52:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396767536010001', 2, 2, 1, 'ASRS-1902', 'A03-32-08', '', '2025-03-31 12:52:48', '2025-03-31 12:52:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396790962010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-31-06', '2025-03-31 12:53:11', '2025-03-31 12:53:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396815530010000', 2, 2, 1, 'ASRS-0519', 'A02-40-04', '', '2025-03-31 12:53:36', '2025-03-31 12:53:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396818530010000', 2, 2, 1, 'ASRS-1221', 'A03-37-03', '', '2025-03-31 12:53:39', '2025-03-31 12:53:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396899534010000', 2, 2, 1, 'ASRS-0528', 'A04-34-06', '', '2025-03-31 12:55:00', '2025-03-31 12:55:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396951535010000', 2, 2, 1, 'ASRS-0527', 'A04-38-01', '', '2025-03-31 12:55:52', '2025-03-31 12:55:53', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396954458010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A01-35-04', '2025-03-31 12:55:54', '2025-03-31 12:55:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743396973649010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A03-32-08', '2025-03-31 12:56:14', '2025-03-31 12:56:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397004534010000', 2, 2, 1, 'ASRS-1034', 'A04-38-02', '', '2025-03-31 12:56:45', '2025-03-31 12:56:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397028255010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A02-40-04', '2025-03-31 12:57:08', '2025-03-31 12:57:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397051059010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A04-38-01', '2025-03-31 12:57:31', '2025-03-31 12:57:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397164149010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A01-39-08', '2025-03-31 12:59:24', '2025-03-31 12:59:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397237530010000', 2, 2, 1, 'ASRS-0306', 'A01-36-03', '', '2025-03-31 13:00:38', '2025-03-31 13:00:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397258948010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A01-40-07', '2025-03-31 13:00:59', '2025-03-31 13:00:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397284534010000', 2, 2, 1, 'ASRS-0316', 'A02-33-10', '', '2025-03-31 13:01:25', '2025-03-31 13:01:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397305161010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A03-37-03', '2025-03-31 13:01:45', '2025-03-31 13:01:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397337284010000', 2, 1, 1, 'ASRS-0364', 'P3', 'A01-36-03', '2025-03-31 13:02:17', '2025-03-31 13:02:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397368530010000', 2, 2, 1, 'ASRS-0338', 'A02-42-02', '', '2025-03-31 13:02:49', '2025-03-31 13:02:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397539458010000', 2, 1, 1, 'ASRS-0303', 'P2', 'A02-33-10', '2025-03-31 13:05:39', '2025-03-31 13:05:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397778289010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A02-42-02', '2025-03-31 13:09:38', '2025-03-31 13:09:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397807375010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A04-34-06', '2025-03-31 13:10:07', '2025-03-31 13:10:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397812529010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-03-31 13:10:13', '2025-03-31 13:10:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397834363010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-06', '2025-03-31 13:10:34', '2025-03-31 13:10:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743397987529010000', 2, 2, 1, 'ASRS-1031', 'A04-31-08', '', '2025-03-31 13:13:08', '2025-03-31 13:13:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398006557010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-03-31 13:13:27', '2025-03-31 13:13:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398122529010000', 2, 2, 1, 'ASRS-1683', 'A01-35-10', '', '2025-03-31 13:15:23', '2025-03-31 13:15:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398143362010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-42-05', '2025-03-31 13:15:43', '2025-03-31 13:15:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398271182010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A01-35-10', '2025-03-31 13:17:51', '2025-03-31 13:17:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398482530010000', 2, 2, 1, 'ASRS-0315', 'A03-31-04', '', '2025-03-31 13:21:23', '2025-03-31 13:21:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398482530010001', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-31 13:21:23', '2025-03-31 13:21:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398528530010000', 2, 2, 1, 'ASRS-0304', 'A01-39-02', '', '2025-03-31 13:22:09', '2025-03-31 13:22:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398532530010000', 2, 2, 1, 'ASRS-0313', 'A04-31-04', '', '2025-03-31 13:22:13', '2025-03-31 13:22:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398582535010000', 2, 2, 1, 'ASRS-1900', 'A04-32-03', '', '2025-03-31 13:23:03', '2025-03-31 13:23:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398587535010000', 2, 2, 1, 'ASRS-0388', 'A02-36-08', '', '2025-03-31 13:23:08', '2025-03-31 13:23:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398606583010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-31 13:23:27', '2025-03-31 13:23:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398633530010000', 2, 2, 1, 'ASRS-0334', 'A04-31-05', '', '2025-03-31 13:23:54', '2025-03-31 13:23:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398642575010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-31-04', '2025-03-31 13:24:03', '2025-03-31 13:24:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398644530010000', 2, 2, 1, 'ASRS-0520', 'A01-39-06', '', '2025-03-31 13:24:05', '2025-03-31 13:24:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398662074010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A01-39-02', '2025-03-31 13:24:22', '2025-03-31 13:24:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398672584010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A04-31-04', '2025-03-31 13:24:33', '2025-03-31 13:24:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398722382010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A02-36-08', '2025-03-31 13:25:22', '2025-03-31 13:25:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398738866010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A04-32-03', '2025-03-31 13:25:39', '2025-03-31 13:25:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398807535010000', 2, 2, 1, 'ASRS-0350', 'A03-29-06', '', '2025-03-31 13:26:48', '2025-03-31 13:26:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398807535010001', 2, 2, 1, 'ASRS-0384', 'A01-34-11', '', '2025-03-31 13:26:48', '2025-03-31 13:26:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398817485010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-39-06', '2025-03-31 13:26:57', '2025-03-31 13:26:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398831286010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A04-31-05', '2025-03-31 13:27:11', '2025-03-31 13:27:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398851530010000', 2, 2, 1, 'ASRS-1027', 'A04-30-09', '', '2025-03-31 13:27:32', '2025-03-31 13:27:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398858535010000', 2, 2, 1, 'ASRS-1436', 'A01-38-08', '', '2025-03-31 13:27:39', '2025-03-31 13:27:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398967769010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-34-11', '2025-03-31 13:29:28', '2025-03-31 13:29:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743398993581010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A03-29-06', '2025-03-31 13:29:54', '2025-03-31 13:29:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399013087010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-38-08', '2025-03-31 13:30:13', '2025-03-31 13:30:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399022535010000', 2, 2, 1, 'ASRS-0324', 'A01-41-04', '', '2025-03-31 13:30:23', '2025-03-31 13:30:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399022535010001', 2, 2, 1, 'ASRS-0305', 'A03-35-04', '', '2025-03-31 13:30:23', '2025-03-31 13:30:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399045491010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A04-30-09', '2025-03-31 13:30:45', '2025-03-31 13:30:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399072529010000', 2, 2, 1, 'ASRS-1245', 'A01-29-07', '', '2025-03-31 13:31:13', '2025-03-31 13:31:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399083530010000', 2, 2, 1, 'ASRS-0340', 'A04-29-10', '', '2025-03-31 13:31:24', '2025-03-31 13:31:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399146571010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-41-04', '2025-03-31 13:32:27', '2025-03-31 13:32:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399156530010000', 2, 2, 1, 'ASRS-0336', 'A01-42-02', '', '2025-03-31 13:32:37', '2025-03-31 13:32:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399163087010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A03-35-04', '2025-03-31 13:32:43', '2025-03-31 13:32:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399215530010000', 2, 2, 1, 'ASRS-1027', 'A01-38-08', '', '2025-03-31 13:33:36', '2025-03-31 13:33:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399230871010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-29-10', '2025-03-31 13:33:51', '2025-03-31 13:33:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399298530010000', 2, 2, 1, 'ASRS-1529', 'A02-36-09', '', '2025-03-31 13:34:59', '2025-03-31 13:35:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399338568010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A01-29-07', '2025-03-31 13:35:39', '2025-03-31 13:35:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399353896010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A04-31-08', '2025-03-31 13:35:54', '2025-03-31 13:35:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399355530010000', 2, 2, 1, 'ASRS-0331', 'A02-37-08', '', '2025-03-31 13:35:56', '2025-03-31 13:35:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399375475010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-42-02', '2025-03-31 13:36:15', '2025-03-31 13:36:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399440887010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A04-38-02', '2025-03-31 13:37:21', '2025-03-31 13:37:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399492535010000', 2, 2, 1, 'ASRS-0318', 'A02-32-11', '', '2025-03-31 13:38:13', '2025-03-31 13:38:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399492535010001', 2, 2, 1, 'ASRS-0383', 'A03-31-06', '', '2025-03-31 13:38:13', '2025-03-31 13:38:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399515274010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A02-36-09', '2025-03-31 13:38:35', '2025-03-31 13:38:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399541529010000', 2, 2, 1, 'ASRS-1268', 'A01-37-09', '', '2025-03-31 13:39:02', '2025-03-31 13:39:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399541530010000', 2, 2, 1, 'ASRS-0329', 'A03-37-03', '', '2025-03-31 13:39:02', '2025-03-31 13:39:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399617574010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A02-32-11', '2025-03-31 13:40:18', '2025-03-31 13:40:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399626575010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A03-31-06', '2025-03-31 13:40:27', '2025-03-31 13:40:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399682535010000', 2, 2, 1, 'ASRS-0317', 'A03-32-08', '', '2025-03-31 13:41:23', '2025-03-31 13:41:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399682535010001', 2, 2, 1, 'ASRS-1902', 'A01-35-04', '', '2025-03-31 13:41:23', '2025-03-31 13:41:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399706076010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A02-37-08', '2025-03-31 13:41:46', '2025-03-31 13:41:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399726535010000', 2, 2, 1, 'ASRS-0519', 'A04-38-01', '', '2025-03-31 13:42:07', '2025-03-31 13:42:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399730529010000', 2, 2, 1, 'ASRS-1221', 'A02-40-04', '', '2025-03-31 13:42:11', '2025-03-31 13:42:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399750163010000', 2, 1, 1, 'ASRS-1268', 'P3', 'A03-32-08', '2025-03-31 13:42:30', '2025-03-31 13:42:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399813531010000', 2, 2, 1, 'ASRS-0527', 'A01-39-08', '', '2025-03-31 13:43:34', '2025-03-31 13:43:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399825774010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A01-35-04', '2025-03-31 13:43:46', '2025-03-31 13:43:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399844999010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-38-01', '2025-03-31 13:44:05', '2025-03-31 13:44:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399871530010000', 2, 2, 1, 'ASRS-1034', 'A01-40-07', '', '2025-03-31 13:44:32', '2025-03-31 13:44:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399871686010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-40-04', '2025-03-31 13:44:32', '2025-03-31 13:44:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399894762010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-37-03', '2025-03-31 13:44:55', '2025-03-31 13:44:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399953530010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-03-31 13:45:54', '2025-03-31 13:45:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743399953879010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A04-39-01', '2025-03-31 13:45:54', '2025-03-31 13:45:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400027669010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A01-37-09', '2025-03-31 13:47:08', '2025-03-31 13:47:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400097530010000', 2, 2, 1, 'ASRS-0306', 'A02-42-02', '', '2025-03-31 13:48:18', '2025-03-31 13:48:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400097530010001', 2, 2, 1, 'ASRS-0316', 'A04-34-06', '', '2025-03-31 13:48:18', '2025-03-31 13:48:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400120962010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-03-31 13:48:41', '2025-03-31 13:48:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400147530010000', 2, 2, 1, 'ASRS-0338', 'A01-41-06', '', '2025-03-31 13:49:08', '2025-03-31 13:49:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400232291010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-42-02', '2025-03-31 13:50:32', '2025-03-31 13:50:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400246378010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A04-34-06', '2025-03-31 13:50:46', '2025-03-31 13:50:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400297535010000', 2, 2, 1, 'ASRS-1031', 'A01-42-05', '', '2025-03-31 13:51:38', '2025-03-31 13:51:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400321059010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-38-08', '2025-03-31 13:52:01', '2025-03-31 13:52:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400407535010000', 2, 2, 1, 'ASRS-1683', 'A01-35-10', '', '2025-03-31 13:53:28', '2025-03-31 13:53:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400428758010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-39-08', '2025-03-31 13:53:49', '2025-03-31 13:53:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400541560010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A01-35-10', '2025-03-31 13:55:42', '2025-03-31 13:55:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400602533010000', 2, 2, 1, 'ASRS-0315', 'A03-31-04', '', '2025-03-31 13:56:43', '2025-03-31 13:56:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400602533010001', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-31 13:56:43', '2025-03-31 13:56:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400646535010000', 2, 2, 1, 'ASRS-0304', 'A04-31-04', '', '2025-03-31 13:57:27', '2025-03-31 13:57:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400648530010000', 2, 2, 1, 'ASRS-0313', 'A01-39-02', '', '2025-03-31 13:57:29', '2025-03-31 13:57:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400697535010000', 2, 2, 1, 'ASRS-0388', 'A04-32-03', '', '2025-03-31 13:58:18', '2025-03-31 13:58:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400707530010000', 2, 2, 1, 'ASRS-1900', 'A02-36-08', '', '2025-03-31 13:58:28', '2025-03-31 13:58:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400742583010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-34-06', '2025-03-31 13:59:03', '2025-03-31 13:59:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400748535010000', 2, 2, 1, 'ASRS-0520', 'A04-31-05', '', '2025-03-31 13:59:09', '2025-03-31 13:59:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400757280010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A03-31-04', '2025-03-31 13:59:17', '2025-03-31 13:59:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400763530010000', 2, 2, 1, 'ASRS-0334', 'A01-39-06', '', '2025-03-31 13:59:24', '2025-03-31 13:59:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400774075010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-39-02', '2025-03-31 13:59:34', '2025-03-31 13:59:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400789980010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A04-31-04', '2025-03-31 13:59:50', '2025-03-31 13:59:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400820564010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A02-36-08', '2025-03-31 14:00:21', '2025-03-31 14:00:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400842811010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A04-32-03', '2025-03-31 14:00:43', '2025-03-31 14:00:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400869461010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-39-06', '2025-03-31 14:01:09', '2025-03-31 14:01:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400907535010000', 2, 2, 1, 'ASRS-0350', 'A01-34-11', '', '2025-03-31 14:01:48', '2025-03-31 14:01:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400907535010001', 2, 2, 1, 'ASRS-0384', 'A03-29-06', '', '2025-03-31 14:01:48', '2025-03-31 14:01:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400930983010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-31-05', '2025-03-31 14:02:11', '2025-03-31 14:02:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400965530010000', 2, 2, 1, 'ASRS-1436', 'A04-30-09', '', '2025-03-31 14:02:46', '2025-03-31 14:02:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743400979529010000', 2, 2, 1, 'ASRS-1027', 'A01-42-02', '', '2025-03-31 14:03:00', '2025-03-31 14:03:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401046778010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-34-11', '2025-03-31 14:04:07', '2025-03-31 14:04:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401067481010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A03-29-06', '2025-03-31 14:04:27', '2025-03-31 14:04:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401136183010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A01-42-02', '2025-03-31 14:05:36', '2025-03-31 14:05:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401137529010000', 2, 2, 1, 'ASRS-0324', 'A01-41-04', '', '2025-03-31 14:05:38', '2025-03-31 14:05:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401137529010001', 2, 2, 1, 'ASRS-0305', 'A03-35-04', '', '2025-03-31 14:05:38', '2025-03-31 14:05:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401159867010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-30-09', '2025-03-31 14:06:00', '2025-03-31 14:06:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401183528010000', 2, 2, 1, 'ASRS-0340', 'A04-29-10', '', '2025-03-31 14:06:24', '2025-03-31 14:06:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401187529010000', 2, 2, 1, 'ASRS-1245', 'A01-29-07', '', '2025-03-31 14:06:28', '2025-03-31 14:06:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401258535010000', 2, 2, 1, 'ASRS-0336', 'A04-31-08', '', '2025-03-31 14:07:39', '2025-03-31 14:07:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401272535010000', 2, 2, 1, 'ASRS-0331', 'A02-36-09', '', '2025-03-31 14:07:53', '2025-03-31 14:07:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401287381010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A01-29-07', '2025-03-31 14:08:07', '2025-03-31 14:08:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401301764010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A03-35-04', '2025-03-31 14:08:22', '2025-03-31 14:08:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401309534010000', 2, 2, 1, 'ASRS-1027', 'A04-30-09', '', '2025-03-31 14:08:30', '2025-03-31 14:08:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401328783010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A01-41-04', '2025-03-31 14:08:49', '2025-03-31 14:08:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401344967010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A04-29-10', '2025-03-31 14:09:05', '2025-03-31 14:09:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401386077010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-36-09', '2025-03-31 14:09:46', '2025-03-31 14:09:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401392529010000', 2, 2, 1, 'ASRS-1529', 'A04-38-02', '', '2025-03-31 14:09:53', '2025-03-31 14:09:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401458966010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A04-30-09', '2025-03-31 14:10:59', '2025-03-31 14:10:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401481182010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-40-07', '2025-03-31 14:11:21', '2025-03-31 14:11:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401537530010000', 2, 2, 1, 'ASRS-0318', 'A03-31-06', '', '2025-03-31 14:12:18', '2025-03-31 14:12:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401537530010001', 2, 2, 1, 'ASRS-0383', 'A02-32-11', '', '2025-03-31 14:12:18', '2025-03-31 14:12:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401560366010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-41-06', '2025-03-31 14:12:40', '2025-03-31 14:12:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401581530010000', 2, 2, 1, 'ASRS-1268', 'A03-32-08', '', '2025-03-31 14:13:02', '2025-03-31 14:13:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401592535010000', 2, 2, 1, 'ASRS-0329', 'A02-37-08', '', '2025-03-31 14:13:13', '2025-03-31 14:13:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401656972010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A02-32-11', '2025-03-31 14:14:17', '2025-03-31 14:14:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401674092010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-31-06', '2025-03-31 14:14:34', '2025-03-31 14:14:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401767528010000', 2, 2, 1, 'ASRS-0364', 'A01-36-03', '', '2025-03-31 14:16:08', '2025-03-31 14:16:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401790510010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A02-37-08', '2025-03-31 14:16:31', '2025-03-31 14:16:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401807882010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A04-31-08', '2025-03-31 14:16:48', '2025-03-31 14:16:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401872529010000', 2, 2, 1, 'ASRS-0317', 'A01-35-04', '', '2025-03-31 14:17:53', '2025-03-31 14:17:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401872529010001', 2, 2, 1, 'ASRS-1902', 'A04-38-01', '', '2025-03-31 14:17:53', '2025-03-31 14:17:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401891590010000', 2, 1, 1, 'ASRS-0364', 'P3', 'A01-36-03', '2025-03-31 14:18:12', '2025-03-31 14:18:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401919534010000', 2, 2, 1, 'ASRS-1034', 'A01-37-09', '', '2025-03-31 14:18:40', '2025-03-31 14:18:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401921536010000', 2, 2, 1, 'ASRS-1221', 'A03-37-03', '', '2025-03-31 14:18:42', '2025-03-31 14:18:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401974534010000', 2, 2, 1, 'ASRS-0527', 'A04-39-01', '', '2025-03-31 14:19:35', '2025-03-31 14:19:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401997195010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A01-35-04', '2025-03-31 14:19:57', '2025-03-31 14:19:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743401999529010000', 2, 2, 1, 'ASRS-0519', 'A02-40-04', '', '2025-03-31 14:20:00', '2025-03-31 14:20:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402020606010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A04-38-01', '2025-03-31 14:20:21', '2025-03-31 14:20:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402050315010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A01-37-09', '2025-03-31 14:20:50', '2025-03-31 14:20:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402058528010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-03-31 14:20:59', '2025-03-31 14:21:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402081489010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A03-32-08', '2025-03-31 14:21:21', '2025-03-31 14:21:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402103988010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A02-40-04', '2025-03-31 14:21:44', '2025-03-31 14:21:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402134314010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A03-37-03', '2025-03-31 14:22:14', '2025-03-31 14:22:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402252536010000', 2, 2, 1, 'ASRS-0306', 'A04-34-06', '', '2025-03-31 14:24:13', '2025-03-31 14:24:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402252536010001', 2, 2, 1, 'ASRS-0316', 'A02-42-02', '', '2025-03-31 14:24:13', '2025-03-31 14:24:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402275590010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-03-31 14:24:36', '2025-03-31 14:24:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402300529010000', 2, 2, 1, 'ASRS-0338', 'A01-38-08', '', '2025-03-31 14:25:01', '2025-03-31 14:25:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402379708010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A02-42-02', '2025-03-31 14:26:20', '2025-03-31 14:26:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402393495010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A04-34-06', '2025-03-31 14:26:33', '2025-03-31 14:26:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402447530010000', 2, 2, 1, 'ASRS-1031', 'A01-39-08', '', '2025-03-31 14:27:28', '2025-03-31 14:27:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402471195010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-38-08', '2025-03-31 14:27:51', '2025-03-31 14:27:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402622533010000', 2, 2, 1, 'ASRS-1683', 'A01-35-10', '', '2025-03-31 14:30:23', '2025-03-31 14:30:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402644915010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-39-08', '2025-03-31 14:30:45', '2025-03-31 14:30:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402741193010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A01-35-10', '2025-03-31 14:32:21', '2025-03-31 14:32:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402757535010000', 2, 2, 1, 'ASRS-0315', 'A01-34-06', '', '2025-03-31 14:32:38', '2025-03-31 14:32:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402757535010001', 2, 2, 1, 'ASRS-0332', 'A03-31-04', '', '2025-03-31 14:32:38', '2025-03-31 14:32:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402801530010000', 2, 2, 1, 'ASRS-0313', 'A04-31-04', '', '2025-03-31 14:33:22', '2025-03-31 14:33:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402849529010000', 2, 2, 1, 'ASRS-0304', 'A01-39-02', '', '2025-03-31 14:34:10', '2025-03-31 14:34:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402851535010000', 2, 2, 1, 'ASRS-0334', 'A04-31-05', '', '2025-03-31 14:34:12', '2025-03-31 14:34:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402869910010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-34-06', '2025-03-31 14:34:30', '2025-03-31 14:34:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402907536010000', 2, 2, 1, 'ASRS-0520', 'A01-39-06', '', '2025-03-31 14:35:08', '2025-03-31 14:35:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402928392010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A03-31-04', '2025-03-31 14:35:28', '2025-03-31 14:35:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402951508010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-39-02', '2025-03-31 14:35:52', '2025-03-31 14:35:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743402977017010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A04-31-04', '2025-03-31 14:36:17', '2025-03-31 14:36:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403029809010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-39-06', '2025-03-31 14:37:10', '2025-03-31 14:37:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403077535010000', 2, 2, 1, 'ASRS-0388', 'A02-36-08', '', '2025-03-31 14:37:58', '2025-03-31 14:37:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403077535010001', 2, 2, 1, 'ASRS-0350', 'A03-29-06', '', '2025-03-31 14:37:58', '2025-03-31 14:37:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403098210010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-42-05', '2025-03-31 14:38:18', '2025-03-31 14:38:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403120529010000', 2, 2, 1, 'ASRS-0334', 'A04-31-04', '', '2025-03-31 14:38:41', '2025-03-31 14:38:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403139529010000', 2, 2, 1, 'ASRS-1436', 'A01-42-02', '', '2025-03-31 14:39:00', '2025-03-31 14:39:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403459417010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-42-02', '2025-03-31 14:44:19', '2025-03-31 14:44:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403478604010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A03-29-06', '2025-03-31 14:44:39', '2025-03-31 14:44:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403487535010000', 2, 2, 1, 'ASRS-0305', 'A01-29-07', '', '2025-03-31 14:44:48', '2025-03-31 14:44:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403492399010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-36-08', '2025-03-31 14:44:52', '2025-03-31 14:44:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403509509010000', 2, 1, 1, 'ASRS-1436', 'P3', 'A04-31-04', '2025-03-31 14:45:10', '2025-03-31 14:45:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403560528010000', 2, 2, 1, 'ASRS-0340', 'A01-41-04', '', '2025-03-31 14:46:01', '2025-03-31 14:46:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403642535010000', 2, 2, 1, 'ASRS-1027', 'A01-40-07', '', '2025-03-31 14:47:23', '2025-03-31 14:47:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403700931010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A01-29-07', '2025-03-31 14:48:21', '2025-03-31 14:48:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403701529010000', 2, 2, 1, 'ASRS-1032', 'A01-32-11', '', '2025-03-31 14:48:22', '2025-03-31 14:48:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403726402010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-31-05', '2025-03-31 14:48:46', '2025-03-31 14:48:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403779498010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-32-11', '2025-03-31 14:49:39', '2025-03-31 14:49:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403812530010000', 2, 2, 1, 'ASRS-0324', 'A03-35-04', '', '2025-03-31 14:50:13', '2025-03-31 14:50:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403812530010001', 2, 2, 1, 'ASRS-0333', 'A02-41-01', '', '2025-03-31 14:50:13', '2025-03-31 14:50:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403835299010000', 2, 1, 1, 'ASRS-1032', 'P3', 'A04-38-02', '2025-03-31 14:50:35', '2025-03-31 14:50:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403857530010000', 2, 2, 1, 'ASRS-0331', 'A04-30-09', '', '2025-03-31 14:50:58', '2025-03-31 14:50:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403888530010000', 2, 2, 1, 'ASRS-1902', 'A01-35-04', '', '2025-03-31 14:51:29', '2025-03-31 14:51:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403936425010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A02-41-01', '2025-03-31 14:52:16', '2025-03-31 14:52:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403944534010000', 2, 2, 1, 'ASRS-1526', 'A02-32-09', '', '2025-03-31 14:52:25', '2025-03-31 14:52:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403969108010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A03-35-04', '2025-03-31 14:52:49', '2025-03-31 14:52:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743403998530010000', 2, 2, 1, 'ASRS-1027', 'A01-32-11', '', '2025-03-31 14:53:19', '2025-03-31 14:53:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404006921010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A01-35-04', '2025-03-31 14:53:27', '2025-03-31 14:53:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404020718010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-30-09', '2025-03-31 14:53:41', '2025-03-31 14:53:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404079532010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A04-39-01', '2025-03-31 14:54:40', '2025-03-31 14:54:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404083535010000', 2, 2, 1, 'ASRS-1529', 'A01-41-06', '', '2025-03-31 14:54:44', '2025-03-31 14:54:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404154505010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-32-09', '2025-03-31 14:55:55', '2025-03-31 14:55:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404166529010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-03-31 14:56:07', '2025-03-31 14:56:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404253223010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-32-11', '2025-03-31 14:57:33', '2025-03-31 14:57:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404307529010000', 2, 2, 1, 'ASRS-0306', 'A02-42-02', '', '2025-03-31 14:58:28', '2025-03-31 14:58:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404307529010001', 2, 2, 1, 'ASRS-0316', 'A04-34-06', '', '2025-03-31 14:58:28', '2025-03-31 14:58:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404358529010000', 2, 2, 1, 'ASRS-1221', 'A01-37-09', '', '2025-03-31 14:59:19', '2025-03-31 14:59:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404372320010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-03-31 14:59:32', '2025-03-31 14:59:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404415530010000', 2, 2, 1, 'ASRS-0338', 'A01-38-08', '', '2025-03-31 15:00:16', '2025-03-31 15:00:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404426608010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A04-34-06', '2025-03-31 15:00:27', '2025-03-31 15:00:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404437419010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A02-42-02', '2025-03-31 15:00:37', '2025-03-31 15:00:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404503108010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-34-08', '2025-03-31 15:01:43', '2025-03-31 15:01:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404547530010000', 2, 2, 1, 'ASRS-1034', 'A03-32-08', '', '2025-03-31 15:02:28', '2025-03-31 15:02:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404570013010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-04', '2025-03-31 15:02:50', '2025-03-31 15:02:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404600530010000', 2, 2, 1, 'ASRS-0519', 'A03-37-03', '', '2025-03-31 15:03:21', '2025-03-31 15:03:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404673209010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A01-37-09', '2025-03-31 15:04:33', '2025-03-31 15:04:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404812530010000', 2, 2, 1, 'ASRS-0318', 'A02-32-11', '', '2025-03-31 15:06:53', '2025-03-31 15:06:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404834323010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A01-38-08', '2025-03-31 15:07:14', '2025-03-31 15:07:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743404860530010000', 2, 2, 1, 'ASRS-1031', 'A01-39-08', '', '2025-03-31 15:07:41', '2025-03-31 15:07:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405072530010000', 2, 2, 1, 'ASRS-1524', 'A03-33-08', '', '2025-03-31 15:11:13', '2025-03-31 15:11:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405072530010001', 2, 2, 1, 'ASRS-0337', 'A01-36-09', '', '2025-03-31 15:11:13', '2025-03-31 15:11:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405076136010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A02-32-11', '2025-03-31 15:11:16', '2025-03-31 15:11:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405095332010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A03-32-08', '2025-03-31 15:11:35', '2025-03-31 15:11:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405202529010000', 2, 2, 1, 'ASRS-0522', 'A03-38-04', '', '2025-03-31 15:13:23', '2025-03-31 15:13:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405202529010001', 2, 2, 1, 'ASRS-1088', 'A01-31-08', '', '2025-03-31 15:13:23', '2025-03-31 15:13:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405206314010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A01-36-09', '2025-03-31 15:13:26', '2025-03-31 15:13:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405225533010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A03-37-03', '2025-03-31 15:13:46', '2025-03-31 15:13:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405351844010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A01-31-08', '2025-03-31 15:15:52', '2025-03-31 15:15:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405380340010000', 2, 1, 1, 'ASRS-1088', 'P3', 'A03-33-08', '2025-03-31 15:16:20', '2025-03-31 15:16:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405467535010000', 2, 2, 1, 'ASRS-0315', 'A01-39-02', '', '2025-03-31 15:17:48', '2025-03-31 15:17:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405467535010001', 2, 2, 1, 'ASRS-0313', 'A03-31-04', '', '2025-03-31 15:17:48', '2025-03-31 15:17:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405512530010000', 2, 2, 1, 'ASRS-0388', 'A03-29-06', '', '2025-03-31 15:18:33', '2025-03-31 15:18:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405518530010000', 2, 2, 1, 'ASRS-0332', 'A01-34-06', '', '2025-03-31 15:18:39', '2025-03-31 15:18:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405562530010000', 2, 2, 1, 'ASRS-1900', 'A04-32-03', '', '2025-03-31 15:19:23', '2025-03-31 15:19:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405574530010000', 2, 2, 1, 'ASRS-0304', 'A01-39-06', '', '2025-03-31 15:19:35', '2025-03-31 15:19:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405590638010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A01-34-06', '2025-03-31 15:19:51', '2025-03-31 15:19:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405616438010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-29-06', '2025-03-31 15:20:16', '2025-03-31 15:20:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405632535010000', 2, 2, 1, 'ASRS-0520', 'A01-42-05', '', '2025-03-31 15:20:33', '2025-03-31 15:20:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405642218010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A01-39-02', '2025-03-31 15:20:42', '2025-03-31 15:20:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405663532010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A03-31-04', '2025-03-31 15:21:04', '2025-03-31 15:21:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405688420010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A01-39-06', '2025-03-31 15:21:28', '2025-03-31 15:21:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405717529010000', 2, 2, 1, 'ASRS-0334', 'A02-36-08', '', '2025-03-31 15:21:58', '2025-03-31 15:21:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405788627010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A04-32-03', '2025-03-31 15:23:09', '2025-03-31 15:23:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405803048010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A02-36-08', '2025-03-31 15:23:23', '2025-03-31 15:23:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405877535010000', 2, 2, 1, 'ASRS-0350', 'A01-42-02', '', '2025-03-31 15:24:38', '2025-03-31 15:24:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405877535010001', 2, 2, 1, 'ASRS-1436', 'A04-31-04', '', '2025-03-31 15:24:38', '2025-03-31 15:24:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405899355010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-39-08', '2025-03-31 15:24:59', '2025-03-31 15:24:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743405935530010000', 2, 2, 1, 'ASRS-0384', 'A01-34-11', '', '2025-03-31 15:25:36', '2025-03-31 15:25:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406018530010000', 2, 2, 1, 'ASRS-1027', 'A02-32-09', '', '2025-03-31 15:26:59', '2025-03-31 15:27:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406055920010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-42-02', '2025-03-31 15:27:36', '2025-03-31 15:27:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406112631010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A02-32-09', '2025-03-31 15:28:33', '2025-03-31 15:28:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406240530010000', 2, 2, 9, 'ASRS-0301', 'A01-37-10', '', '2025-03-31 15:30:41', '2025-03-31 15:30:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406352345010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-34-11', '2025-03-31 15:32:32', '2025-03-31 15:32:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406396530010000', 2, 2, 1, 'ASRS-0324', 'A02-41-01', '', '2025-03-31 15:33:17', '2025-03-31 15:33:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406396530010001', 2, 2, 1, 'ASRS-0340', 'A04-31-05', '', '2025-03-31 15:33:17', '2025-03-31 15:33:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406420723010000', 2, 1, 1, 'ASRS-0301', 'P3', 'A01-37-10', '2025-03-31 15:33:41', '2025-03-31 15:33:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406446535010000', 2, 2, 1, 'ASRS-0517', 'A04-36-04', '', '2025-03-31 15:34:07', '2025-03-31 15:34:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406451530010000', 2, 2, 1, 'ASRS-0305', 'A01-29-07', '', '2025-03-31 15:34:12', '2025-03-31 15:34:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406524828010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A02-41-01', '2025-03-31 15:35:25', '2025-03-31 15:35:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406532535010000', 2, 2, 1, 'ASRS-0336', 'A02-36-09', '', '2025-03-31 15:35:33', '2025-03-31 15:35:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406545243010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-31-04', '2025-03-31 15:35:45', '2025-03-31 15:35:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406575233010000', 2, 1, 1, 'ASRS-0517', 'P3', 'A01-29-07', '2025-03-31 15:36:15', '2025-03-31 15:36:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406589534010000', 2, 2, 1, 'ASRS-1027', 'A01-34-11', '', '2025-03-31 15:36:30', '2025-03-31 15:36:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406636744010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-05', '2025-03-31 15:37:17', '2025-03-31 15:37:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406666427010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A02-36-09', '2025-03-31 15:37:46', '2025-03-31 15:37:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406673535010000', 2, 2, 1, 'ASRS-1529', 'A01-32-11', '', '2025-03-31 15:37:54', '2025-03-31 15:37:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406751530010000', 2, 2, 1, 'ASRS-0359', 'A01-37-06', '', '2025-03-31 15:39:12', '2025-03-31 15:39:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406757323010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-36-04', '2025-03-31 15:39:17', '2025-03-31 15:39:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406831530010000', 2, 2, 1, 'ASRS-0331', 'A01-35-04', '', '2025-03-31 15:40:32', '2025-03-31 15:40:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406935243010000', 2, 1, 1, 'ASRS-1529', 'P3', 'A01-35-04', '2025-03-31 15:42:15', '2025-03-31 15:42:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406972535010000', 2, 2, 1, 'ASRS-0298', 'A04-31-08', '', '2025-03-31 15:42:53', '2025-03-31 15:42:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743406994045010000', 2, 1, 1, 'ASRS-0359', 'P3', 'A01-32-11', '2025-03-31 15:43:14', '2025-03-31 15:43:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407048630010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A04-31-08', '2025-03-31 15:44:09', '2025-03-31 15:44:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407087529010000', 2, 2, 1, 'ASRS-0318', 'A02-32-11', '', '2025-03-31 15:44:48', '2025-03-31 15:44:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407087530010000', 2, 2, 1, 'ASRS-0383', 'A03-31-06', '', '2025-03-31 15:44:48', '2025-03-31 15:44:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407107456010000', 2, 1, 1, 'ASRS-0298', 'P3', 'A01-37-06', '2025-03-31 15:45:07', '2025-03-31 15:45:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407131530010000', 2, 2, 1, 'ASRS-0329', 'A02-37-08', '', '2025-03-31 15:45:32', '2025-03-31 15:45:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407205827010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A02-32-11', '2025-03-31 15:46:46', '2025-03-31 15:46:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407233446010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-31-06', '2025-03-31 15:47:13', '2025-03-31 15:47:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407277535010000', 2, 2, 1, 'ASRS-0317', 'A04-38-01', '', '2025-03-31 15:47:58', '2025-03-31 15:47:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407277535010001', 2, 2, 1, 'ASRS-0527', 'A02-40-04', '', '2025-03-31 15:47:58', '2025-03-31 15:47:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407299124010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A01-34-11', '2025-03-31 15:48:19', '2025-03-31 15:48:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407324534010000', 2, 2, 1, 'ASRS-1902', 'A04-30-09', '', '2025-03-31 15:48:45', '2025-03-31 15:48:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407327535010000', 2, 2, 1, 'ASRS-1034', 'A01-37-09', '', '2025-03-31 15:48:48', '2025-03-31 15:48:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407374530010000', 2, 2, 1, 'ASRS-1221', 'A03-34-08', '', '2025-03-31 15:49:35', '2025-03-31 15:49:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407408530010000', 2, 2, 1, 'ASRS-0519', 'A01-38-08', '', '2025-03-31 15:50:09', '2025-03-31 15:50:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407426643010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A02-40-04', '2025-03-31 15:50:27', '2025-03-31 15:50:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407443127010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A04-30-09', '2025-03-31 15:50:43', '2025-03-31 15:50:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407462941010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A02-37-08', '2025-03-31 15:51:03', '2025-03-31 15:51:03', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407467535010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-03-31 15:51:08', '2025-03-31 15:51:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407491447010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A04-38-01', '2025-03-31 15:51:31', '2025-03-31 15:51:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407517231010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A01-37-09', '2025-03-31 15:51:57', '2025-03-31 15:51:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407569735010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A03-34-08', '2025-03-31 15:52:50', '2025-03-31 15:52:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407637529010000', 2, 2, 1, 'ASRS-0306', 'A02-42-02', '', '2025-03-31 15:53:58', '2025-03-31 15:53:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407637529010001', 2, 2, 1, 'ASRS-0316', 'A04-34-06', '', '2025-03-31 15:53:58', '2025-03-31 15:53:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407660633010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-03-31 15:54:21', '2025-03-31 15:54:21', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407687530010000', 2, 2, 1, 'ASRS-0338', 'A01-41-04', '', '2025-03-31 15:54:48', '2025-03-31 15:54:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407810626010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-42-02', '2025-03-31 15:56:51', '2025-03-31 15:56:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407836761010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A04-34-06', '2025-03-31 15:57:17', '2025-03-31 15:57:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407837528010000', 2, 2, 1, 'ASRS-1031', 'A03-32-08', '', '2025-03-31 15:57:18', '2025-03-31 15:57:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407858631010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-04', '2025-03-31 15:57:39', '2025-03-31 15:57:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743407971730010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-38-08', '2025-03-31 15:59:32', '2025-03-31 15:59:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408117530010000', 2, 2, 1, 'ASRS-0315', 'A03-29-06', '', '2025-03-31 16:01:58', '2025-03-31 16:01:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408117530010001', 2, 2, 1, 'ASRS-0388', 'A01-39-02', '', '2025-03-31 16:01:58', '2025-03-31 16:01:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408161530010000', 2, 2, 1, 'ASRS-0332', 'A03-31-04', '', '2025-03-31 16:02:42', '2025-03-31 16:02:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408165530010000', 2, 2, 1, 'ASRS-1900', 'A01-39-06', '', '2025-03-31 16:02:46', '2025-03-31 16:02:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408212535010000', 2, 2, 1, 'ASRS-0304', 'A04-32-03', '', '2025-03-31 16:03:33', '2025-03-31 16:03:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408223535010000', 2, 2, 1, 'ASRS-0520', 'A02-36-08', '', '2025-03-31 16:03:44', '2025-03-31 16:03:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408280530010000', 2, 2, 1, 'ASRS-0334', 'A01-39-08', '', '2025-03-31 16:04:41', '2025-03-31 16:04:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408331154010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-39-02', '2025-03-31 16:05:31', '2025-03-31 16:05:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408338535010000', 2, 2, 1, 'ASRS-0313', 'A01-34-06', '', '2025-03-31 16:05:39', '2025-03-31 16:05:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408363880010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A03-29-06', '2025-03-31 16:06:04', '2025-03-31 16:06:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408385759010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A02-36-08', '2025-03-31 16:06:26', '2025-03-31 16:06:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408405256010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A03-31-04', '2025-03-31 16:06:45', '2025-03-31 16:06:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408425354010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A04-32-03', '2025-03-31 16:07:05', '2025-03-31 16:07:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408439135010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-34-06', '2025-03-31 16:07:19', '2025-03-31 16:07:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408532529010000', 2, 2, 1, 'ASRS-0350', 'A01-42-02', '', '2025-03-31 16:08:53', '2025-03-31 16:08:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408532529010001', 2, 2, 1, 'ASRS-1027', 'A04-36-04', '', '2025-03-31 16:08:53', '2025-03-31 16:08:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408542355010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A01-39-06', '2025-03-31 16:09:02', '2025-03-31 16:09:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408556453010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A03-32-08', '2025-03-31 16:09:16', '2025-03-31 16:09:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743408583530010000', 2, 2, 1, 'ASRS-0384', 'A02-32-09', '', '2025-03-31 16:09:44', '2025-03-31 16:09:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467564607010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A02-32-09', '2025-04-01 08:32:45', '2025-04-01 08:32:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467588323010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-36-04', '2025-04-01 08:33:08', '2025-04-01 08:33:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467602533010000', 2, 2, 1, 'ASRS-0324', 'A04-31-04', '', '2025-04-01 08:33:23', '2025-04-01 08:33:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467602533010001', 2, 2, 1, 'ASRS-0340', 'A02-41-01', '', '2025-04-01 08:33:23', '2025-04-01 08:33:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467623712010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A01-42-02', '2025-04-01 08:33:44', '2025-04-01 08:33:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467665532010000', 2, 2, 1, 'ASRS-0336', 'A02-36-09', '', '2025-04-01 08:34:26', '2025-04-01 08:34:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467687537010000', 2, 2, 1, 'ASRS-0305', 'A04-31-05', '', '2025-04-01 08:34:48', '2025-04-01 08:34:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467737536010000', 2, 2, 1, 'ASRS-0331', 'A04-31-08', '', '2025-04-01 08:35:38', '2025-04-01 08:35:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467748551010000', 2, 2, 1, 'ASRS-0517', 'A01-29-07', '', '2025-04-01 08:35:49', '2025-04-01 08:35:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467802535010000', 2, 2, 1, 'ASRS-1027', 'A02-32-09', '', '2025-04-01 08:36:43', '2025-04-01 08:36:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467857535010000', 2, 2, 1, 'ASRS-0359', 'A01-32-11', '', '2025-04-01 08:37:38', '2025-04-01 08:37:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467968123010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A01-29-07', '2025-04-01 08:39:28', '2025-04-01 08:39:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743467991503010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-31-04', '2025-04-01 08:39:52', '2025-04-01 08:39:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468005611010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A02-32-09', '2025-04-01 08:40:06', '2025-04-01 08:40:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468016428010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A04-31-05', '2025-04-01 08:40:16', '2025-04-01 08:40:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468050023010000', 2, 1, 1, 'ASRS-0359', 'P3', 'A02-41-01', '2025-04-01 08:40:50', '2025-04-01 08:40:50', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468067400010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A04-31-08', '2025-04-01 08:41:07', '2025-04-01 08:41:07', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468072535010000', 2, 2, 1, 'ASRS-0318', 'A02-32-11', '', '2025-04-01 08:41:13', '2025-04-01 08:41:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468072535010001', 2, 2, 1, 'ASRS-0383', 'A03-31-06', '', '2025-04-01 08:41:13', '2025-04-01 08:41:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468082401010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-32-11', '2025-04-01 08:41:22', '2025-04-01 08:41:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468093500010000', 2, 1, 1, 'ASRS-0517', 'P3', 'A03-38-04', '2025-04-01 08:41:34', '2025-04-01 08:41:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468164530010000', 2, 2, 1, 'ASRS-0329', 'A01-34-11', '', '2025-04-01 08:42:45', '2025-04-01 08:42:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468196399010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A02-32-11', '2025-04-01 08:43:16', '2025-04-01 08:43:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468250426010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A03-31-06', '2025-04-01 08:44:10', '2025-04-01 08:44:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468327535010000', 2, 2, 1, 'ASRS-0317', 'A04-30-09', '', '2025-04-01 08:45:28', '2025-04-01 08:45:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468327535010001', 2, 2, 1, 'ASRS-1902', 'A02-37-08', '', '2025-04-01 08:45:28', '2025-04-01 08:45:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468349405010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A01-34-11', '2025-04-01 08:45:49', '2025-04-01 08:45:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468371536010000', 2, 2, 1, 'ASRS-1034', 'A04-38-01', '', '2025-04-01 08:46:12', '2025-04-01 08:46:13', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468376530010000', 2, 2, 1, 'ASRS-0527', 'A02-40-04', '', '2025-04-01 08:46:17', '2025-04-01 08:46:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468424531010000', 2, 2, 1, 'ASRS-0519', 'A03-34-08', '', '2025-04-01 08:47:05', '2025-04-01 08:47:06', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468460529010000', 2, 2, 1, 'ASRS-1221', 'A01-37-09', '', '2025-04-01 08:47:41', '2025-04-01 08:47:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468461920010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A02-40-04', '2025-04-01 08:47:42', '2025-04-01 08:47:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468510209010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-30-09', '2025-04-01 08:48:30', '2025-04-01 08:48:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468518535010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-04-01 08:48:39', '2025-04-01 08:48:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468544706010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A02-36-09', '2025-04-01 08:49:05', '2025-04-01 08:49:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468570218010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A04-38-01', '2025-04-01 08:49:30', '2025-04-01 08:49:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468585203010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-37-08', '2025-04-01 08:49:45', '2025-04-01 08:49:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468604423010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A03-34-08', '2025-04-01 08:50:04', '2025-04-01 08:50:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468667529010000', 2, 2, 1, 'ASRS-0306', 'A04-34-06', '', '2025-04-01 08:51:08', '2025-04-01 08:51:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468667529010001', 2, 2, 1, 'ASRS-0316', 'A02-42-02', '', '2025-04-01 08:51:08', '2025-04-01 08:51:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468729805010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A02-33-10', '2025-04-01 08:52:10', '2025-04-01 08:52:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468736530010000', 2, 2, 1, 'ASRS-0338', 'A01-41-04', '', '2025-04-01 08:52:17', '2025-04-01 08:52:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468822798010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A04-34-06', '2025-04-01 08:53:43', '2025-04-01 08:53:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468838420010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A02-42-02', '2025-04-01 08:53:58', '2025-04-01 08:53:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468847530010000', 2, 2, 1, 'ASRS-1031', 'A01-38-08', '', '2025-04-01 08:54:08', '2025-04-01 08:54:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743468870808010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-04', '2025-04-01 08:54:31', '2025-04-01 08:54:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469157613010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-37-09', '2025-04-01 08:59:18', '2025-04-01 08:59:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469242529010000', 2, 2, 1, 'ASRS-0315', 'A01-39-02', '', '2025-04-01 09:00:43', '2025-04-01 09:00:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469242529010001', 2, 2, 1, 'ASRS-0388', 'A03-29-06', '', '2025-04-01 09:00:43', '2025-04-01 09:00:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469287529010000', 2, 2, 1, 'ASRS-1900', 'A03-31-04', '', '2025-04-01 09:01:28', '2025-04-01 09:01:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469291536010000', 2, 2, 1, 'ASRS-0332', 'A02-36-08', '', '2025-04-01 09:01:32', '2025-04-01 09:01:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469338536010000', 2, 2, 1, 'ASRS-0520', 'A04-32-03', '', '2025-04-01 09:02:19', '2025-04-01 09:02:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469349534010000', 2, 2, 1, 'ASRS-0304', 'A01-34-06', '', '2025-04-01 09:02:30', '2025-04-01 09:02:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469389530010000', 2, 2, 1, 'ASRS-0313', 'A03-32-08', '', '2025-04-01 09:03:10', '2025-04-01 09:03:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469405529010000', 2, 2, 1, 'ASRS-0334', 'A01-39-06', '', '2025-04-01 09:03:26', '2025-04-01 09:03:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469787652010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A01-34-06', '2025-04-01 09:09:48', '2025-04-01 09:09:48', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469826341010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A03-29-06', '2025-04-01 09:10:26', '2025-04-01 09:10:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469830529010000', 2, 1, 1, 'ASRS-1900', 'P3', 'A01-39-02', '2025-04-01 09:10:31', '2025-04-01 09:10:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469838642010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A03-31-04', '2025-04-01 09:10:39', '2025-04-01 09:10:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469879446010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-36-08', '2025-04-01 09:11:19', '2025-04-01 09:11:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469894422010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A04-32-03', '2025-04-01 09:11:34', '2025-04-01 09:11:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469909415010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A01-39-06', '2025-04-01 09:11:49', '2025-04-01 09:11:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469927530010000', 2, 2, 1, 'ASRS-0350', 'A04-36-04', '', '2025-04-01 09:12:08', '2025-04-01 09:12:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469927530010001', 2, 2, 1, 'ASRS-0384', 'A01-42-02', '', '2025-04-01 09:12:08', '2025-04-01 09:12:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469950810010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A01-38-08', '2025-04-01 09:12:31', '2025-04-01 09:12:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743469993536010000', 2, 2, 1, 'ASRS-1027', 'A01-32-11', '', '2025-04-01 09:13:14', '2025-04-01 09:13:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470099917010000', 2, 1, 1, 'ASRS-0384', 'P3', 'A03-32-08', '2025-04-01 09:15:00', '2025-04-01 09:15:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470127828010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A01-32-11', '2025-04-01 09:15:28', '2025-04-01 09:15:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470312533010000', 2, 2, 1, 'ASRS-0324', 'A04-31-04', '', '2025-04-01 09:18:33', '2025-04-01 09:18:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470312533010001', 2, 2, 1, 'ASRS-0305', 'A02-32-09', '', '2025-04-01 09:18:33', '2025-04-01 09:18:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470335142010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-42-02', '2025-04-01 09:18:55', '2025-04-01 09:18:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470356535010000', 2, 2, 1, 'ASRS-1245', 'A04-29-10', '', '2025-04-01 09:19:17', '2025-04-01 09:19:18', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470358530010000', 2, 2, 1, 'ASRS-0340', 'A01-29-07', '', '2025-04-01 09:19:19', '2025-04-01 09:19:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470407534010000', 2, 2, 1, 'ASRS-0336', 'A04-31-05', '', '2025-04-01 09:20:08', '2025-04-01 09:20:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470441530010000', 2, 2, 1, 'ASRS-1027', 'A01-42-02', '', '2025-04-01 09:20:42', '2025-04-01 09:20:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470455150010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A01-29-07', '2025-04-01 09:20:55', '2025-04-01 09:20:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470458535010000', 2, 2, 1, 'ASRS-0331', 'A04-31-08', '', '2025-04-01 09:20:59', '2025-04-01 09:21:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470475818010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A04-31-04', '2025-04-01 09:21:16', '2025-04-01 09:21:16', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470489618010000', 2, 1, 1, 'ASRS-1245', 'P3', 'A02-32-09', '2025-04-01 09:21:30', '2025-04-01 09:21:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470501531010000', 2, 2, 1, 'ASRS-0359', 'A02-41-01', '', '2025-04-01 09:21:42', '2025-04-01 09:21:43', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470518142010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A04-31-05', '2025-04-01 09:21:58', '2025-04-01 09:21:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470531918010000', 2, 1, 1, 'ASRS-0336', 'P3', 'A01-42-02', '2025-04-01 09:22:12', '2025-04-01 09:22:12', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470597319010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A04-29-10', '2025-04-01 09:23:17', '2025-04-01 09:23:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470635736010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A02-41-01', '2025-04-01 09:23:56', '2025-04-01 09:23:56', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470657529010000', 2, 2, 1, 'ASRS-0318', 'A03-31-06', '', '2025-04-01 09:24:18', '2025-04-01 09:24:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470657529010001', 2, 2, 1, 'ASRS-0383', 'A02-32-11', '', '2025-04-01 09:24:18', '2025-04-01 09:24:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470676833010000', 2, 1, 1, 'ASRS-0359', 'P3', 'A04-31-08', '2025-04-01 09:24:37', '2025-04-01 09:24:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470718530010000', 2, 2, 1, 'ASRS-0329', 'A01-34-11', '', '2025-04-01 09:25:19', '2025-04-01 09:25:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470812416010000', 2, 1, 1, 'ASRS-0318', 'P3', 'A02-32-11', '2025-04-01 09:26:52', '2025-04-01 09:26:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743470828032010000', 2, 1, 1, 'ASRS-0383', 'P3', 'A03-31-06', '2025-04-01 09:27:08', '2025-04-01 09:27:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743471912530010000', 2, 2, 1, 'ASRS-0317', 'A02-40-04', '', '2025-04-01 09:45:13', '2025-04-01 09:45:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743471912530010001', 2, 2, 1, 'ASRS-1902', 'A04-30-09', '', '2025-04-01 09:45:13', '2025-04-01 09:45:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743471936248010000', 2, 1, 1, 'ASRS-0329', 'P3', 'A01-34-11', '2025-04-01 09:45:36', '2025-04-01 09:45:36', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743471956535010000', 2, 2, 1, 'ASRS-0527', 'A04-38-01', '', '2025-04-01 09:45:57', '2025-04-01 09:45:58', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743471963536010000', 2, 2, 1, 'ASRS-1034', 'A02-36-09', '', '2025-04-01 09:46:04', '2025-04-01 09:46:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472009534010000', 2, 2, 1, 'ASRS-1221', 'A03-34-08', '', '2025-04-01 09:46:50', '2025-04-01 09:46:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472043535010000', 2, 2, 1, 'ASRS-0519', 'A02-37-08', '', '2025-04-01 09:47:24', '2025-04-01 09:47:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472049050010000', 2, 1, 1, 'ASRS-0317', 'P3', 'A02-40-04', '2025-04-01 09:47:29', '2025-04-01 09:47:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472100530010000', 2, 2, 1, 'ASRS-0303', 'A02-33-10', '', '2025-04-01 09:48:21', '2025-04-01 09:48:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472177129010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A02-36-09', '2025-04-01 09:49:37', '2025-04-01 09:49:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472200246010000', 2, 1, 1, 'ASRS-0527', 'P3', 'A04-30-09', '2025-04-01 09:50:00', '2025-04-01 09:50:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472214056010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A02-33-10', '2025-04-01 09:50:14', '2025-04-01 09:50:14', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472233244010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A04-38-01', '2025-04-01 09:50:33', '2025-04-01 09:50:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472262530010000', 2, 2, 1, 'ASRS-0306', 'A04-34-06', '', '2025-04-01 09:51:03', '2025-04-01 09:51:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472262530010001', 2, 2, 1, 'ASRS-0316', 'A02-42-02', '', '2025-04-01 09:51:03', '2025-04-01 09:51:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472265350010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-37-08', '2025-04-01 09:51:05', '2025-04-01 09:51:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472284526010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A04-36-04', '2025-04-01 09:51:25', '2025-04-01 09:51:25', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472352529010000', 2, 2, 1, 'ASRS-0338', 'A01-41-04', '', '2025-04-01 09:52:33', '2025-04-01 09:52:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472425530010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A02-42-02', '2025-04-01 09:53:46', '2025-04-01 09:53:46', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472467231010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A04-34-06', '2025-04-01 09:54:27', '2025-04-01 09:54:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472507535010000', 2, 2, 1, 'ASRS-1031', 'A01-37-09', '', '2025-04-01 09:55:08', '2025-04-01 09:55:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472531446010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A01-41-04', '2025-04-01 09:55:31', '2025-04-01 09:55:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472682535010000', 2, 2, 1, 'ASRS-1683', 'A01-35-10', '', '2025-04-01 09:58:03', '2025-04-01 09:58:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472702745010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-37-09', '2025-04-01 09:58:23', '2025-04-01 09:58:23', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472804134010000', 2, 1, 1, 'ASRS-1683', 'P3', 'A01-35-10', '2025-04-01 10:00:04', '2025-04-01 10:00:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472877535010000', 2, 2, 1, 'ASRS-0315', 'A03-29-06', '', '2025-04-01 10:01:18', '2025-04-01 10:01:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472877535010001', 2, 2, 1, 'ASRS-0304', 'A01-38-08', '', '2025-04-01 10:01:18', '2025-04-01 10:01:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472922530010000', 2, 2, 1, 'ASRS-0332', 'A03-31-04', '', '2025-04-01 10:02:03', '2025-04-01 10:02:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472926530010000', 2, 2, 1, 'ASRS-0388', 'A01-34-06', '', '2025-04-01 10:02:07', '2025-04-01 10:02:08', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472972530010000', 2, 2, 1, 'ASRS-0313', 'A04-32-03', '', '2025-04-01 10:02:53', '2025-04-01 10:02:54', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743472982535010000', 2, 2, 1, 'ASRS-0350', 'A01-32-11', '', '2025-04-01 10:03:03', '2025-04-01 10:03:04', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473006034010000', 2, 1, 1, 'ASRS-0315', 'P3', 'A01-34-06', '2025-04-01 10:03:26', '2025-04-01 10:03:26', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473014441010000', 2, 1, 1, 'ASRS-0304', 'P3', 'A03-29-06', '2025-04-01 10:03:34', '2025-04-01 10:03:34', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473037535010000', 2, 2, 1, 'ASRS-0520', 'A01-39-06', '', '2025-04-01 10:03:58', '2025-04-01 10:03:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473050736010000', 2, 1, 1, 'ASRS-0332', 'P3', 'A01-32-11', '2025-04-01 10:04:11', '2025-04-01 10:04:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473066961010000', 2, 1, 1, 'ASRS-0388', 'P3', 'A03-31-04', '2025-04-01 10:04:27', '2025-04-01 10:04:27', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473096636010000', 2, 1, 1, 'ASRS-0313', 'P3', 'A01-38-08', '2025-04-01 10:04:57', '2025-04-01 10:04:57', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473110434010000', 2, 1, 1, 'ASRS-0350', 'P3', 'A04-32-03', '2025-04-01 10:05:10', '2025-04-01 10:05:10', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473120531010000', 2, 2, 1, 'ASRS-0334', 'A02-36-08', '', '2025-04-01 10:05:21', '2025-04-01 10:05:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473192337010000', 2, 1, 1, 'ASRS-0520', 'P3', 'A03-34-08', '2025-04-01 10:06:32', '2025-04-01 10:06:32', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473267535010000', 2, 2, 1, 'ASRS-0324', 'A01-29-07', '', '2025-04-01 10:07:48', '2025-04-01 10:07:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473267535010001', 2, 2, 1, 'ASRS-0305', 'A04-31-04', '', '2025-04-01 10:07:48', '2025-04-01 10:07:49', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473288638010000', 2, 1, 1, 'ASRS-0334', 'P3', 'A02-36-08', '2025-04-01 10:08:09', '2025-04-01 10:08:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473311530010000', 2, 2, 1, 'ASRS-0340', 'A04-31-05', '', '2025-04-01 10:08:32', '2025-04-01 10:08:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473362536010000', 2, 2, 1, 'ASRS-1027', 'A04-29-10', '', '2025-04-01 10:09:23', '2025-04-01 10:09:24', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473381656010000', 2, 1, 1, 'ASRS-0305', 'P3', 'A01-29-07', '2025-04-01 10:09:42', '2025-04-01 10:09:42', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473395437010000', 2, 1, 1, 'ASRS-0324', 'P3', 'A04-31-04', '2025-04-01 10:09:55', '2025-04-01 10:09:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473413529010000', 2, 2, 1, 'ASRS-1032', 'A04-38-02', '', '2025-04-01 10:10:14', '2025-04-01 10:10:15', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473429949010000', 2, 1, 1, 'ASRS-0340', 'P3', 'A01-39-06', '2025-04-01 10:10:30', '2025-04-01 10:10:30', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473491535010000', 2, 2, 1, 'ASRS-0359', 'A04-31-08', '', '2025-04-01 10:11:32', '2025-04-01 10:11:33', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473496864010000', 2, 1, 1, 'ASRS-1027', 'P3', 'A01-39-08', '2025-04-01 10:11:37', '2025-04-01 10:11:37', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473582352010000', 2, 1, 1, 'ASRS-1032', 'P3', 'A01-40-07', '2025-04-01 10:13:02', '2025-04-01 10:13:02', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473607530010000', 2, 2, 1, 'ASRS-0306', 'A02-42-02', '', '2025-04-01 10:13:28', '2025-04-01 10:13:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473607530010001', 2, 2, 1, 'ASRS-0333', 'A03-35-04', '', '2025-04-01 10:13:28', '2025-04-01 10:13:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473627042010000', 2, 1, 1, 'ASRS-0359', 'P3', 'A04-31-05', '2025-04-01 10:13:47', '2025-04-01 10:13:47', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473660528010000', 2, 2, 1, 'ASRS-1526', 'A04-39-01', '', '2025-04-01 10:14:21', '2025-04-01 10:14:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473693529010000', 2, 2, 1, 'ASRS-1902', 'A02-36-09', '', '2025-04-01 10:14:54', '2025-04-01 10:14:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473739534010000', 2, 2, 1, 'ASRS-1221', 'A04-38-01', '', '2025-04-01 10:15:40', '2025-04-01 10:15:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473739586010000', 2, 1, 1, 'ASRS-0333', 'P3', 'A02-42-02', '2025-04-01 10:15:40', '2025-04-01 10:15:40', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473750530010000', 2, 2, 1, 'ASRS-0331', 'A02-41-01', '', '2025-04-01 10:15:51', '2025-04-01 10:15:52', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473768947010000', 2, 1, 1, 'ASRS-0306', 'P3', 'A03-35-04', '2025-04-01 10:16:09', '2025-04-01 10:16:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473793529010000', 2, 2, 1, 'ASRS-0303', 'A04-36-04', '', '2025-04-01 10:16:34', '2025-04-01 10:16:35', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473820845010000', 2, 1, 1, 'ASRS-1526', 'P3', 'A02-41-01', '2025-04-01 10:17:01', '2025-04-01 10:17:01', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473841877010000', 2, 1, 1, 'ASRS-1902', 'P3', 'A04-29-10', '2025-04-01 10:17:22', '2025-04-01 10:17:22', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473864938010000', 2, 1, 1, 'ASRS-1221', 'P3', 'A02-36-09', '2025-04-01 10:17:45', '2025-04-01 10:17:45', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473890743010000', 2, 1, 1, 'ASRS-0331', 'P3', 'A04-31-08', '2025-04-01 10:18:11', '2025-04-01 10:18:11', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473937529010000', 2, 2, 1, 'ASRS-1034', 'A02-33-10', '', '2025-04-01 10:18:58', '2025-04-01 10:18:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473957074010000', 2, 1, 1, 'ASRS-0303', 'P3', 'A01-41-06', '2025-04-01 10:19:17', '2025-04-01 10:19:17', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743473998530010000', 2, 2, 1, 'ASRS-0519', 'A02-37-08', '', '2025-04-01 10:19:59', '2025-04-01 10:20:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474080345010000', 2, 1, 1, 'ASRS-1034', 'P3', 'A02-33-10', '2025-04-01 10:21:20', '2025-04-01 10:21:20', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474157535010000', 2, 2, 1, 'ASRS-0316', 'A04-34-06', '', '2025-04-01 10:22:38', '2025-04-01 10:22:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474157535010001', 2, 2, 1, 'ASRS-0338', 'A01-41-04', '', '2025-04-01 10:22:38', '2025-04-01 10:22:39', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474179648010000', 2, 1, 1, 'ASRS-0519', 'P3', 'A02-37-08', '2025-04-01 10:23:00', '2025-04-01 10:23:00', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474209530010000', 2, 2, 1, 'ASRS-1031', 'A01-37-09', '', '2025-04-01 10:23:30', '2025-04-01 10:23:31', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474280776010000', 2, 1, 1, 'ASRS-0316', 'P3', 'A01-41-04', '2025-04-01 10:24:41', '2025-04-01 10:24:41', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474294578010000', 2, 1, 1, 'ASRS-0338', 'P3', 'A04-38-01', '2025-04-01 10:24:55', '2025-04-01 10:24:55', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474342529010000', 2, 2, 1, 'ASRS-0337', 'A03-37-03', '', '2025-04-01 10:25:43', '2025-04-01 10:25:44', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474364749010000', 2, 1, 1, 'ASRS-1031', 'P3', 'A01-37-09', '2025-04-01 10:26:05', '2025-04-01 10:26:05', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474387535010000', 2, 2, 1, 'ASRS-0501', 'A04-37-03', '', '2025-04-01 10:26:28', '2025-04-01 10:26:29', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474470978010000', 2, 1, 1, 'ASRS-0337', 'P3', 'A01-42-05', '2025-04-01 10:27:51', '2025-04-01 10:27:51', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474547529010000', 2, 2, 1, 'ASRS-1524', 'A01-36-09', '', '2025-04-01 10:29:08', '2025-04-01 10:29:09', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474568450010000', 2, 1, 1, 'ASRS-0501', 'P3', 'A02-36-11', '2025-04-01 10:29:28', '2025-04-01 10:29:28', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743474597530010000', 2, 2, 1, 'ASRS-0522', 'A01-31-08', '', '2025-04-01 10:29:58', '2025-04-01 10:29:59', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743478877530010000', 2, 2, 1, 'ASRS-1088', 'A03-33-08', '', '2025-04-01 11:41:18', '2025-04-01 11:41:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743478878598010000', 2, 1, 1, 'ASRS-1524', 'P3', 'A01-31-08', '2025-04-01 11:41:19', '2025-04-01 11:41:19', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743478897798010000', 2, 1, 1, 'ASRS-0522', 'P3', 'A03-37-03', '2025-04-01 11:41:38', '2025-04-01 11:41:38', NULL, NULL); -INSERT INTO `t_app_wcs_task_bak` (`wcs_task_id`, `wcs_task_status`, `wcs_task_type`, `task_priority`, `vehicle_id`, `origin`, `destination`, `create_time`, `send_time`, `finish_time`, `remark`) VALUES ('1743479025287010000', 2, 1, 1, 'ASRS-1088', 'P3', 'A01-36-09', '2025-04-01 11:43:45', '2025-04-01 11:43:45', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_app_work --- ---------------------------- -DROP TABLE IF EXISTS `t_app_work`; -CREATE TABLE `t_app_work` ( - `work_index` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键,用于确认唯一一条数据。', - `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工单', - `plan_start_date` date NOT NULL COMMENT '计划开工日期', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号', - `single_product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '单片号', - `box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '原材料号', - `need_num` int NOT NULL COMMENT '需求数量', - `distribute_num` int NOT NULL COMMENT '已分配数量', - `finish_num` int NOT NULL COMMENT '已完成数量', - `work_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工作站台', - `work_status` int NOT NULL COMMENT '工作状态', - `work_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '工作用户', - `create_time` datetime NOT NULL COMMENT '创建时间', - `finish_time` datetime DEFAULT NULL COMMENT '完成时间', - `lack_status` int NOT NULL COMMENT '缺料状态', - `is_out` int DEFAULT NULL COMMENT '是否是库外料', - `product_type` int NOT NULL, - PRIMARY KEY (`work_index`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_work --- ---------------------------- -BEGIN; -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010000', '110002189133', '2025-03-26', '4512444', NULL, 'A', '9S8009', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:25:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010001', '110002189133', '2025-03-26', '4512444', NULL, 'A', '4K1388', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:34:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010002', '110002189133', '2025-03-26', '4512444', NULL, 'A', '9S4189', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:25:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010003', '110002189133', '2025-03-26', '4512444', NULL, 'A', '2M9780', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:35:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010004', '110002189133', '2025-03-26', '4512444', NULL, 'A', '9S4182', 3, 3, 3, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:24:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010005', '110002189133', '2025-03-26', '4512444', NULL, 'A', '3J7354', 3, 3, 3, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:30:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010006', '110002189133', '2025-03-26', '4512444', NULL, 'A', '9S4183', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:26:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010007', '110002189133', '2025-03-26', '4512444', NULL, 'A', '3D2824', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:25:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010008', '110002189133', '2025-03-26', '4512444', NULL, 'A', '6V8647', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:34:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010009', '110002189133', '2025-03-26', '4512444', NULL, 'A', '3J7354', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:30:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010010', '110002189133', '2025-03-26', '4512444', NULL, 'A', '4J5477', 2, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010011', '110002189133', '2025-03-26', '4512444', NULL, 'B', '3603693', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:38:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010012', '110002189133', '2025-03-26', '4512444', NULL, 'B', '3K0360', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:40:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010013', '110002189133', '2025-03-26', '4512444', NULL, 'B', '9S8003', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:38:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010014', '110002189133', '2025-03-26', '4512444', NULL, 'B', '1J9671', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:39:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010015', '110002189133', '2025-03-26', '4512444', NULL, 'B', '1318350', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010016', '110002189133', '2025-03-26', '4512444', NULL, 'B', '3K0360', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:40:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010017', '110002189133', '2025-03-26', '4512444', NULL, 'B', '6V8398', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:38:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010018', '110002189133', '2025-03-26', '4512444', NULL, 'B', '1007000', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:57:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010019', '110002189133', '2025-03-26', '4512444', NULL, 'C', '3676001', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:49:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010020', '110002189133', '2025-03-26', '4512444', NULL, 'C', '3676002', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:50:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010021', '110002189133', '2025-03-26', '4512444', NULL, 'C', '3T8236', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:48:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010022', '110002189133', '2025-03-26', '4512444', NULL, 'C', '1H0337', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010023', '110002189133', '2025-03-26', '4512444', NULL, 'C', '4T1860', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010024', '110002189133', '2025-03-26', '4512444', NULL, 'C', '8J6815', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:07:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010025', '110002189133', '2025-03-26', '4512444', NULL, 'C', '3P9498', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:51:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010026', '110002189133', '2025-03-26', '4512444', NULL, 'C', '9F6705', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:46:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010027', '110002189133', '2025-03-26', '4512444', NULL, 'C', '5M2057', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:47:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010028', '110002189133', '2025-03-26', '4512444', NULL, 'D', '1006021', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010029', '110002189133', '2025-03-26', '4512444', NULL, 'D', '6E1924', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:54:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010030', '110002189133', '2025-03-26', '4512444', NULL, 'D', '6E1925', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:54:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010031', '110002189133', '2025-03-26', '4512444', NULL, 'E', '6V5230', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:00:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010032', '110002189133', '2025-03-26', '4512444', NULL, 'E', '8M3175', 2, 2, 2, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 08:58:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010033', '110002189133', '2025-03-26', '4512444', NULL, 'E', '4540936', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010034', '110002189133', '2025-03-26', '4512444', NULL, 'E', '3307743', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010035', '110002189133', '2025-03-26', '4512444', NULL, 'E', '6E1923', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:00:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010036', '110002189133', '2025-03-26', '4512444', NULL, 'F', '1488356', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:02:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010037', '110002189133', '2025-03-26', '4512444', NULL, 'F', '6V9834', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:02:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010038', '110002189133', '2025-03-26', '4512444', NULL, 'F', '4T4935', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010039', '110002189133', '2025-03-26', '4512444', NULL, 'G', '2191891', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:09:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010040', '110002189133', '2025-03-26', '4512444', NULL, 'G', '2965987', 1, 1, 1, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:10:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010041', '110002189133', '2025-03-26', '4512444', NULL, 'G', '5796930', 1, 0, 0, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742775433925010042', '110002189133', '2025-03-26', '4512444', NULL, 'H', '2191893', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 08:17:14', '2025-03-24 09:11:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010000', '110002189132', '2025-03-26', '4512444', NULL, 'A', '9S8009', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:17:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010001', '110002189132', '2025-03-26', '4512444', NULL, 'A', '4K1388', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:19:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010002', '110002189132', '2025-03-26', '4512444', NULL, 'A', '9S4189', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:18:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010003', '110002189132', '2025-03-26', '4512444', NULL, 'A', '2M9780', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:23:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010004', '110002189132', '2025-03-26', '4512444', NULL, 'A', '9S4182', 33, 33, 33, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:28:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010005', '110002189132', '2025-03-26', '4512444', NULL, 'A', '3J7354', 55, 55, 55, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:24:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010006', '110002189132', '2025-03-26', '4512444', NULL, 'A', '9S4183', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:19:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010007', '110002189132', '2025-03-26', '4512444', NULL, 'A', '3D2824', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:20:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010008', '110002189132', '2025-03-26', '4512444', NULL, 'A', '6V8647', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:22:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010009', '110002189132', '2025-03-26', '4512444', NULL, 'A', '4J5477', 22, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010010', '110002189132', '2025-03-26', '4512444', NULL, 'B', '3603693', 44, 44, 44, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:31:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010011', '110002189132', '2025-03-26', '4512444', NULL, 'B', '3K0360', 88, 88, 88, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:50:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010012', '110002189132', '2025-03-26', '4512444', NULL, 'B', '9S8003', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:33:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010013', '110002189132', '2025-03-26', '4512444', NULL, 'B', '1J9671', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:32:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010014', '110002189132', '2025-03-26', '4512444', NULL, 'B', '1318350', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010015', '110002189132', '2025-03-26', '4512444', NULL, 'B', '6V8398', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:32:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010016', '110002189132', '2025-03-26', '4512444', NULL, 'B', '1007000', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:43:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010017', '110002189132', '2025-03-26', '4512444', NULL, 'C', '3676001', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:58:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010018', '110002189132', '2025-03-26', '4512444', NULL, 'C', '3676002', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:58:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010019', '110002189132', '2025-03-26', '4512444', NULL, 'C', '3T8236', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:52:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010020', '110002189132', '2025-03-26', '4512444', NULL, 'C', '1H0337', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010021', '110002189132', '2025-03-26', '4512444', NULL, 'C', '4T1860', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010022', '110002189132', '2025-03-26', '4512444', NULL, 'C', '8J6815', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:01:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010023', '110002189132', '2025-03-26', '4512444', NULL, 'C', '3P9498', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:00:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010024', '110002189132', '2025-03-26', '4512444', NULL, 'C', '9F6705', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:59:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010025', '110002189132', '2025-03-26', '4512444', NULL, 'C', '5M2057', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 09:55:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010026', '110002189132', '2025-03-26', '4512444', NULL, 'D', '1006021', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010027', '110002189132', '2025-03-26', '4512444', NULL, 'D', '6E1924', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:04:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010028', '110002189132', '2025-03-26', '4512444', NULL, 'D', '6E1925', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:04:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010029', '110002189132', '2025-03-26', '4512444', NULL, 'E', '6V5230', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:07:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010030', '110002189132', '2025-03-26', '4512444', NULL, 'E', '8M3175', 22, 22, 22, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:08:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010031', '110002189132', '2025-03-26', '4512444', NULL, 'E', '4540936', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010032', '110002189132', '2025-03-26', '4512444', NULL, 'E', '3307743', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010033', '110002189132', '2025-03-26', '4512444', NULL, 'E', '6E1923', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:09:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010034', '110002189132', '2025-03-26', '4512444', NULL, 'F', '1488356', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:13:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010035', '110002189132', '2025-03-26', '4512444', NULL, 'F', '6V9834', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:16:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010036', '110002189132', '2025-03-26', '4512444', NULL, 'F', '4T4935', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010037', '110002189132', '2025-03-26', '4512444', NULL, 'G', '2191891', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:19:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010038', '110002189132', '2025-03-26', '4512444', NULL, 'G', '2965987', 11, 11, 11, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:18:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010039', '110002189132', '2025-03-26', '4512444', NULL, 'G', '5796930', 11, 0, 0, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742778806851010040', '110002189132', '2025-03-26', '4512444', NULL, 'H', '2191893', 44, 44, 44, 'P3', 2, '管理员', '2025-03-24 09:13:27', '2025-03-24 10:21:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010000', '110002189080', '2025-03-26', '2965662', NULL, 'A', '9T8668', 10, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010001', '110002189080', '2025-03-26', '2965662', NULL, 'A', '3D2824', 10, 10, 10, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-03-24 13:29:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010002', '110002189080', '2025-03-26', '2965662', NULL, 'A', '2935263', 10, 10, 10, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-03-24 13:30:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010003', '110002189080', '2025-03-26', '2965662', NULL, 'A', '4475613', 10, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010004', '110002189080', '2025-03-26', '2965662', NULL, 'B', '6J4568', 10, 10, 10, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-03-24 13:33:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794044595010005', '110002189080', '2025-03-26', '2965662', NULL, 'B', '2521631', 30, 30, 30, 'P3', 2, '管理员', '2025-03-24 13:27:25', '2025-03-24 13:32:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475805010000', '110002189085', '2025-03-26', '2965662', NULL, 'A', '9T8668', 16, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475806010000', '110002189085', '2025-03-26', '2965662', NULL, 'A', '3D2824', 16, 16, 16, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-03-24 13:36:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475806010001', '110002189085', '2025-03-26', '2965662', NULL, 'A', '2935263', 16, 16, 16, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-03-24 13:37:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475806010002', '110002189085', '2025-03-26', '2965662', NULL, 'A', '4475613', 16, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475806010003', '110002189085', '2025-03-26', '2965662', NULL, 'B', '6J4568', 16, 16, 16, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-03-24 13:39:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794475806010004', '110002189085', '2025-03-26', '2965662', NULL, 'B', '2521631', 48, 48, 48, 'P3', 2, '管理员', '2025-03-24 13:34:36', '2025-03-24 13:40:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010000', '110002189086', '2025-03-26', '2965662', NULL, 'A', '9T8668', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010001', '110002189086', '2025-03-26', '2965662', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-03-24 13:44:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010002', '110002189086', '2025-03-26', '2965662', NULL, 'A', '2935263', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-03-24 13:44:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010003', '110002189086', '2025-03-26', '2965662', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010004', '110002189086', '2025-03-26', '2965662', NULL, 'B', '6J4568', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-03-24 13:47:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742794911764010005', '110002189086', '2025-03-26', '2965662', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-24 13:41:52', '2025-03-24 13:48:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010000', '110002189081', '2025-03-26', '2965662', NULL, 'A', '9T8668', 6, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010001', '110002189081', '2025-03-26', '2965662', NULL, 'A', '3D2824', 6, 6, 6, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-03-24 13:51:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010002', '110002189081', '2025-03-26', '2965662', NULL, 'A', '2935263', 6, 6, 6, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-03-24 13:51:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010003', '110002189081', '2025-03-26', '2965662', NULL, 'A', '4475613', 6, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010004', '110002189081', '2025-03-26', '2965662', NULL, 'B', '6J4568', 6, 6, 6, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-03-24 13:54:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795331843010005', '110002189081', '2025-03-26', '2965662', NULL, 'B', '2521631', 18, 18, 18, 'P3', 2, '管理员', '2025-03-24 13:48:52', '2025-03-24 13:55:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010000', '110002189075', '2025-03-26', '2119696', NULL, 'A', '2119695', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010001', '110002189075', '2025-03-26', '2119696', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-03-24 14:05:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010002', '110002189075', '2025-03-26', '2119696', NULL, 'A', '8Y5928', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010003', '110002189075', '2025-03-26', '2119696', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010004', '110002189075', '2025-03-26', '2119696', NULL, 'B', '2260267', 4, 0, 0, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742795794243010005', '110002189075', '2025-03-26', '2119696', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-24 13:56:34', '2025-03-24 14:12:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010000', '110002189076', '2025-03-27', '2119696', NULL, 'A', '2119695', 4, 0, 4, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-03-27 09:21:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010001', '110002189076', '2025-03-27', '2119696', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-03-25 08:51:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010002', '110002189076', '2025-03-27', '2119696', NULL, 'A', '8Y5928', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010003', '110002189076', '2025-03-27', '2119696', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010004', '110002189076', '2025-03-27', '2119696', NULL, 'B', '2260267', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742863600904010005', '110002189076', '2025-03-27', '2119696', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 08:46:41', '2025-03-25 08:53:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037710010000', '110002189087', '2025-03-27', '2965662', NULL, 'A', '9T8668', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037710010001', '110002189087', '2025-03-27', '2965662', NULL, 'A', '3D2824', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-03-25 08:56:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037710010002', '110002189087', '2025-03-27', '2965662', NULL, 'A', '2935263', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-03-25 08:55:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037710010003', '110002189087', '2025-03-27', '2965662', NULL, 'A', '4475613', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037710010004', '110002189087', '2025-03-27', '2965662', NULL, 'B', '6J4568', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-03-25 08:58:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864037711010000', '110002189087', '2025-03-27', '2965662', NULL, 'B', '2521631', 24, 24, 24, 'P3', 2, '管理员', '2025-03-25 08:53:58', '2025-03-25 08:59:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460615010000', '110002196241', '2025-03-27', '2965662', NULL, 'A', '9T8668', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460615010001', '110002196241', '2025-03-27', '2965662', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-03-25 09:02:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460615010002', '110002196241', '2025-03-27', '2965662', NULL, 'A', '2935263', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-03-25 09:03:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460615010003', '110002196241', '2025-03-27', '2965662', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460615010004', '110002196241', '2025-03-27', '2965662', NULL, 'B', '6J4568', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-03-25 09:05:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864460616010000', '110002196241', '2025-03-27', '2965662', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 09:01:01', '2025-03-25 09:06:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010000', '110002196242', '2025-03-28', '2965662', NULL, 'A', '9T8668', 20, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010001', '110002196242', '2025-03-28', '2965662', NULL, 'A', '3D2824', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-03-25 09:09:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010002', '110002196242', '2025-03-28', '2965662', NULL, 'A', '2935263', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-03-25 09:09:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010003', '110002196242', '2025-03-28', '2965662', NULL, 'A', '4475613', 20, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010004', '110002196242', '2025-03-28', '2965662', NULL, 'B', '6J4568', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-03-25 09:12:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742864846860010005', '110002196242', '2025-03-28', '2965662', NULL, 'B', '2521631', 60, 60, 60, 'P3', 2, '管理员', '2025-03-25 09:07:27', '2025-03-25 09:27:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010000', '110002196237', '2025-03-28', '2965662', NULL, 'A', '9T8668', 12, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010001', '110002196237', '2025-03-28', '2965662', NULL, 'A', '3D2824', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-03-25 09:30:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010002', '110002196237', '2025-03-28', '2965662', NULL, 'A', '2935263', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-03-25 09:30:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010003', '110002196237', '2025-03-28', '2965662', NULL, 'A', '4475613', 12, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010004', '110002196237', '2025-03-28', '2965662', NULL, 'B', '6J4568', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-03-25 09:44:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742866101584010005', '110002196237', '2025-03-28', '2965662', NULL, 'B', '2521631', 36, 36, 36, 'P3', 2, '管理员', '2025-03-25 09:28:22', '2025-03-25 09:33:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251853010000', '110002196235', '2025-03-28', '3215283', NULL, 'A', '9J0477', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:50:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010000', '110002196235', '2025-03-28', '3215283', NULL, 'A', '4K1388', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:49:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010001', '110002196235', '2025-03-28', '3215283', NULL, 'A', '6J4694', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:51:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010002', '110002196235', '2025-03-28', '3215283', NULL, 'A', '1J9671', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:50:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010003', '110002196235', '2025-03-28', '3215283', NULL, 'B', '4B9782', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:54:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010004', '110002196235', '2025-03-28', '3215283', NULL, 'B', '4H8380', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010005', '110002196235', '2025-03-28', '3215283', NULL, 'B', '1A8096', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010006', '110002196235', '2025-03-28', '3215283', NULL, 'B', '7B8194', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:54:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010007', '110002196235', '2025-03-28', '3215283', NULL, 'B', '4475614', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010008', '110002196235', '2025-03-28', '3215283', NULL, 'C', '1U3142', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010009', '110002196235', '2025-03-28', '3215283', NULL, 'C', '2521631', 24, 24, 24, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:57:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010010', '110002196235', '2025-03-28', '3215283', NULL, 'C', '1J9671', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-03-25 09:56:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742867251854010011', '110002196235', '2025-03-28', '3215283', NULL, 'C', '3603691', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 09:47:32', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914563010000', '110002189153', '2025-03-27', '5936452', NULL, 'A', '9S8009', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:14:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914563010001', '110002189153', '2025-03-27', '5936452', NULL, 'A', '4K1388', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:15:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914563010002', '110002189153', '2025-03-27', '5936452', NULL, 'A', '9S4189', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:14:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914563010003', '110002189153', '2025-03-27', '5936452', NULL, 'A', '2M9780', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:13:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010000', '110002189153', '2025-03-27', '5936452', NULL, 'A', '9S4182', 3, 3, 3, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:14:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010001', '110002189153', '2025-03-27', '5936452', NULL, 'A', '3J7354', 3, 3, 3, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:15:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010002', '110002189153', '2025-03-27', '5936452', NULL, 'B', '9S4183', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:19:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010003', '110002189153', '2025-03-27', '5936452', NULL, 'B', '3D2824', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:19:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010004', '110002189153', '2025-03-27', '5936452', NULL, 'B', '6V8647', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:17:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010005', '110002189153', '2025-03-27', '5936452', NULL, 'B', '3J7354', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:21:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010006', '110002189153', '2025-03-27', '5936452', NULL, 'B', '4J5477', 2, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010007', '110002189153', '2025-03-27', '5936452', NULL, 'C', '3603693', 3, 3, 3, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:25:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010008', '110002189153', '2025-03-27', '5936452', NULL, 'C', '3K0360', 3, 3, 3, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:24:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010009', '110002189153', '2025-03-27', '5936452', NULL, 'C', '9S8003', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:22:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010010', '110002189153', '2025-03-27', '5936452', NULL, 'C', '1J9671', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:23:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010011', '110002189153', '2025-03-27', '5936452', NULL, 'C', '1318350', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010012', '110002189153', '2025-03-27', '5936452', NULL, 'D', '3K0360', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:30:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010013', '110002189153', '2025-03-27', '5936452', NULL, 'D', '6V8398', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:27:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010014', '110002189153', '2025-03-27', '5936452', NULL, 'D', '1007000', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:29:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010015', '110002189153', '2025-03-27', '5936452', NULL, 'D', '3676001', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:28:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010016', '110002189153', '2025-03-27', '5936452', NULL, 'D', '3676002', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:28:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010017', '110002189153', '2025-03-27', '5936452', NULL, 'D', '3T8236', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:26:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010018', '110002189153', '2025-03-27', '5936452', NULL, 'D', '1H0337', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010019', '110002189153', '2025-03-27', '5936452', NULL, 'D', '4T1860', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010020', '110002189153', '2025-03-27', '5936452', NULL, 'D', '8J6815', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:30:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010021', '110002189153', '2025-03-27', '5936452', NULL, 'D', '3P9498', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:29:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010022', '110002189153', '2025-03-27', '5936452', NULL, 'E', '9F6705', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:33:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010023', '110002189153', '2025-03-27', '5936452', NULL, 'E', '5M2057', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:32:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010024', '110002189153', '2025-03-27', '5936452', NULL, 'E', '6V5230', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:33:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010025', '110002189153', '2025-03-27', '5936452', NULL, 'E', '8M3175', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:32:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010026', '110002189153', '2025-03-27', '5936452', NULL, 'E1', '1006021', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010027', '110002189153', '2025-03-27', '5936452', NULL, 'E1', '6E1924', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:35:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010028', '110002189153', '2025-03-27', '5936452', NULL, 'E1', '6E1925', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:35:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010029', '110002189153', '2025-03-27', '5936452', NULL, 'F', '5956711', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010030', '110002189153', '2025-03-27', '5936452', NULL, 'F', '3307743', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914564010031', '110002189153', '2025-03-27', '5936452', NULL, 'F', '6E1923', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:38:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010000', '110002189153', '2025-03-27', '5936452', NULL, 'F', '8T3611', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010001', '110002189153', '2025-03-27', '5936452', NULL, 'F', '6V8400', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010002', '110002189153', '2025-03-27', '5936452', NULL, 'F', '2S4078', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:37:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010003', '110002189153', '2025-03-27', '5936452', NULL, 'G', '6V9834', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:40:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010004', '110002189153', '2025-03-27', '5936452', NULL, 'G', '4T4935', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010005', '110002189153', '2025-03-27', '5936452', NULL, 'G', '2191891', 2, 2, 2, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:40:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010006', '110002189153', '2025-03-27', '5936452', NULL, 'H', '2965987', 1, 1, 1, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:42:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010007', '110002189153', '2025-03-27', '5936452', NULL, 'H', '2191893', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-03-25 14:42:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742882914565010008', '110002189153', '2025-03-27', '5936452', NULL, 'H', '5796930', 1, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:08:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010000', '110002189157', '2025-03-28', '3701290', NULL, 'A', '9S8009', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:47:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010001', '110002189157', '2025-03-28', '3701290', NULL, 'A', '4K1388', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:49:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010002', '110002189157', '2025-03-28', '3701290', NULL, 'A', '9S4189', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:47:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010003', '110002189157', '2025-03-28', '3701290', NULL, 'A', '2M9780', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:49:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010004', '110002189157', '2025-03-28', '3701290', NULL, 'A', '9S4182', 18, 18, 18, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:46:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010005', '110002189157', '2025-03-28', '3701290', NULL, 'A', '3J7354', 36, 36, 36, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:50:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010006', '110002189157', '2025-03-28', '3701290', NULL, 'A', '9S8002', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:49:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010007', '110002189157', '2025-03-28', '3701290', NULL, 'A', '6V8647', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:48:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010008', '110002189157', '2025-03-28', '3701290', NULL, 'A', '4J5477', 12, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010009', '110002189157', '2025-03-28', '3701290', NULL, 'B', '9S4183', 30, 30, 30, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:53:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010010', '110002189157', '2025-03-28', '3701290', NULL, 'B', '3D2824', 30, 30, 30, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:53:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010011', '110002189157', '2025-03-28', '3701290', NULL, 'B', '9S4185', 30, 30, 30, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:54:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010012', '110002189157', '2025-03-28', '3701290', NULL, 'B', '3K0360', 30, 30, 30, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:55:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010013', '110002189157', '2025-03-28', '3701290', NULL, 'C', '9S4191', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:02:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010014', '110002189157', '2025-03-28', '3701290', NULL, 'C', '3J1907', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:00:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010015', '110002189157', '2025-03-28', '3701290', NULL, 'C', '1318350', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010016', '110002189157', '2025-03-28', '3701290', NULL, 'C', '3K0360', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:01:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010017', '110002189157', '2025-03-28', '3701290', NULL, 'C', '3T8236', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:00:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010018', '110002189157', '2025-03-28', '3701290', NULL, 'C', '6V8398', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:57:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010019', '110002189157', '2025-03-28', '3701290', NULL, 'C', '1007000', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:03:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010020', '110002189157', '2025-03-28', '3701290', NULL, 'C', '9S8003', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:59:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010021', '110002189157', '2025-03-28', '3701290', NULL, 'C', '1J9671', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 14:58:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010022', '110002189157', '2025-03-28', '3701290', NULL, 'D', '8T8987', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:07:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010023', '110002189157', '2025-03-28', '3701290', NULL, 'D', '6V9833', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:05:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010024', '110002189157', '2025-03-28', '3701290', NULL, 'D', '5K9090', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010025', '110002189157', '2025-03-28', '3701290', NULL, 'D', '2S4078', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:05:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010026', '110002189157', '2025-03-28', '3701290', NULL, 'E', '9S8001', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:11:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010027', '110002189157', '2025-03-28', '3701290', NULL, 'E', '4J7533', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:14:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010028', '110002189157', '2025-03-28', '3701290', NULL, 'E', '8J6815', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:12:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010029', '110002189157', '2025-03-28', '3701290', NULL, 'E', '3P9498', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:13:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010030', '110002189157', '2025-03-28', '3701290', NULL, 'E', '1H0337', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010031', '110002189157', '2025-03-28', '3701290', NULL, 'E', '9F6705', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:13:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010032', '110002189157', '2025-03-28', '3701290', NULL, 'E', '4T1860', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010033', '110002189157', '2025-03-28', '3701290', NULL, 'E', '6E1924', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:13:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010034', '110002189157', '2025-03-28', '3701290', NULL, 'E', '6E1925', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:09:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010035', '110002189157', '2025-03-28', '3701290', NULL, 'F', '8M3175', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:16:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010036', '110002189157', '2025-03-28', '3701290', NULL, 'F', '5M2057', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:16:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010037', '110002189157', '2025-03-28', '3701290', NULL, 'F', '6V5230', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:17:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010038', '110002189157', '2025-03-28', '3701290', NULL, 'F', '4460768', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010039', '110002189157', '2025-03-28', '3701290', NULL, 'G', '3307743', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010040', '110002189157', '2025-03-28', '3701290', NULL, 'G', '4T4935', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010041', '110002189157', '2025-03-28', '3701290', NULL, 'G', '6E1923', 6, 6, 6, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-03-25 15:20:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010042', '110002189157', '2025-03-28', '3701290', NULL, 'G', '3701289', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742885077260010043', '110002189157', '2025-03-28', '3701290', NULL, 'H', '5796930', 6, 0, 0, 'P3', 2, '管理员', '2025-03-25 14:44:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010000', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '9S8009', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:26:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010001', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '4K1388', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:27:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010002', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '9S4189', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:26:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010003', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:27:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010004', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '9S4182', 12, 12, 12, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:26:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010005', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '3J7354', 24, 24, 24, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:29:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010006', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '9S8002', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:30:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010007', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '6V8647', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:26:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420630010008', '110002189122', '2025-03-28', '9T5957', NULL, 'A', '4J5477', 8, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010000', '110002189122', '2025-03-28', '9T5957', NULL, 'B', '9S4183', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:33:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010001', '110002189122', '2025-03-28', '9T5957', NULL, 'B', '3D2824', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:31:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010002', '110002189122', '2025-03-28', '9T5957', NULL, 'B', '9S4185', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:33:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010003', '110002189122', '2025-03-28', '9T5957', NULL, 'B', '3K0360', 20, 20, 20, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:34:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010004', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '6V3965', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:38:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010005', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '3J1907', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:39:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010006', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '1318350', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010007', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '3K0360', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:40:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010008', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '3T8236', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:36:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010009', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '6V8398', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:36:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010010', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '1007000', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:40:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010011', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '9S8003', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:37:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010012', '110002189122', '2025-03-28', '9T5957', NULL, 'C', '1J9671', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:37:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010013', '110002189122', '2025-03-28', '9T5957', NULL, 'D', '8T8987', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:44:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010014', '110002189122', '2025-03-28', '9T5957', NULL, 'D', '6V9833', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:42:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010015', '110002189122', '2025-03-28', '9T5957', NULL, 'D', '5K9090', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010016', '110002189122', '2025-03-28', '9T5957', NULL, 'D', '2S4078', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:43:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010017', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '9S8001', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:46:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010018', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '4J7533', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:51:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010019', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '8J6815', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:47:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010020', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '3P9498', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:48:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010021', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '1H0337', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010022', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '9F6705', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:46:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010023', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '4T1860', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010024', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '6E1924', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:48:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010025', '110002189122', '2025-03-28', '9T5957', NULL, 'E', '6E1925', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:49:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010026', '110002189122', '2025-03-28', '9T5957', NULL, 'F', '8M3175', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:53:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010027', '110002189122', '2025-03-28', '9T5957', NULL, 'F', '5M2057', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:52:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010028', '110002189122', '2025-03-28', '9T5957', NULL, 'F', '6V5230', 8, 8, 8, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:54:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010029', '110002189122', '2025-03-28', '9T5957', NULL, 'F', '1006021', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010030', '110002189122', '2025-03-28', '9T5957', NULL, 'G', '3307743', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010031', '110002189122', '2025-03-28', '9T5957', NULL, 'G', '4T4935', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010032', '110002189122', '2025-03-28', '9T5957', NULL, 'G', '6E1923', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:56:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010033', '110002189122', '2025-03-28', '9T5957', NULL, 'G', '1119632', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010034', '110002189122', '2025-03-28', '9T5957', NULL, 'H', '5796930', 4, 0, 0, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742887420631010035', '110002189122', '2025-03-28', '9T5957', NULL, 'H', '6V0852', 4, 4, 4, 'P3', 2, '管理员', '2025-03-25 15:23:41', '2025-03-25 15:58:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010000', '110002189154', '2025-03-29', '5429999', NULL, 'A', '9S4183', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:04:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010001', '110002189154', '2025-03-29', '5429999', NULL, 'A', '3D2824', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:06:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010002', '110002189154', '2025-03-29', '5429999', NULL, 'A', '9S4185', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:09:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010003', '110002189154', '2025-03-29', '5429999', NULL, 'A', '3K0360', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:06:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010004', '110002189154', '2025-03-29', '5429999', NULL, 'A', '9S8006', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:09:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010005', '110002189154', '2025-03-29', '5429999', NULL, 'A', '2M9780', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:08:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010006', '110002189154', '2025-03-29', '5429999', NULL, 'A', '7J1089', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:05:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010007', '110002189154', '2025-03-29', '5429999', NULL, 'A', '3J1907', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:08:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010008', '110002189154', '2025-03-29', '5429999', NULL, 'A', '5H3193', 36, 36, 36, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:05:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010009', '110002189154', '2025-03-29', '5429999', NULL, 'A', '9S8002', 90, 90, 90, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:07:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010010', '110002189154', '2025-03-29', '5429999', NULL, 'B', '3J7354', 99, 99, 99, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:33:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010011', '110002189154', '2025-03-29', '5429999', NULL, 'B', '6E5289', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:29:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010012', '110002189154', '2025-03-29', '5429999', NULL, 'B', '3K0360', 27, 27, 27, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:30:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010013', '110002189154', '2025-03-29', '5429999', NULL, 'B', '6V8398', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:28:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010014', '110002189154', '2025-03-29', '5429999', NULL, 'B', '9S4185', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:33:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010015', '110002189154', '2025-03-29', '5429999', NULL, 'B', '9S8002', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:31:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010016', '110002189154', '2025-03-29', '5429999', NULL, 'B', '9J9821', 36, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010017', '110002189154', '2025-03-29', '5429999', NULL, 'B', '4B9782', 45, 45, 45, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:31:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010018', '110002189154', '2025-03-29', '5429999', NULL, 'C', '2S2596', 36, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010019', '110002189154', '2025-03-29', '5429999', NULL, 'C', '8J6815', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:21:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010020', '110002189154', '2025-03-29', '5429999', NULL, 'C', '8F9206', 63, 63, 63, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:18:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010021', '110002189154', '2025-03-29', '5429999', NULL, 'C', '5J2974', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:19:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010022', '110002189154', '2025-03-29', '5429999', NULL, 'C', '8T4196', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:19:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010023', '110002189154', '2025-03-29', '5429999', NULL, 'C', '8T6466', 18, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010024', '110002189154', '2025-03-29', '5429999', NULL, 'C', '6E5291', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:20:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010025', '110002189154', '2025-03-29', '5429999', NULL, 'C', '6T6052', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010026', '110002189154', '2025-03-29', '5429999', NULL, 'C', '6V9830', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:14:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010027', '110002189154', '2025-03-29', '5429999', NULL, 'D', '6J6506', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010028', '110002189154', '2025-03-29', '5429999', NULL, 'D', '1268473', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:39:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010029', '110002189154', '2025-03-29', '5429999', NULL, 'D', '7J4321', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010030', '110002189154', '2025-03-29', '5429999', NULL, 'D', '9M1974', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010031', '110002189154', '2025-03-29', '5429999', NULL, 'D', '1070269', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010032', '110002189154', '2025-03-29', '5429999', NULL, 'D', '8T5005', 36, 36, 36, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:40:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010033', '110002189154', '2025-03-29', '5429999', NULL, 'D', '5481611', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010034', '110002189154', '2025-03-29', '5429999', NULL, 'D', '9T8672', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010035', '110002189154', '2025-03-29', '5429999', NULL, 'D', '4J0520', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:40:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010036', '110002189154', '2025-03-29', '5429999', NULL, 'E', '4564624', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:44:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010037', '110002189154', '2025-03-29', '5429999', NULL, 'E', '4564633', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:45:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010038', '110002189154', '2025-03-29', '5429999', NULL, 'E', '9T7220', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010039', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '8C3206', 36, 36, 36, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:52:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010040', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '5H4019', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:49:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010041', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '4J0520', 18, 18, 18, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 13:07:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010042', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '7S0530', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:54:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010043', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '8T4121', 72, 72, 72, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:51:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010044', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '8T4196', 72, 72, 72, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-03-26 12:54:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742954083669010045', '110002189154', '2025-03-29', '5429999', NULL, 'F终装', '6065745', 9, 0, 0, 'P3', 2, '管理员', '2025-03-26 09:54:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010000', '110002203998', '2025-03-28', '4512444', NULL, 'A', '9S8009', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:15:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010001', '110002203998', '2025-03-28', '4512444', NULL, 'A', '4K1388', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:15:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010002', '110002203998', '2025-03-28', '4512444', NULL, 'A', '9S4189', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:16:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010003', '110002203998', '2025-03-28', '4512444', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:18:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010004', '110002203998', '2025-03-28', '4512444', NULL, 'A', '9S4182', 12, 12, 12, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:15:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010005', '110002203998', '2025-03-28', '4512444', NULL, 'A', '3J7354', 20, 20, 20, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:19:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010006', '110002203998', '2025-03-28', '4512444', NULL, 'A', '9S4183', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:20:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010007', '110002203998', '2025-03-28', '4512444', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:17:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010008', '110002203998', '2025-03-28', '4512444', NULL, 'A', '6V8647', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:16:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010009', '110002203998', '2025-03-28', '4512444', NULL, 'A', '4J5477', 8, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010010', '110002203998', '2025-03-28', '4512444', NULL, 'B', '3603693', 16, 16, 16, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:28:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010011', '110002203998', '2025-03-28', '4512444', NULL, 'B', '3K0360', 20, 20, 20, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:25:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010012', '110002203998', '2025-03-28', '4512444', NULL, 'B', '9S8003', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:22:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010013', '110002203998', '2025-03-28', '4512444', NULL, 'B', '1J9671', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:23:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010014', '110002203998', '2025-03-28', '4512444', NULL, 'B', '1318350', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010015', '110002203998', '2025-03-28', '4512444', NULL, 'B', '6V8398', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:22:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010016', '110002203998', '2025-03-28', '4512444', NULL, 'B', '1007000', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:27:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010017', '110002203998', '2025-03-28', '4512444', NULL, 'C', '3676001', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:31:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010018', '110002203998', '2025-03-28', '4512444', NULL, 'C', '3676002', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:31:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010019', '110002203998', '2025-03-28', '4512444', NULL, 'C', '3T8236', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:32:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010020', '110002203998', '2025-03-28', '4512444', NULL, 'C', '1H0337', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010021', '110002203998', '2025-03-28', '4512444', NULL, 'C', '4T1860', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010022', '110002203998', '2025-03-28', '4512444', NULL, 'C', '8J6815', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:35:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010023', '110002203998', '2025-03-28', '4512444', NULL, 'C', '3P9498', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:30:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010024', '110002203998', '2025-03-28', '4512444', NULL, 'C', '9F6705', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:34:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010025', '110002203998', '2025-03-28', '4512444', NULL, 'C', '5M2057', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:30:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010026', '110002203998', '2025-03-28', '4512444', NULL, 'D', '1006021', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010027', '110002203998', '2025-03-28', '4512444', NULL, 'D', '6E1924', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:38:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010028', '110002203998', '2025-03-28', '4512444', NULL, 'D', '6E1925', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:37:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010029', '110002203998', '2025-03-28', '4512444', NULL, 'E', '6V5230', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:41:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010030', '110002203998', '2025-03-28', '4512444', NULL, 'E', '8M3175', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:40:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010031', '110002203998', '2025-03-28', '4512444', NULL, 'E', '4540936', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010032', '110002203998', '2025-03-28', '4512444', NULL, 'E', '3307743', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010033', '110002203998', '2025-03-28', '4512444', NULL, 'E', '6E1923', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:40:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010034', '110002203998', '2025-03-28', '4512444', NULL, 'F', '1488356', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:44:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010035', '110002203998', '2025-03-28', '4512444', NULL, 'F', '6V9834', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:43:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010036', '110002203998', '2025-03-28', '4512444', NULL, 'F', '4T4935', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010037', '110002203998', '2025-03-28', '4512444', NULL, 'G', '2191891', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:46:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010038', '110002203998', '2025-03-28', '4512444', NULL, 'G', '2965987', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:46:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010039', '110002203998', '2025-03-28', '4512444', NULL, 'G', '5796930', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742965977816010040', '110002203998', '2025-03-28', '4512444', NULL, 'H', '2191893', 16, 16, 16, 'P3', 2, '管理员', '2025-03-26 13:12:58', '2025-03-26 13:49:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010000', '110002189147', '2025-03-28', '4560777', NULL, 'A', '9S4183', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:58:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010001', '110002189147', '2025-03-28', '4560777', NULL, 'A', '3D2824', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:55:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010002', '110002189147', '2025-03-28', '4560777', NULL, 'A', '9S4185', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:56:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010003', '110002189147', '2025-03-28', '4560777', NULL, 'A', '3K0360', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:56:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010004', '110002189147', '2025-03-28', '4560777', NULL, 'A', '9S8006', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:56:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010005', '110002189147', '2025-03-28', '4560777', NULL, 'A', '2M9780', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:56:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010006', '110002189147', '2025-03-28', '4560777', NULL, 'A', '7J1089', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:54:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010007', '110002189147', '2025-03-28', '4560777', NULL, 'A', '3J1907', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:56:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010008', '110002189147', '2025-03-28', '4560777', NULL, 'A', '5H3193', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:54:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010009', '110002189147', '2025-03-28', '4560777', NULL, 'A', '9S8002', 10, 10, 10, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 13:55:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010010', '110002189147', '2025-03-28', '4560777', NULL, 'B', '3J7354', 11, 11, 11, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:01:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010011', '110002189147', '2025-03-28', '4560777', NULL, 'B', '6E5289', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:02:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010012', '110002189147', '2025-03-28', '4560777', NULL, 'B', '3K0360', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:02:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010013', '110002189147', '2025-03-28', '4560777', NULL, 'B', '6V8398', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:00:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010014', '110002189147', '2025-03-28', '4560777', NULL, 'B', '9S4185', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:04:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010015', '110002189147', '2025-03-28', '4560777', NULL, 'B', '9S8002', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:00:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010016', '110002189147', '2025-03-28', '4560777', NULL, 'B', '9J9821', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010017', '110002189147', '2025-03-28', '4560777', NULL, 'B', '4B9782', 5, 5, 5, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:03:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010018', '110002189147', '2025-03-28', '4560777', NULL, 'C', '2S2596', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010019', '110002189147', '2025-03-28', '4560777', NULL, 'C', '8J6815', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:07:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010020', '110002189147', '2025-03-28', '4560777', NULL, 'C', '8F9206', 7, 7, 7, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:07:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010021', '110002189147', '2025-03-28', '4560777', NULL, 'C', '5J2974', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:06:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010022', '110002189147', '2025-03-28', '4560777', NULL, 'C', '8T4196', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:08:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010023', '110002189147', '2025-03-28', '4560777', NULL, 'C', '8T6466', 2, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010024', '110002189147', '2025-03-28', '4560777', NULL, 'C', '6E5291', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:08:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010025', '110002189147', '2025-03-28', '4560777', NULL, 'C', '6T6052', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010026', '110002189147', '2025-03-28', '4560777', NULL, 'C', '6V9830', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:08:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010027', '110002189147', '2025-03-28', '4560777', NULL, 'D', '6J6506', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010028', '110002189147', '2025-03-28', '4560777', NULL, 'D', '1268473', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:12:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010029', '110002189147', '2025-03-28', '4560777', NULL, 'D', '7J4321', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010030', '110002189147', '2025-03-28', '4560777', NULL, 'D', '9M1974', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010031', '110002189147', '2025-03-28', '4560777', NULL, 'D', '6V5195', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:10:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010032', '110002189147', '2025-03-28', '4560777', NULL, 'D', '8T5005', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:11:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010033', '110002189147', '2025-03-28', '4560777', NULL, 'D', '4564627', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010034', '110002189147', '2025-03-28', '4560777', NULL, 'D', '9T8672', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010035', '110002189147', '2025-03-28', '4560777', NULL, 'D', '4J0520', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:14:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010036', '110002189147', '2025-03-28', '4560777', NULL, 'E', '4564633', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:17:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010037', '110002189147', '2025-03-28', '4560777', NULL, 'E', '4564624', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:17:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010038', '110002189147', '2025-03-28', '4560777', NULL, 'E', '9T7220', 1, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010039', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '8C3206', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:21:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010040', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '5H4019', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:22:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010041', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '4J0520', 2, 2, 2, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:22:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010042', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '7S0530', 1, 1, 1, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:22:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010043', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '8T4121', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:21:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010044', '110002189147', '2025-03-28', '4560777', NULL, 'F终装', '8T4196', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-03-26 14:21:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270736010045', '110002189147', '2025-03-28', '4560777', NULL, 'G终装', '4J8174', 2, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270737010000', '110002189147', '2025-03-28', '4560777', NULL, 'G终装', '7J3554', 2, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742968270737010001', '110002189147', '2025-03-28', '4560777', NULL, 'G终装', '6V8212', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 13:51:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010000', '110002189152', '2025-03-28', '3749878', NULL, 'A', '9S4183', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:32:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010001', '110002189152', '2025-03-28', '3749878', NULL, 'A', '3D2824', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:29:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010002', '110002189152', '2025-03-28', '3749878', NULL, 'A', '9S4185', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:32:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010003', '110002189152', '2025-03-28', '3749878', NULL, 'A', '3K0360', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:31:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010004', '110002189152', '2025-03-28', '3749878', NULL, 'A', '9S8006', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:30:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010005', '110002189152', '2025-03-28', '3749878', NULL, 'A', '2M9780', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:30:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010006', '110002189152', '2025-03-28', '3749878', NULL, 'A', '7J1089', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:28:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010007', '110002189152', '2025-03-28', '3749878', NULL, 'A', '3J1907', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:30:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010008', '110002189152', '2025-03-28', '3749878', NULL, 'A', '5H3193', 12, 12, 12, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:28:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010009', '110002189152', '2025-03-28', '3749878', NULL, 'A', '9S8002', 30, 30, 30, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:29:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010010', '110002189152', '2025-03-28', '3749878', NULL, 'B', '3J7354', 33, 33, 33, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:37:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010011', '110002189152', '2025-03-28', '3749878', NULL, 'B', '6E5289', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:35:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010012', '110002189152', '2025-03-28', '3749878', NULL, 'B', '3K0360', 9, 9, 9, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:53:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010013', '110002189152', '2025-03-28', '3749878', NULL, 'B', '6V8398', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:34:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010014', '110002189152', '2025-03-28', '3749878', NULL, 'B', '9S4185', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:39:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010015', '110002189152', '2025-03-28', '3749878', NULL, 'B', '9S8002', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:35:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010016', '110002189152', '2025-03-28', '3749878', NULL, 'B', '9J9821', 12, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010017', '110002189152', '2025-03-28', '3749878', NULL, 'B', '4B9782', 15, 15, 15, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:34:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010018', '110002189152', '2025-03-28', '3749878', NULL, 'C', '2S2596', 12, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010019', '110002189152', '2025-03-28', '3749878', NULL, 'C', '8J6815', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:57:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010020', '110002189152', '2025-03-28', '3749878', NULL, 'C', '8F9206', 21, 21, 21, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:56:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010021', '110002189152', '2025-03-28', '3749878', NULL, 'C', '5J2974', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:57:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010022', '110002189152', '2025-03-28', '3749878', NULL, 'C', '8T4196', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:56:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010023', '110002189152', '2025-03-28', '3749878', NULL, 'C', '8T6466', 6, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010024', '110002189152', '2025-03-28', '3749878', NULL, 'C', '6E5291', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:58:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010025', '110002189152', '2025-03-28', '3749878', NULL, 'C', '6T6052', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010026', '110002189152', '2025-03-28', '3749878', NULL, 'C', '6V9830', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 14:57:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010027', '110002189152', '2025-03-28', '3749878', NULL, 'D', '6J6506', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010028', '110002189152', '2025-03-28', '3749878', NULL, 'D', '1268473', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:02:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010029', '110002189152', '2025-03-28', '3749878', NULL, 'D', '7J4321', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010030', '110002189152', '2025-03-28', '3749878', NULL, 'D', '9M1974', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010031', '110002189152', '2025-03-28', '3749878', NULL, 'D', '6V5195', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:01:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010032', '110002189152', '2025-03-28', '3749878', NULL, 'D', '8T5005', 12, 12, 12, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:01:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010033', '110002189152', '2025-03-28', '3749878', NULL, 'D', '3760630', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010034', '110002189152', '2025-03-28', '3749878', NULL, 'D', '9T8672', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010035', '110002189152', '2025-03-28', '3749878', NULL, 'D', '4J0520', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:02:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010036', '110002189152', '2025-03-28', '3749878', NULL, 'E', '1298222', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:04:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010037', '110002189152', '2025-03-28', '3749878', NULL, 'E', '3760631', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010038', '110002189152', '2025-03-28', '3749878', NULL, 'E', '9T7220', 3, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010039', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '8C3206', 12, 12, 12, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:07:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010040', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '5H4019', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:08:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010041', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '4J0520', 6, 6, 6, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:09:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010042', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '7S0530', 3, 3, 3, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:08:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010043', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '8T4121', 24, 24, 24, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:07:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010044', '110002189152', '2025-03-28', '3749878', NULL, 'F终装', '8T4196', 24, 24, 24, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-03-26 15:08:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010045', '110002189152', '2025-03-28', '3749878', NULL, 'G终装', '4J8174', 6, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010046', '110002189152', '2025-03-28', '3749878', NULL, 'G终装', '7J3554', 6, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742970375902010047', '110002189152', '2025-03-28', '3749878', NULL, 'G终装', '6V8212', 12, 0, 0, 'P3', 2, '管理员', '2025-03-26 14:26:16', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010000', '110002203993', '2025-03-28', '4413485', NULL, 'A', '9S4183', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:39:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010001', '110002203993', '2025-03-28', '4413485', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:33:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010002', '110002203993', '2025-03-28', '4413485', NULL, 'A', '9S4185', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:37:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010003', '110002203993', '2025-03-28', '4413485', NULL, 'A', '3K0360', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:34:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010004', '110002203993', '2025-03-28', '4413485', NULL, 'A', '9S8006', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:34:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010005', '110002203993', '2025-03-28', '4413485', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:35:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010006', '110002203993', '2025-03-28', '4413485', NULL, 'A', '7J1089', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:33:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010007', '110002203993', '2025-03-28', '4413485', NULL, 'A', '3J1907', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:32:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010008', '110002203993', '2025-03-28', '4413485', NULL, 'A', '5H3193', 16, 16, 16, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:31:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010009', '110002203993', '2025-03-28', '4413485', NULL, 'A', '9S8002', 40, 40, 40, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-26 15:33:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010010', '110002203993', '2025-03-28', '4413485', NULL, 'B', '3J7354', 44, 44, 44, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:21:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010011', '110002203993', '2025-03-28', '4413485', NULL, 'B', '6E5289', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:25:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010012', '110002203993', '2025-03-28', '4413485', NULL, 'B', '3K0360', 12, 12, 12, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:20:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010013', '110002203993', '2025-03-28', '4413485', NULL, 'B', '6V8398', 8, 8, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:19:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010014', '110002203993', '2025-03-28', '4413485', NULL, 'B', '9S4185', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:25:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010015', '110002203993', '2025-03-28', '4413485', NULL, 'B', '9S8002', 4, 4, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010016', '110002203993', '2025-03-28', '4413485', NULL, 'B', '9J9821', 16, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010017', '110002203993', '2025-03-28', '4413485', NULL, 'B', '4B9782', 20, 20, 20, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:21:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010018', '110002203993', '2025-03-28', '4413485', NULL, 'C', '2S2596', 16, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010019', '110002203993', '2025-03-28', '4413485', NULL, 'C', '8J6815', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010020', '110002203993', '2025-03-28', '4413485', NULL, 'C', '8F9206', 28, 0, 28, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010021', '110002203993', '2025-03-28', '4413485', NULL, 'C', '5J2974', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010022', '110002203993', '2025-03-28', '4413485', NULL, 'C', '8T4196', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010023', '110002203993', '2025-03-28', '4413485', NULL, 'C', '8T6466', 8, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010024', '110002203993', '2025-03-28', '4413485', NULL, 'C', '6E5291', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010025', '110002203993', '2025-03-28', '4413485', NULL, 'C', '6T6052', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010026', '110002203993', '2025-03-28', '4413485', NULL, 'C', '6V9830', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010027', '110002203993', '2025-03-28', '4413485', NULL, 'D', '6J6506', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010028', '110002203993', '2025-03-28', '4413485', NULL, 'D', '1268473', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010029', '110002203993', '2025-03-28', '4413485', NULL, 'D', '7J4321', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010030', '110002203993', '2025-03-28', '4413485', NULL, 'D', '9M1974', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010031', '110002203993', '2025-03-28', '4413485', NULL, 'D', '6V5195', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010032', '110002203993', '2025-03-28', '4413485', NULL, 'D', '8T5005', 16, 0, 16, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010033', '110002203993', '2025-03-28', '4413485', NULL, 'D', '4419221', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010034', '110002203993', '2025-03-28', '4413485', NULL, 'D', '9T8672', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010035', '110002203993', '2025-03-28', '4413485', NULL, 'D', '4J0520', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010036', '110002203993', '2025-03-28', '4413485', NULL, 'E', '1298222', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010037', '110002203993', '2025-03-28', '4413485', NULL, 'E', '3760631', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010038', '110002203993', '2025-03-28', '4413485', NULL, 'E', '9T7220', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010039', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '8C3206', 16, 0, 16, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010040', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '5H4019', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010041', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '4J0520', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010042', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '7S0530', 4, 0, 4, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010043', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '8T4121', 32, 0, 32, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010044', '110002203993', '2025-03-28', '4413485', NULL, 'F终装', '8T4196', 32, 0, 32, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010045', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '3K0360', 16, 0, 16, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010046', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '9S4185', 16, 0, 16, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010047', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '3600293', 4, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010048', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '8T4121', 32, 0, 32, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010049', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '8T6466', 32, 0, 0, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1742974209085010050', '110002203993', '2025-03-28', '4413485', NULL, 'G终装', '4J0520', 8, 0, 8, 'P3', 2, '管理员', '2025-03-26 15:30:09', '2025-03-27 09:24:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010000', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '9S8009', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:00:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010001', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '4K1388', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:06:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010002', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '9S4189', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 11:59:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010003', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '2M9780', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:03:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010004', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '9S4182', 33, 33, 33, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:25:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010005', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '3J7354', 66, 66, 66, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:05:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010006', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '9S8002', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:02:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010007', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '6V8647', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 12:01:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010008', '110002196278', '2025-04-02', '9T5957', NULL, 'A', '4J5477', 22, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010009', '110002196278', '2025-04-02', '9T5957', NULL, 'B', '9S4183', 55, 55, 55, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:34:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010010', '110002196278', '2025-04-02', '9T5957', NULL, 'B', '3D2824', 55, 55, 55, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:30:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010011', '110002196278', '2025-04-02', '9T5957', NULL, 'B', '9S4185', 55, 55, 55, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:29:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010012', '110002196278', '2025-04-02', '9T5957', NULL, 'B', '3K0360', 55, 55, 55, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:31:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010013', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '6V3965', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:42:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010014', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '3J1907', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:40:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010015', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '1318350', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010016', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '3K0360', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:43:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010017', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '3T8236', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:45:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010018', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '6V8398', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:38:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010019', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '1007000', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:41:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010020', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '9S8003', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:39:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010021', '110002196278', '2025-04-02', '9T5957', NULL, 'C', '1J9671', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:40:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010022', '110002196278', '2025-04-02', '9T5957', NULL, 'D', '8T8987', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:53:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010023', '110002196278', '2025-04-02', '9T5957', NULL, 'D', '6V9833', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:49:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010024', '110002196278', '2025-04-02', '9T5957', NULL, 'D', '5K9090', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010025', '110002196278', '2025-04-02', '9T5957', NULL, 'D', '2S4078', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 13:48:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010026', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '9S8001', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:03:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010027', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '4J7533', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:13:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010028', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '8J6815', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:12:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010029', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '3P9498', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:07:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010030', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '1H0337', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010031', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '9F6705', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:08:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010032', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '4T1860', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010033', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '6E1924', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:09:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010034', '110002196278', '2025-04-02', '9T5957', NULL, 'E', '6E1925', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:12:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010035', '110002196278', '2025-04-02', '9T5957', NULL, 'F', '8M3175', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:25:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010036', '110002196278', '2025-04-02', '9T5957', NULL, 'F', '5M2057', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:25:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010037', '110002196278', '2025-04-02', '9T5957', NULL, 'F', '6V5230', 22, 22, 22, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:24:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010038', '110002196278', '2025-04-02', '9T5957', NULL, 'F', '1006021', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010039', '110002196278', '2025-04-02', '9T5957', NULL, 'G', '3307743', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010040', '110002196278', '2025-04-02', '9T5957', NULL, 'G', '4T4935', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010041', '110002196278', '2025-04-02', '9T5957', NULL, 'G', '6E1923', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:30:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010042', '110002196278', '2025-04-02', '9T5957', NULL, 'G', '1119632', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010043', '110002196278', '2025-04-02', '9T5957', NULL, 'H', '5796930', 11, 0, 0, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210560372010044', '110002196278', '2025-04-02', '9T5957', NULL, 'H', '6V0852', 11, 11, 11, 'P3', 2, '管理员', '2025-03-29 09:09:20', '2025-03-29 14:32:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860940010000', '110002196269', '2025-04-02', '4512444', NULL, 'A', '9S8009', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860940010001', '110002196269', '2025-04-02', '4512444', NULL, 'A', '4K1388', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860940010002', '110002196269', '2025-04-02', '4512444', NULL, 'A', '9S4189', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860940010003', '110002196269', '2025-04-02', '4512444', NULL, 'A', '2M9780', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010000', '110002196269', '2025-04-02', '4512444', NULL, 'A', '9S4182', 6, 0, 6, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010001', '110002196269', '2025-04-02', '4512444', NULL, 'A', '3J7354', 10, 0, 10, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010002', '110002196269', '2025-04-02', '4512444', NULL, 'A', '9S4183', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010003', '110002196269', '2025-04-02', '4512444', NULL, 'A', '3D2824', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010004', '110002196269', '2025-04-02', '4512444', NULL, 'A', '6V8647', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010005', '110002196269', '2025-04-02', '4512444', NULL, 'A', '4J5477', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010006', '110002196269', '2025-04-02', '4512444', NULL, 'B', '3603693', 8, 0, 8, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010007', '110002196269', '2025-04-02', '4512444', NULL, 'B', '3K0360', 10, 0, 10, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010008', '110002196269', '2025-04-02', '4512444', NULL, 'B', '9S8003', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010009', '110002196269', '2025-04-02', '4512444', NULL, 'B', '1J9671', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010010', '110002196269', '2025-04-02', '4512444', NULL, 'B', '1318350', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010011', '110002196269', '2025-04-02', '4512444', NULL, 'B', '6V8398', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010012', '110002196269', '2025-04-02', '4512444', NULL, 'B', '1007000', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860941010013', '110002196269', '2025-04-02', '4512444', NULL, 'C', '3676001', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010000', '110002196269', '2025-04-02', '4512444', NULL, 'C', '3676002', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010001', '110002196269', '2025-04-02', '4512444', NULL, 'C', '3T8236', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010002', '110002196269', '2025-04-02', '4512444', NULL, 'C', '1H0337', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010003', '110002196269', '2025-04-02', '4512444', NULL, 'C', '4T1860', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:16:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010004', '110002196269', '2025-04-02', '4512444', NULL, 'C', '8J6815', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010005', '110002196269', '2025-04-02', '4512444', NULL, 'C', '3P9498', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010006', '110002196269', '2025-04-02', '4512444', NULL, 'C', '9F6705', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010007', '110002196269', '2025-04-02', '4512444', NULL, 'C', '5M2057', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010008', '110002196269', '2025-04-02', '4512444', NULL, 'D', '1006021', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010009', '110002196269', '2025-04-02', '4512444', NULL, 'D', '6E1924', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010010', '110002196269', '2025-04-02', '4512444', NULL, 'D', '6E1925', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010011', '110002196269', '2025-04-02', '4512444', NULL, 'E', '6V5230', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010012', '110002196269', '2025-04-02', '4512444', NULL, 'E', '8M3175', 4, 0, 4, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010013', '110002196269', '2025-04-02', '4512444', NULL, 'E', '4540936', 2, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010014', '110002196269', '2025-04-02', '4512444', NULL, 'E', '3307743', 2, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010015', '110002196269', '2025-04-02', '4512444', NULL, 'E', '6E1923', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860942010016', '110002196269', '2025-04-02', '4512444', NULL, 'F', '1488356', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010000', '110002196269', '2025-04-02', '4512444', NULL, 'F', '6V9834', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010001', '110002196269', '2025-04-02', '4512444', NULL, 'F', '4T4935', 2, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010002', '110002196269', '2025-04-02', '4512444', NULL, 'G', '2191891', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010003', '110002196269', '2025-04-02', '4512444', NULL, 'G', '2965987', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010004', '110002196269', '2025-04-02', '4512444', NULL, 'G', '5796930', 2, 0, 2, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743210860943010005', '110002196269', '2025-04-02', '4512444', NULL, 'H', '2191893', 8, 0, 8, 'P2', 2, '管理员', '2025-03-29 09:14:21', '2025-03-29 09:17:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063648010000', '110002196268', '2025-04-02', '4512444', NULL, 'A', '9S8009', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:01:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010000', '110002196268', '2025-04-02', '4512444', NULL, 'A', '4K1388', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:50:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010001', '110002196268', '2025-04-02', '4512444', NULL, 'A', '9S4189', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:00:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010002', '110002196268', '2025-04-02', '4512444', NULL, 'A', '2M9780', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:52:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010003', '110002196268', '2025-04-02', '4512444', NULL, 'A', '9S4182', 36, 36, 36, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:54:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010004', '110002196268', '2025-04-02', '4512444', NULL, 'A', '3J7354', 60, 60, 60, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:53:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010005', '110002196268', '2025-04-02', '4512444', NULL, 'A', '9S4183', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:55:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010006', '110002196268', '2025-04-02', '4512444', NULL, 'A', '3D2824', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 11:51:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010007', '110002196268', '2025-04-02', '4512444', NULL, 'A', '6V8647', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:02:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010008', '110002196268', '2025-04-02', '4512444', NULL, 'A', '4J5477', 24, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010009', '110002196268', '2025-04-02', '4512444', NULL, 'B', '3603693', 48, 48, 48, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:14:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010010', '110002196268', '2025-04-02', '4512444', NULL, 'B', '3K0360', 60, 60, 60, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:12:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010011', '110002196268', '2025-04-02', '4512444', NULL, 'B', '9S8003', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:09:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063649010012', '110002196268', '2025-04-02', '4512444', NULL, 'B', '1J9671', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:10:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063650010000', '110002196268', '2025-04-02', '4512444', NULL, 'B', '1318350', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063650010001', '110002196268', '2025-04-02', '4512444', NULL, 'B', '6V8398', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:09:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063650010002', '110002196268', '2025-04-02', '4512444', NULL, 'B', '1007000', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:13:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063650010003', '110002196268', '2025-04-02', '4512444', NULL, 'C', '3676001', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:20:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010000', '110002196268', '2025-04-02', '4512444', NULL, 'C', '3676002', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:24:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010001', '110002196268', '2025-04-02', '4512444', NULL, 'C', '3T8236', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:24:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010002', '110002196268', '2025-04-02', '4512444', NULL, 'C', '1H0337', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010003', '110002196268', '2025-04-02', '4512444', NULL, 'C', '4T1860', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010004', '110002196268', '2025-04-02', '4512444', NULL, 'C', '8J6815', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:25:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010005', '110002196268', '2025-04-02', '4512444', NULL, 'C', '3P9498', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:22:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010006', '110002196268', '2025-04-02', '4512444', NULL, 'C', '9F6705', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:23:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010007', '110002196268', '2025-04-02', '4512444', NULL, 'C', '5M2057', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 12:19:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010008', '110002196268', '2025-04-02', '4512444', NULL, 'D', '1006021', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010009', '110002196268', '2025-04-02', '4512444', NULL, 'D', '6E1924', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:26:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010010', '110002196268', '2025-04-02', '4512444', NULL, 'D', '6E1925', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:30:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010011', '110002196268', '2025-04-02', '4512444', NULL, 'E', '6V5230', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:37:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010012', '110002196268', '2025-04-02', '4512444', NULL, 'E', '8M3175', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:36:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010013', '110002196268', '2025-04-02', '4512444', NULL, 'E', '4540936', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010014', '110002196268', '2025-04-02', '4512444', NULL, 'E', '3307743', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010015', '110002196268', '2025-04-02', '4512444', NULL, 'E', '6E1923', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:35:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010016', '110002196268', '2025-04-02', '4512444', NULL, 'F', '1488356', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:41:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010017', '110002196268', '2025-04-02', '4512444', NULL, 'F', '6V9834', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:43:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010018', '110002196268', '2025-04-02', '4512444', NULL, 'F', '4T4935', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010019', '110002196268', '2025-04-02', '4512444', NULL, 'G', '2191891', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:49:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010020', '110002196268', '2025-04-02', '4512444', NULL, 'G', '2965987', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:49:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010021', '110002196268', '2025-04-02', '4512444', NULL, 'G', '5796930', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743211063653010022', '110002196268', '2025-04-02', '4512444', NULL, 'H', '2191893', 48, 48, 48, 'P2', 2, '管理员', '2025-03-29 09:17:44', '2025-03-29 13:55:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010000', '110002203999', '2025-04-03', '4512444', NULL, 'A', '9S8009', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:05:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010001', '110002203999', '2025-04-03', '4512444', NULL, 'A', '4K1388', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:08:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010002', '110002203999', '2025-04-03', '4512444', NULL, 'A', '9S4189', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:08:22', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010003', '110002203999', '2025-04-03', '4512444', NULL, 'A', '2M9780', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:09:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010004', '110002203999', '2025-04-03', '4512444', NULL, 'A', '9S4182', 18, 18, 18, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:05:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010005', '110002203999', '2025-04-03', '4512444', NULL, 'A', '3J7354', 30, 30, 30, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:07:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010006', '110002203999', '2025-04-03', '4512444', NULL, 'A', '9S4183', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:10:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010007', '110002203999', '2025-04-03', '4512444', NULL, 'A', '3D2824', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:06:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010008', '110002203999', '2025-04-03', '4512444', NULL, 'A', '6V8647', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:06:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010009', '110002203999', '2025-04-03', '4512444', NULL, 'A', '4J5477', 12, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010010', '110002203999', '2025-04-03', '4512444', NULL, 'B', '3603693', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:14:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867427010011', '110002203999', '2025-04-03', '4512444', NULL, 'B', '3K0360', 30, 30, 30, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:15:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010000', '110002203999', '2025-04-03', '4512444', NULL, 'B', '9S8003', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:12:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010001', '110002203999', '2025-04-03', '4512444', NULL, 'B', '1J9671', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:13:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010002', '110002203999', '2025-04-03', '4512444', NULL, 'B', '1318350', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010003', '110002203999', '2025-04-03', '4512444', NULL, 'B', '6V8398', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:13:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010004', '110002203999', '2025-04-03', '4512444', NULL, 'B', '1007000', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:16:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010005', '110002203999', '2025-04-03', '4512444', NULL, 'C', '3676001', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:20:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010006', '110002203999', '2025-04-03', '4512444', NULL, 'C', '3676002', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:21:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010007', '110002203999', '2025-04-03', '4512444', NULL, 'C', '3T8236', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:35:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010008', '110002203999', '2025-04-03', '4512444', NULL, 'C', '1H0337', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010009', '110002203999', '2025-04-03', '4512444', NULL, 'C', '4T1860', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010010', '110002203999', '2025-04-03', '4512444', NULL, 'C', '8J6815', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:24:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010011', '110002203999', '2025-04-03', '4512444', NULL, 'C', '3P9498', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:19:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010012', '110002203999', '2025-04-03', '4512444', NULL, 'C', '9F6705', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:20:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010013', '110002203999', '2025-04-03', '4512444', NULL, 'C', '5M2057', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:26:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010014', '110002203999', '2025-04-03', '4512444', NULL, 'D', '1006021', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010015', '110002203999', '2025-04-03', '4512444', NULL, 'D', '6E1924', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:28:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010016', '110002203999', '2025-04-03', '4512444', NULL, 'D', '6E1925', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:29:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010017', '110002203999', '2025-04-03', '4512444', NULL, 'E', '6V5230', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:33:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010018', '110002203999', '2025-04-03', '4512444', NULL, 'E', '8M3175', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:32:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010019', '110002203999', '2025-04-03', '4512444', NULL, 'E', '4540936', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010020', '110002203999', '2025-04-03', '4512444', NULL, 'E', '3307743', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010021', '110002203999', '2025-04-03', '4512444', NULL, 'E', '6E1923', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:32:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010022', '110002203999', '2025-04-03', '4512444', NULL, 'F', '1488356', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:39:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010023', '110002203999', '2025-04-03', '4512444', NULL, 'F', '6V9834', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:39:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010024', '110002203999', '2025-04-03', '4512444', NULL, 'F', '4T4935', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010025', '110002203999', '2025-04-03', '4512444', NULL, 'G', '2191891', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:42:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010026', '110002203999', '2025-04-03', '4512444', NULL, 'G', '2965987', 6, 6, 6, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:43:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010027', '110002203999', '2025-04-03', '4512444', NULL, 'G', '5796930', 6, 0, 0, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743227867428010028', '110002203999', '2025-04-03', '4512444', NULL, 'H', '2191893', 24, 24, 24, 'P2', 2, '管理员', '2025-03-29 13:57:47', '2025-03-29 14:45:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010000', '110002196246', '2025-04-02', '2965662', NULL, 'A', '9T8668', 40, 0, 0, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010001', '110002196246', '2025-04-02', '2965662', NULL, 'A', '3D2824', 40, 40, 40, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-03-29 14:52:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010002', '110002196246', '2025-04-02', '2965662', NULL, 'A', '2935263', 40, 40, 40, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-03-29 14:50:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010003', '110002196246', '2025-04-02', '2965662', NULL, 'A', '4475613', 40, 0, 0, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010004', '110002196246', '2025-04-02', '2965662', NULL, 'B', '6J4568', 40, 40, 40, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-03-29 15:07:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230794717010005', '110002196246', '2025-04-02', '2965662', NULL, 'B', '2521631', 120, 120, 120, 'P3', 2, '管理员', '2025-03-29 14:46:35', '2025-03-29 15:05:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010000', '110002196270', '2025-04-03', '4512444', NULL, 'A', '9S8009', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:50:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010001', '110002196270', '2025-04-03', '4512444', NULL, 'A', '4K1388', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:51:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010002', '110002196270', '2025-04-03', '4512444', NULL, 'A', '9S4189', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:50:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010003', '110002196270', '2025-04-03', '4512444', NULL, 'A', '2M9780', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:50:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010004', '110002196270', '2025-04-03', '4512444', NULL, 'A', '9S4182', 12, 12, 12, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:49:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010005', '110002196270', '2025-04-03', '4512444', NULL, 'A', '3J7354', 20, 20, 20, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:52:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010006', '110002196270', '2025-04-03', '4512444', NULL, 'A', '9S4183', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:53:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010007', '110002196270', '2025-04-03', '4512444', NULL, 'A', '3D2824', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:52:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010008', '110002196270', '2025-04-03', '4512444', NULL, 'A', '6V8647', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:53:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010009', '110002196270', '2025-04-03', '4512444', NULL, 'A', '4J5477', 8, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010010', '110002196270', '2025-04-03', '4512444', NULL, 'B', '3603693', 16, 16, 16, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:58:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010011', '110002196270', '2025-04-03', '4512444', NULL, 'B', '3K0360', 20, 20, 20, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:59:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010012', '110002196270', '2025-04-03', '4512444', NULL, 'B', '9S8003', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:56:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010013', '110002196270', '2025-04-03', '4512444', NULL, 'B', '1J9671', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:57:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010014', '110002196270', '2025-04-03', '4512444', NULL, 'B', '1318350', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010015', '110002196270', '2025-04-03', '4512444', NULL, 'B', '6V8398', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:56:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010016', '110002196270', '2025-04-03', '4512444', NULL, 'B', '1007000', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 14:59:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010017', '110002196270', '2025-04-03', '4512444', NULL, 'C', '3676001', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:03:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010018', '110002196270', '2025-04-03', '4512444', NULL, 'C', '3676002', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:04:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010019', '110002196270', '2025-04-03', '4512444', NULL, 'C', '3T8236', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:05:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010020', '110002196270', '2025-04-03', '4512444', NULL, 'C', '1H0337', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010021', '110002196270', '2025-04-03', '4512444', NULL, 'C', '4T1860', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010022', '110002196270', '2025-04-03', '4512444', NULL, 'C', '8J6815', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:05:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010023', '110002196270', '2025-04-03', '4512444', NULL, 'C', '3P9498', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:02:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010024', '110002196270', '2025-04-03', '4512444', NULL, 'C', '9F6705', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:03:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010025', '110002196270', '2025-04-03', '4512444', NULL, 'C', '5M2057', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:01:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010026', '110002196270', '2025-04-03', '4512444', NULL, 'D', '1006021', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010027', '110002196270', '2025-04-03', '4512444', NULL, 'D', '6E1924', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:07:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010028', '110002196270', '2025-04-03', '4512444', NULL, 'D', '6E1925', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:09:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010029', '110002196270', '2025-04-03', '4512444', NULL, 'E', '6V5230', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:13:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010030', '110002196270', '2025-04-03', '4512444', NULL, 'E', '8M3175', 8, 8, 8, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:10:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010031', '110002196270', '2025-04-03', '4512444', NULL, 'E', '4540936', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010032', '110002196270', '2025-04-03', '4512444', NULL, 'E', '3307743', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010033', '110002196270', '2025-04-03', '4512444', NULL, 'E', '6E1923', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:12:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010034', '110002196270', '2025-04-03', '4512444', NULL, 'F', '1488356', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:16:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010035', '110002196270', '2025-04-03', '4512444', NULL, 'F', '6V9834', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:16:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010036', '110002196270', '2025-04-03', '4512444', NULL, 'F', '4T4935', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010037', '110002196270', '2025-04-03', '4512444', NULL, 'G', '2191891', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:18:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010038', '110002196270', '2025-04-03', '4512444', NULL, 'G', '2965987', 4, 4, 4, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:20:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861835010039', '110002196270', '2025-04-03', '4512444', NULL, 'G', '5796930', 4, 0, 0, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743230861836010000', '110002196270', '2025-04-03', '4512444', NULL, 'H', '2191893', 16, 16, 16, 'P2', 2, '管理员', '2025-03-29 14:47:42', '2025-03-29 15:22:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010000', '110002196247', '2025-04-03', '2965662', NULL, 'A', '9T8668', 16, 0, 0, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010001', '110002196247', '2025-04-03', '2965662', NULL, 'A', '3D2824', 16, 16, 16, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-03-29 15:15:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010002', '110002196247', '2025-04-03', '2965662', NULL, 'A', '2935263', 16, 16, 16, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-03-29 15:14:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010003', '110002196247', '2025-04-03', '2965662', NULL, 'A', '4475613', 16, 0, 0, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010004', '110002196247', '2025-04-03', '2965662', NULL, 'B', '6J4568', 16, 16, 16, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-03-29 15:18:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743232161848010005', '110002196247', '2025-04-03', '2965662', NULL, 'B', '2521631', 48, 48, 48, 'P3', 2, '管理员', '2025-03-29 15:09:22', '2025-03-29 15:20:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010000', '110002196240', '2025-04-03', '2965662', NULL, 'A', '9T8668', 4, 0, 0, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010001', '110002196240', '2025-04-03', '2965662', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-03-29 15:25:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010002', '110002196240', '2025-04-03', '2965662', NULL, 'A', '2935263', 4, 4, 4, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-03-29 15:25:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010003', '110002196240', '2025-04-03', '2965662', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010004', '110002196240', '2025-04-03', '2965662', NULL, 'B', '6J4568', 4, 4, 4, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-03-29 15:29:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743233027108010005', '110002196240', '2025-04-03', '2965662', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-29 15:23:47', '2025-03-29 15:28:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831233010000', '110002196239', '2025-04-03', '2965662', NULL, 'A', '9T8668', 16, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831233010001', '110002196239', '2025-04-03', '2965662', NULL, 'A', '3D2824', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-03-31 09:20:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831233010002', '110002196239', '2025-04-03', '2965662', NULL, 'A', '2935263', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-03-31 09:21:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831234010000', '110002196239', '2025-04-03', '2965662', NULL, 'A', '4475613', 16, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831234010001', '110002196239', '2025-04-03', '2965662', NULL, 'B', '6J4568', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-03-31 09:27:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743383831234010002', '110002196239', '2025-04-03', '2965662', NULL, 'B', '2521631', 48, 48, 48, 'P3', 2, '管理员', '2025-03-31 09:17:11', '2025-03-31 09:25:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010000', '110002196234', '2025-04-03', '2119696', NULL, 'A', '2119695', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010001', '110002196234', '2025-04-03', '2119696', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-03-31 09:33:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010002', '110002196234', '2025-04-03', '2119696', NULL, 'A', '8Y5928', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010003', '110002196234', '2025-04-03', '2119696', NULL, 'A', '4475613', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010004', '110002196234', '2025-04-03', '2119696', NULL, 'B', '2260267', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743384464252010005', '110002196234', '2025-04-03', '2119696', NULL, 'B', '2521631', 12, 12, 12, 'P3', 2, '管理员', '2025-03-31 09:27:44', '2025-03-31 09:35:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010000', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '9S8009', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:27:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010001', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '4K1388', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:28:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010002', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '9S4189', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:29:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010003', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '2M9780', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:35:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010004', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '9S4182', 24, 24, 24, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:28:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010005', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '3J7354', 48, 48, 48, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:35:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010006', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '9S8002', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:30:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010007', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '6V8647', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:29:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010008', '110002196265', '2025-04-03', '9T5957', NULL, 'A', '4J5477', 16, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010009', '110002196265', '2025-04-03', '9T5957', NULL, 'B', '9S4183', 40, 40, 40, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:40:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010010', '110002196265', '2025-04-03', '9T5957', NULL, 'B', '3D2824', 40, 40, 40, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:38:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010011', '110002196265', '2025-04-03', '9T5957', NULL, 'B', '9S4185', 40, 40, 40, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:38:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010012', '110002196265', '2025-04-03', '9T5957', NULL, 'B', '3K0360', 40, 40, 40, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:39:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010013', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '6V3965', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:43:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010014', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '3J1907', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:45:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010015', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '1318350', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010016', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '3K0360', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:46:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010017', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '3T8236', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:49:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010018', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '6V8398', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:42:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010019', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '1007000', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:48:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010020', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '9S8003', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:42:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010021', '110002196265', '2025-04-03', '9T5957', NULL, 'C', '1J9671', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:43:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010022', '110002196265', '2025-04-03', '9T5957', NULL, 'D', '8T8987', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:52:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010023', '110002196265', '2025-04-03', '9T5957', NULL, 'D', '6V9833', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:52:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010024', '110002196265', '2025-04-03', '9T5957', NULL, 'D', '5K9090', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010025', '110002196265', '2025-04-03', '9T5957', NULL, 'D', '2S4078', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:51:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010026', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '9S8001', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:55:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010027', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '4J7533', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:58:58', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010028', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '8J6815', 16, 16, 17, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:13:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010029', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '3P9498', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:55:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010030', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '1H0337', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010031', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '9F6705', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:56:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010032', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '4T1860', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010033', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '6E1924', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 12:57:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010034', '110002196265', '2025-04-03', '9T5957', NULL, 'E', '6E1925', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:00:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010035', '110002196265', '2025-04-03', '9T5957', NULL, 'F', '8M3175', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:09:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010036', '110002196265', '2025-04-03', '9T5957', NULL, 'F', '5M2057', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:09:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010037', '110002196265', '2025-04-03', '9T5957', NULL, 'F', '6V5230', 16, 16, 16, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:10:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010038', '110002196265', '2025-04-03', '9T5957', NULL, 'F', '1006021', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010039', '110002196265', '2025-04-03', '9T5957', NULL, 'G', '3307743', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010040', '110002196265', '2025-04-03', '9T5957', NULL, 'G', '4T4935', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010041', '110002196265', '2025-04-03', '9T5957', NULL, 'G', '6E1923', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:15:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010042', '110002196265', '2025-04-03', '9T5957', NULL, 'G', '1119632', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010043', '110002196265', '2025-04-03', '9T5957', NULL, 'H', '5796930', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743395118638010044', '110002196265', '2025-04-03', '9T5957', NULL, 'H', '6V0852', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 12:25:19', '2025-03-31 13:17:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010000', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '9S8009', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:23:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010001', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '4K1388', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:24:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010002', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '9S4189', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:23:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010003', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '2M9780', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:26:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010004', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '9S4182', 6, 6, 6, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:23:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010005', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '3J7354', 12, 12, 12, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:26:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010006', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '9S8002', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:24:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010007', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '6V8647', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:25:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010008', '110002196279', '2025-04-03', '9T5957', NULL, 'A', '4J5477', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010009', '110002196279', '2025-04-03', '9T5957', NULL, 'B', '9S4183', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:30:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010010', '110002196279', '2025-04-03', '9T5957', NULL, 'B', '3D2824', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:29:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010011', '110002196279', '2025-04-03', '9T5957', NULL, 'B', '9S4185', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:29:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010012', '110002196279', '2025-04-03', '9T5957', NULL, 'B', '3K0360', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:29:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010013', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '6V3965', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:35:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010014', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '3J1907', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:35:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010015', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '1318350', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010016', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '3K0360', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:35:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010017', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '3T8236', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:38:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010018', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '6V8398', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:32:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010019', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '1007000', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:36:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010020', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '9S8003', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:32:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010021', '110002196279', '2025-04-03', '9T5957', NULL, 'C', '1J9671', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:33:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010022', '110002196279', '2025-04-03', '9T5957', NULL, 'D', '8T8987', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:41:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010023', '110002196279', '2025-04-03', '9T5957', NULL, 'D', '6V9833', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:39:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010024', '110002196279', '2025-04-03', '9T5957', NULL, 'D', '5K9090', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010025', '110002196279', '2025-04-03', '9T5957', NULL, 'D', '2S4078', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:40:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010026', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '9S8001', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:43:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010027', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '4J7533', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:45:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010028', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '8J6815', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:48:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010029', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '3P9498', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:43:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010030', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '1H0337', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010031', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '9F6705', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:44:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010032', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '4T1860', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010033', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '6E1924', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:44:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010034', '110002196279', '2025-04-03', '9T5957', NULL, 'E', '6E1925', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:46:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010035', '110002196279', '2025-04-03', '9T5957', NULL, 'F', '8M3175', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:50:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010036', '110002196279', '2025-04-03', '9T5957', NULL, 'F', '5M2057', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:50:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010037', '110002196279', '2025-04-03', '9T5957', NULL, 'F', '6V5230', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:51:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010038', '110002196279', '2025-04-03', '9T5957', NULL, 'F', '1006021', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010039', '110002196279', '2025-04-03', '9T5957', NULL, 'G', '3307743', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010040', '110002196279', '2025-04-03', '9T5957', NULL, 'G', '4T4935', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010041', '110002196279', '2025-04-03', '9T5957', NULL, 'G', '6E1923', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:53:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010042', '110002196279', '2025-04-03', '9T5957', NULL, 'G', '1119632', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010043', '110002196279', '2025-04-03', '9T5957', NULL, 'H', '5796930', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743398479789010044', '110002196279', '2025-04-03', '9T5957', NULL, 'H', '6V0852', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:21:20', '2025-03-31 13:55:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010000', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '9S8009', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 13:58:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010001', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '4K1388', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 13:59:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010002', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '9S4189', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 13:59:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010003', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '2M9780', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:00:44', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010004', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '9S4182', 6, 6, 6, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 13:58:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010005', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '3J7354', 12, 12, 12, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:01:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010006', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '9S8002', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:00:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010007', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '6V8647', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 13:59:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010008', '110002196280', '2025-04-03', '9T5957', NULL, 'A', '4J5477', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010009', '110002196280', '2025-04-03', '9T5957', NULL, 'B', '9S4183', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:05:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010010', '110002196280', '2025-04-03', '9T5957', NULL, 'B', '3D2824', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:04:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010011', '110002196280', '2025-04-03', '9T5957', NULL, 'B', '9S4185', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:03:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010012', '110002196280', '2025-04-03', '9T5957', NULL, 'B', '3K0360', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:05:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010013', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '6V3965', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:08:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010014', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '3J1907', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:09:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010015', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '1318350', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010016', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '3K0360', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:10:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010017', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '3T8236', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:09:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010018', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '6V8398', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:07:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010019', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '1007000', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:12:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010020', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '9S8003', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:07:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010021', '110002196280', '2025-04-03', '9T5957', NULL, 'C', '1J9671', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:08:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010022', '110002196280', '2025-04-03', '9T5957', NULL, 'D', '8T8987', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:17:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010023', '110002196280', '2025-04-03', '9T5957', NULL, 'D', '6V9833', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:14:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010024', '110002196280', '2025-04-03', '9T5957', NULL, 'D', '5K9090', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010025', '110002196280', '2025-04-03', '9T5957', NULL, 'D', '2S4078', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:13:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010026', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '9S8001', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:19:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010027', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '4J7533', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:21:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010028', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '8J6815', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:24:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010029', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '3P9498', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:19:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010030', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '1H0337', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010031', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '9F6705', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:20:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010032', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '4T1860', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010033', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '6E1924', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:21:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010034', '110002196280', '2025-04-03', '9T5957', NULL, 'E', '6E1925', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:20:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010035', '110002196280', '2025-04-03', '9T5957', NULL, 'F', '8M3175', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:26:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010036', '110002196280', '2025-04-03', '9T5957', NULL, 'F', '5M2057', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:25:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010037', '110002196280', '2025-04-03', '9T5957', NULL, 'F', '6V5230', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:27:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010038', '110002196280', '2025-04-03', '9T5957', NULL, 'F', '1006021', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010039', '110002196280', '2025-04-03', '9T5957', NULL, 'G', '3307743', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010040', '110002196280', '2025-04-03', '9T5957', NULL, 'G', '4T4935', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010041', '110002196280', '2025-04-03', '9T5957', NULL, 'G', '6E1923', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:30:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010042', '110002196280', '2025-04-03', '9T5957', NULL, 'G', '1119632', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010043', '110002196280', '2025-04-03', '9T5957', NULL, 'H', '5796930', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743400596602010044', '110002196280', '2025-04-03', '9T5957', NULL, 'H', '6V0852', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 13:56:37', '2025-03-31 14:31:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010000', '110002204008', '2025-04-03', '5936452', NULL, 'A', '9S8009', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:34:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010001', '110002204008', '2025-04-03', '5936452', NULL, 'A', '4K1388', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:36:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010002', '110002204008', '2025-04-03', '5936452', NULL, 'A', '9S4189', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:35:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010003', '110002204008', '2025-04-03', '5936452', NULL, 'A', '2M9780', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:37:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010004', '110002204008', '2025-04-03', '5936452', NULL, 'A', '9S4182', 3, 3, 3, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:35:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010005', '110002204008', '2025-04-03', '5936452', NULL, 'A', '3J7354', 3, 3, 3, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:35:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010006', '110002204008', '2025-04-03', '5936452', NULL, 'B', '9S4183', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:44:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010007', '110002204008', '2025-04-03', '5936452', NULL, 'B', '3D2824', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:43:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010008', '110002204008', '2025-04-03', '5936452', NULL, 'B', '6V8647', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:44:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010009', '110002204008', '2025-04-03', '5936452', NULL, 'B', '3J7354', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:44:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010010', '110002204008', '2025-04-03', '5936452', NULL, 'B', '4J5477', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010011', '110002204008', '2025-04-03', '5936452', NULL, 'C', '3603693', 3, 3, 3, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:50:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010012', '110002204008', '2025-04-03', '5936452', NULL, 'C', '3K0360', 3, 3, 3, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:49:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010013', '110002204008', '2025-04-03', '5936452', NULL, 'C', '9S8003', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:47:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010014', '110002204008', '2025-04-03', '5936452', NULL, 'C', '1J9671', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:48:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010015', '110002204008', '2025-04-03', '5936452', NULL, 'C', '1318350', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010016', '110002204008', '2025-04-03', '5936452', NULL, 'D', '3K0360', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:55:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010017', '110002204008', '2025-04-03', '5936452', NULL, 'D', '6V8398', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:51:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010018', '110002204008', '2025-04-03', '5936452', NULL, 'D', '1007000', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:57:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010019', '110002204008', '2025-04-03', '5936452', NULL, 'D', '3676001', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:52:23', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010020', '110002204008', '2025-04-03', '5936452', NULL, 'D', '3676002', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:54:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010021', '110002204008', '2025-04-03', '5936452', NULL, 'D', '3T8236', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:53:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010022', '110002204008', '2025-04-03', '5936452', NULL, 'D', '1H0337', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010023', '110002204008', '2025-04-03', '5936452', NULL, 'D', '4T1860', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010024', '110002204008', '2025-04-03', '5936452', NULL, 'D', '8J6815', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:58:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010025', '110002204008', '2025-04-03', '5936452', NULL, 'D', '3P9498', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 14:53:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010026', '110002204008', '2025-04-03', '5936452', NULL, 'E', '9F6705', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:01:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010027', '110002204008', '2025-04-03', '5936452', NULL, 'E', '5M2057', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:00:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010028', '110002204008', '2025-04-03', '5936452', NULL, 'E', '6V5230', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:02:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010029', '110002204008', '2025-04-03', '5936452', NULL, 'E', '8M3175', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:00:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010030', '110002204008', '2025-04-03', '5936452', NULL, 'E1', '1006021', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010031', '110002204008', '2025-04-03', '5936452', NULL, 'E1', '6E1924', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:06:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010032', '110002204008', '2025-04-03', '5936452', NULL, 'E1', '6E1925', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:04:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010033', '110002204008', '2025-04-03', '5936452', NULL, 'F', '5956711', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010034', '110002204008', '2025-04-03', '5936452', NULL, 'F', '3307743', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010035', '110002204008', '2025-04-03', '5936452', NULL, 'F', '6E1923', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:11:08', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010036', '110002204008', '2025-04-03', '5936452', NULL, 'F', '8T3611', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010037', '110002204008', '2025-04-03', '5936452', NULL, 'F', '6V8400', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010038', '110002204008', '2025-04-03', '5936452', NULL, 'F', '2S4078', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:10:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010039', '110002204008', '2025-04-03', '5936452', NULL, 'G', '6V9834', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:13:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010040', '110002204008', '2025-04-03', '5936452', NULL, 'G', '4T4935', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010041', '110002204008', '2025-04-03', '5936452', NULL, 'G', '2191891', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:13:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010042', '110002204008', '2025-04-03', '5936452', NULL, 'H', '2965987', 1, 1, 1, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:15:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010043', '110002204008', '2025-04-03', '5936452', NULL, 'H', '2191893', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-03-31 15:15:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743402754262010044', '110002204008', '2025-04-03', '5936452', NULL, 'H', '5796930', 1, 0, 0, 'P3', 2, '管理员', '2025-03-31 14:32:34', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010000', '110002196271', '2025-04-03', '3701290', NULL, 'A', '9S8009', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:20:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010001', '110002196271', '2025-04-03', '3701290', NULL, 'A', '4K1388', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:22:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010002', '110002196271', '2025-04-03', '3701290', NULL, 'A', '9S4189', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:19:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010003', '110002196271', '2025-04-03', '3701290', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:22:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010004', '110002196271', '2025-04-03', '3701290', NULL, 'A', '9S4182', 12, 12, 12, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:19:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010005', '110002196271', '2025-04-03', '3701290', NULL, 'A', '3J7354', 24, 24, 24, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:24:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010006', '110002196271', '2025-04-03', '3701290', NULL, 'A', '9S8002', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:21:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010007', '110002196271', '2025-04-03', '3701290', NULL, 'A', '6V8647', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:20:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010008', '110002196271', '2025-04-03', '3701290', NULL, 'A', '4J5477', 8, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010009', '110002196271', '2025-04-03', '3701290', NULL, 'B', '9S4183', 20, 18, 18, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010010', '110002196271', '2025-04-03', '3701290', NULL, 'B', '3D2824', 20, 20, 20, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:27:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010011', '110002196271', '2025-04-03', '3701290', NULL, 'B', '9S4185', 20, 20, 20, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:28:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010012', '110002196271', '2025-04-03', '3701290', NULL, 'B', '3K0360', 20, 20, 20, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:32:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010013', '110002196271', '2025-04-03', '3701290', NULL, 'C', '9S4191', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:35:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010014', '110002196271', '2025-04-03', '3701290', NULL, 'C', '3J1907', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:37:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010015', '110002196271', '2025-04-03', '3701290', NULL, 'C', '1318350', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010016', '110002196271', '2025-04-03', '3701290', NULL, 'C', '3K0360', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:38:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010017', '110002196271', '2025-04-03', '3701290', NULL, 'C', '3T8236', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:43:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010018', '110002196271', '2025-04-03', '3701290', NULL, 'C', '6V8398', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:35:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010019', '110002196271', '2025-04-03', '3701290', NULL, 'C', '1007000', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:44:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010020', '110002196271', '2025-04-03', '3701290', NULL, 'C', '9S8003', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:36:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010021', '110002196271', '2025-04-03', '3701290', NULL, 'C', '1J9671', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:34:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010022', '110002196271', '2025-04-03', '3701290', NULL, 'D', '8T8987', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:47:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010023', '110002196271', '2025-04-03', '3701290', NULL, 'D', '6V9833', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:46:48', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010024', '110002196271', '2025-04-03', '3701290', NULL, 'D', '5K9090', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010025', '110002196271', '2025-04-03', '3701290', NULL, 'D', '2S4078', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:46:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010026', '110002196271', '2025-04-03', '3701290', NULL, 'E', '9S8001', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:50:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010027', '110002196271', '2025-04-03', '3701290', NULL, 'E', '4J7533', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:50:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010028', '110002196271', '2025-04-03', '3701290', NULL, 'E', '8J6815', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:53:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010029', '110002196271', '2025-04-03', '3701290', NULL, 'E', '3P9498', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:50:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010030', '110002196271', '2025-04-03', '3701290', NULL, 'E', '1H0337', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010031', '110002196271', '2025-04-03', '3701290', NULL, 'E', '9F6705', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:51:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010032', '110002196271', '2025-04-03', '3701290', NULL, 'E', '4T1860', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010033', '110002196271', '2025-04-03', '3701290', NULL, 'E', '6E1924', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:52:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010034', '110002196271', '2025-04-03', '3701290', NULL, 'E', '6E1925', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:51:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010035', '110002196271', '2025-04-03', '3701290', NULL, 'F', '8M3175', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:56:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010036', '110002196271', '2025-04-03', '3701290', NULL, 'F', '5M2057', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:56:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010037', '110002196271', '2025-04-03', '3701290', NULL, 'F', '6V5230', 8, 8, 8, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:57:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010038', '110002196271', '2025-04-03', '3701290', NULL, 'F', '4460768', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010039', '110002196271', '2025-04-03', '3701290', NULL, 'G', '3307743', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010040', '110002196271', '2025-04-03', '3701290', NULL, 'G', '4T4935', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010041', '110002196271', '2025-04-03', '3701290', NULL, 'G', '6E1923', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-03-31 15:59:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010042', '110002196271', '2025-04-03', '3701290', NULL, 'G', '3701289', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743405464451010043', '110002196271', '2025-04-03', '3701290', NULL, 'H', '5796930', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 15:17:44', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010000', '110002204017', '2025-04-03', '3701290', NULL, 'A', '9S8009', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:06:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010001', '110002204017', '2025-04-03', '3701290', NULL, 'A', '4K1388', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:06:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010002', '110002204017', '2025-04-03', '3701290', NULL, 'A', '9S4189', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:08:49', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010003', '110002204017', '2025-04-03', '3701290', NULL, 'A', '2M9780', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:06:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010004', '110002204017', '2025-04-03', '3701290', NULL, 'A', '9S4182', 6, 6, 6, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:05:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010005', '110002204017', '2025-04-03', '3701290', NULL, 'A', '3J7354', 12, 12, 12, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:08:36', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010006', '110002204017', '2025-04-03', '3701290', NULL, 'A', '9S8002', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:06:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010007', '110002204017', '2025-04-03', '3701290', NULL, 'A', '6V8647', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-03-31 16:05:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010008', '110002204017', '2025-04-03', '3701290', NULL, 'A', '4J5477', 4, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010009', '110002204017', '2025-04-03', '3701290', NULL, 'B', '9S4183', 10, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010010', '110002204017', '2025-04-03', '3701290', NULL, 'B', '3D2824', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:32:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010011', '110002204017', '2025-04-03', '3701290', NULL, 'B', '9S4185', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:33:18', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010012', '110002204017', '2025-04-03', '3701290', NULL, 'B', '3K0360', 10, 10, 10, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:32:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010013', '110002204017', '2025-04-03', '3701290', NULL, 'C', '9S4191', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:41:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010014', '110002204017', '2025-04-03', '3701290', NULL, 'C', '3J1907', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:39:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010015', '110002204017', '2025-04-03', '3701290', NULL, 'C', '1318350', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010016', '110002204017', '2025-04-03', '3701290', NULL, 'C', '3K0360', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:40:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010017', '110002204017', '2025-04-03', '3701290', NULL, 'C', '3T8236', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:40:41', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010018', '110002204017', '2025-04-03', '3701290', NULL, 'C', '6V8398', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:39:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010019', '110002204017', '2025-04-03', '3701290', NULL, 'C', '1007000', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:40:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111952010020', '110002204017', '2025-04-03', '3701290', NULL, 'C', '9S8003', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:39:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010000', '110002204017', '2025-04-03', '3701290', NULL, 'C', '1J9671', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:39:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010001', '110002204017', '2025-04-03', '3701290', NULL, 'D', '8T8987', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:45:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010002', '110002204017', '2025-04-03', '3701290', NULL, 'D', '6V9833', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:42:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010003', '110002204017', '2025-04-03', '3701290', NULL, 'D', '5K9090', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010004', '110002204017', '2025-04-03', '3701290', NULL, 'D', '2S4078', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:43:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010005', '110002204017', '2025-04-03', '3701290', NULL, 'E', '9S8001', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:47:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010006', '110002204017', '2025-04-03', '3701290', NULL, 'E', '4J7533', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:49:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010007', '110002204017', '2025-04-03', '3701290', NULL, 'E', '8J6815', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:51:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010008', '110002204017', '2025-04-03', '3701290', NULL, 'E', '3P9498', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:48:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010009', '110002204017', '2025-04-03', '3701290', NULL, 'E', '1H0337', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010010', '110002204017', '2025-04-03', '3701290', NULL, 'E', '9F6705', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:49:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010011', '110002204017', '2025-04-03', '3701290', NULL, 'E', '4T1860', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010012', '110002204017', '2025-04-03', '3701290', NULL, 'E', '6E1924', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:49:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010013', '110002204017', '2025-04-03', '3701290', NULL, 'E', '6E1925', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:48:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010014', '110002204017', '2025-04-03', '3701290', NULL, 'F', '8M3175', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:53:33', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010015', '110002204017', '2025-04-03', '3701290', NULL, 'F', '5M2057', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:53:17', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010016', '110002204017', '2025-04-03', '3701290', NULL, 'F', '6V5230', 4, 4, 4, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:54:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010017', '110002204017', '2025-04-03', '3701290', NULL, 'F', '4460768', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010018', '110002204017', '2025-04-03', '3701290', NULL, 'G', '3307743', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010019', '110002204017', '2025-04-03', '3701290', NULL, 'G', '4T4935', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010020', '110002204017', '2025-04-03', '3701290', NULL, 'G', '6E1923', 2, 2, 2, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-01 08:58:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010021', '110002204017', '2025-04-03', '3701290', NULL, 'G', '3701289', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743408111953010022', '110002204017', '2025-04-03', '3701290', NULL, 'H', '5796930', 2, 0, 0, 'P3', 2, '管理员', '2025-03-31 16:01:52', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010000', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '9S8009', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:10:13', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010001', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '4K1388', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:12:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010002', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '9S4189', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:11:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010003', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:11:24', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010004', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '9S4182', 12, 12, 12, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:09:46', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010005', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '3J7354', 24, 24, 24, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:10:54', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010006', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '9S8002', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:09:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010007', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '6V8647', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:09:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010008', '110002196281', '2025-04-03', '9T5957', NULL, 'A', '4J5477', 8, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010009', '110002196281', '2025-04-03', '9T5957', NULL, 'B', '9S4183', 20, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010010', '110002196281', '2025-04-03', '9T5957', NULL, 'B', '3D2824', 20, 20, 20, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:15:02', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010011', '110002196281', '2025-04-03', '9T5957', NULL, 'B', '9S4185', 20, 20, 20, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:14:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010012', '110002196281', '2025-04-03', '9T5957', NULL, 'B', '3K0360', 20, 20, 20, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:18:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010013', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '6V3965', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:21:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010014', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '3J1907', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:21:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010015', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '1318350', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010016', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '3K0360', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:22:52', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010017', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '3T8236', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:23:30', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010018', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '6V8398', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:20:29', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235720010019', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '1007000', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:24:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010000', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '9S8003', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:20:50', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010001', '110002196281', '2025-04-03', '9T5957', NULL, 'C', '1J9671', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:21:32', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010002', '110002196281', '2025-04-03', '9T5957', NULL, 'D', '8T8987', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:45:10', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010003', '110002196281', '2025-04-03', '9T5957', NULL, 'D', '6V9833', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:26:42', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010004', '110002196281', '2025-04-03', '9T5957', NULL, 'D', '5K9090', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010005', '110002196281', '2025-04-03', '9T5957', NULL, 'D', '2S4078', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:26:26', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010006', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '9S8001', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:47:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010007', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '4J7533', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:49:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010008', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '8J6815', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:50:59', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010009', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '3P9498', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:49:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010010', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '1H0337', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010011', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '9F6705', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:50:06', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010012', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '4T1860', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010013', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '6E1924', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:50:40', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010014', '110002196281', '2025-04-03', '9T5957', NULL, 'E', '6E1925', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:49:47', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010015', '110002196281', '2025-04-03', '9T5957', NULL, 'F', '8M3175', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:54:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010016', '110002196281', '2025-04-03', '9T5957', NULL, 'F', '5M2057', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:53:20', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010017', '110002196281', '2025-04-03', '9T5957', NULL, 'F', '6V5230', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:55:05', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010018', '110002196281', '2025-04-03', '9T5957', NULL, 'F', '1006021', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010019', '110002196281', '2025-04-03', '9T5957', NULL, 'G', '3307743', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010020', '110002196281', '2025-04-03', '9T5957', NULL, 'G', '4T4935', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010021', '110002196281', '2025-04-03', '9T5957', NULL, 'G', '6E1923', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:57:57', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010022', '110002196281', '2025-04-03', '9T5957', NULL, 'G', '1119632', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010023', '110002196281', '2025-04-03', '9T5957', NULL, 'H', '5796930', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743469235721010024', '110002196281', '2025-04-03', '9T5957', NULL, 'H', '6V0852', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 09:00:36', '2025-04-01 09:59:38', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010000', '110002204000', '2025-04-03', '4512444', NULL, 'A', '9S8009', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:03:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010001', '110002204000', '2025-04-03', '4512444', NULL, 'A', '4K1388', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:03:09', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010002', '110002204000', '2025-04-03', '4512444', NULL, 'A', '9S4189', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:04:31', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010003', '110002204000', '2025-04-03', '4512444', NULL, 'A', '2M9780', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:06:07', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010004', '110002204000', '2025-04-03', '4512444', NULL, 'A', '9S4182', 12, 12, 12, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:03:00', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010005', '110002204000', '2025-04-03', '4512444', NULL, 'A', '3J7354', 20, 20, 20, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:07:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010006', '110002204000', '2025-04-03', '4512444', NULL, 'A', '9S4183', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010007', '110002204000', '2025-04-03', '4512444', NULL, 'A', '3D2824', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:04:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010008', '110002204000', '2025-04-03', '4512444', NULL, 'A', '6V8647', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:04:01', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010009', '110002204000', '2025-04-03', '4512444', NULL, 'A', '4J5477', 8, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010010', '110002204000', '2025-04-03', '4512444', NULL, 'B', '3603693', 16, 16, 16, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:12:37', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010011', '110002204000', '2025-04-03', '4512444', NULL, 'B', '3K0360', 20, 20, 20, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:11:11', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010012', '110002204000', '2025-04-03', '4512444', NULL, 'B', '9S8003', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:09:16', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010013', '110002204000', '2025-04-03', '4512444', NULL, 'B', '1J9671', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:10:04', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010014', '110002204000', '2025-04-03', '4512444', NULL, 'B', '1318350', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010015', '110002204000', '2025-04-03', '4512444', NULL, 'B', '6V8398', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:09:28', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010016', '110002204000', '2025-04-03', '4512444', NULL, 'B', '1007000', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:13:21', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010017', '110002204000', '2025-04-03', '4512444', NULL, 'C', '3676001', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:15:14', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010018', '110002204000', '2025-04-03', '4512444', NULL, 'C', '3676002', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:16:35', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010019', '110002204000', '2025-04-03', '4512444', NULL, 'C', '3T8236', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:17:45', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010020', '110002204000', '2025-04-03', '4512444', NULL, 'C', '1H0337', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010021', '110002204000', '2025-04-03', '4512444', NULL, 'C', '4T1860', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010022', '110002204000', '2025-04-03', '4512444', NULL, 'C', '8J6815', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:18:51', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010023', '110002204000', '2025-04-03', '4512444', NULL, 'C', '3P9498', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:16:56', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010024', '110002204000', '2025-04-03', '4512444', NULL, 'C', '9F6705', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:17:19', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010025', '110002204000', '2025-04-03', '4512444', NULL, 'C', '5M2057', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:15:43', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010026', '110002204000', '2025-04-03', '4512444', NULL, 'D', '1006021', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010027', '110002204000', '2025-04-03', '4512444', NULL, 'D', '6E1924', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:22:34', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010028', '110002204000', '2025-04-03', '4512444', NULL, 'D', '6E1925', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:20:55', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010029', '110002204000', '2025-04-03', '4512444', NULL, 'E', '6V5230', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:24:27', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010030', '110002204000', '2025-04-03', '4512444', NULL, 'E', '8M3175', 8, 8, 8, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:24:15', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010031', '110002204000', '2025-04-03', '4512444', NULL, 'E', '4540936', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871970010032', '110002204000', '2025-04-03', '4512444', NULL, 'E', '3307743', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010000', '110002204000', '2025-04-03', '4512444', NULL, 'E', '6E1923', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:25:39', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010001', '110002204000', '2025-04-03', '4512444', NULL, 'F', '1488356', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:29:03', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010002', '110002204000', '2025-04-03', '4512444', NULL, 'F', '6V9834', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 10:27:25', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010003', '110002204000', '2025-04-03', '4512444', NULL, 'F', '4T4935', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010004', '110002204000', '2025-04-03', '4512444', NULL, 'G', '2191891', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 11:40:53', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010005', '110002204000', '2025-04-03', '4512444', NULL, 'G', '2965987', 4, 4, 4, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 11:41:12', 0, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010006', '110002204000', '2025-04-03', '4512444', NULL, 'G', '5796930', 4, 0, 0, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-03 10:34:35', 1, 0, 1); -INSERT INTO `t_app_work` (`work_index`, `work_order`, `plan_start_date`, `product_id`, `single_product_id`, `box_no`, `goods_id`, `need_num`, `distribute_num`, `finish_num`, `work_stand`, `work_status`, `work_user`, `create_time`, `finish_time`, `lack_status`, `is_out`, `product_type`) VALUES ('1743472871971010007', '110002204000', '2025-04-03', '4512444', NULL, 'H', '2191893', 16, 16, 16, 'P3', 2, '管理员', '2025-04-01 10:01:12', '2025-04-01 11:43:20', 0, 0, 1); -COMMIT; - --- ---------------------------- --- Table structure for t_app_work_record --- ---------------------------- -DROP TABLE IF EXISTS `t_app_work_record`; -CREATE TABLE `t_app_work_record` ( - `work_index` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键,用于确认唯一一条数据。', - `work_order` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工单', - `plan_start_date` date NOT NULL COMMENT '计划开工日期', - `product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '成品号', - `single_product_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '单片号', - `box_no` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '料盒号', - `goods_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '原材料号', - `need_num` int NOT NULL COMMENT '需求数量', - `finish_num` int NOT NULL COMMENT '已完成数量', - `work_stand` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '工作站台', - `work_status` int NOT NULL COMMENT '工作状态', - `work_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '工作用户', - `create_time` datetime NOT NULL COMMENT '创建时间', - `finish_time` datetime NOT NULL COMMENT '完成时间', - `lack_status` int NOT NULL COMMENT '缺料状态', - `is_out` int NOT NULL COMMENT '是否是库外料', - `product_type` int NOT NULL, - PRIMARY KEY (`work_index`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_app_work_record --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_sys_menu --- ---------------------------- -DROP TABLE IF EXISTS `t_sys_menu`; -CREATE TABLE `t_sys_menu` ( - `menu_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单id', - `label_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单名称', - `icon_value` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '图标名称', - `path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '菜单地址', - `parent_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '父菜单编号', - PRIMARY KEY (`menu_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_sys_menu --- ---------------------------- -BEGIN; -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1', '操作', 'Pointer', '', '0'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1-1', '入库', '', '/goodsIn', '1'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1-2', '出库', '', '/goodsOut', '1'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1-3', '配料', '', '/kitting', '1'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1-4', '盘点', '', '/inventory', '1'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('1-5', '需求看板', '', '/clcKanban', '1'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2', '数据', 'Document', NULL, '0'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2-1', 'DBS计划', '', '/dbsList', '2'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2-2', '配料单', '', '/kittingList', '2'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2-3', '配对关系', '', '/kittingRelation', '2'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2-4', '图纸', '', '/imageTable', '2'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('2-6', '工作详情', '', '/workSummary', '2'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3', '报表', 'DataLine', '', '0'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-11', '物料信息', '', '/goods', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-21', '库存信息', '', '/stock', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-22', '库存流水', '', '/stockUpdateRecord', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-23', '料箱监控', '', '/vehicles', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-24', '库位监控', '', '/location', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-25', '站台监控', '', '/standSettings', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-31', '任务监控', '', '/taskMonitor', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-32', '拣选任务', '', '/pickTask', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-41', '入库记录', '', '/inTaskRecord', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-42', '出库记录', '', '/outTaskRecord', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-43', '盘点记录', '', '/inventoryRecord', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('3-51', '出库表单', '', '/outsMonitor', '3'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('4', '系统', 'Setting', '', '0'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('4-1', '系统配置', '', '/config', '4'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('4-2', '角色列表', '', '/rolePermission', '4'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('4-3', '用户列表', '', '/roleUser', '4'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('4-4', '接口日志', '', '/wmsLog', '4'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('5', '测试', 'Lock', '', '0'); -INSERT INTO `t_sys_menu` (`menu_id`, `label_name`, `icon_value`, `path`, `parent_id`) VALUES ('5-1', '测试', '', '/test', '5'); -COMMIT; - --- ---------------------------- --- Table structure for t_sys_permission --- ---------------------------- -DROP TABLE IF EXISTS `t_sys_permission`; -CREATE TABLE `t_sys_permission` ( - `permission_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '主键', - `role_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '角色id', - `menu_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '菜单id', - PRIMARY KEY (`permission_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_sys_permission --- ---------------------------- -BEGIN; -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('1', '2', '1'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('10', '2', '3'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('11', '2', '3-1'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('12', '2', '3-2'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('13', '2', '3-3'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('14', '2', '3-4'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('15', '2', '3-5'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('16', '2', '3-6'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('17', '2', '3-7'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('18', '2', '3-8'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('19', '2', '3-9'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('2', '2', '1-1'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('20', '2', '3-10'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('21', '2', '3-11'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('22', '2', '4'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('23', '2', '4-1'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('24', '2', '4-2'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('25', '2', '4-3'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('26', '2', '4-4'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('3', '2', '1-4'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('4', '2', '1-5'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('5', '2', '2'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('6', '2', '2-1'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('7', '2', '2-2'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('8', '2', '2-3'); -INSERT INTO `t_sys_permission` (`permission_id`, `role_id`, `menu_id`) VALUES ('9', '2', '2-6'); -COMMIT; - --- ---------------------------- --- Table structure for t_sys_role --- ---------------------------- -DROP TABLE IF EXISTS `t_sys_role`; -CREATE TABLE `t_sys_role` ( - `role_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '角色id', - `role_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '角色名', - `role_desc` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '角色描述', - `leader_role` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '上级角色id', - `role_status` int DEFAULT NULL COMMENT '角色状态', - `add_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', - `add_time` datetime DEFAULT NULL COMMENT '创建时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - PRIMARY KEY (`role_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_sys_role --- ---------------------------- -BEGIN; -INSERT INTO `t_sys_role` (`role_id`, `role_name`, `role_desc`, `leader_role`, `role_status`, `add_user`, `add_time`, `last_update_user`, `last_update_time`) VALUES ('0', '管理员', '管理员', '0', NULL, '', '2024-12-05 15:32:06', NULL, NULL); -INSERT INTO `t_sys_role` (`role_id`, `role_name`, `role_desc`, `leader_role`, `role_status`, `add_user`, `add_time`, `last_update_user`, `last_update_time`) VALUES ('2', 'CLC', 'CLC', '0', NULL, NULL, '2025-03-20 09:43:44', NULL, NULL); -COMMIT; - --- ---------------------------- --- Table structure for t_sys_setting --- ---------------------------- -DROP TABLE IF EXISTS `t_sys_setting`; -CREATE TABLE `t_sys_setting` ( - `setting_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设置id', - `setting_key` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置键', - `setting_value` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置值', - `setting_type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置类型:1.输入框2.下拉多选3.开关', - `setting_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '配置显示名称', - PRIMARY KEY (`setting_id`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_sys_setting --- ---------------------------- -BEGIN; -COMMIT; - --- ---------------------------- --- Table structure for t_sys_user --- ---------------------------- -DROP TABLE IF EXISTS `t_sys_user`; -CREATE TABLE `t_sys_user` ( - `login_account` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '登录账号', - `login_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '登录密码', - `user_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '用户名---显示用', - `role_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '角色id', - `login_status` int DEFAULT NULL COMMENT '登录状态', - `account_status` int DEFAULT NULL COMMENT '账号状态', - `last_login_device` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次登录设备', - `last_login_time` datetime DEFAULT NULL COMMENT '上次登录时间', - `add_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人', - `add_time` datetime DEFAULT NULL COMMENT '创建时间', - `last_update_user` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '上次更新用户', - `last_update_time` datetime DEFAULT NULL COMMENT '上次更新时间', - PRIMARY KEY (`login_account`) USING BTREE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC; - --- ---------------------------- --- Records of t_sys_user --- ---------------------------- -BEGIN; -INSERT INTO `t_sys_user` (`login_account`, `login_password`, `user_name`, `role_id`, `login_status`, `account_status`, `last_login_device`, `last_login_time`, `add_user`, `add_time`, `last_update_user`, `last_update_time`) VALUES ('admin', '21232F40A8D484C349B21948A7B055815E760A02D821A52D5376778C931DF35D6D4074442DEEE5AC6A90508727871B51F5CADB297A57A5A743894A0E4A801FC374D839D98630E280DF752E8939454A6BBB7FF6177EE612EF9DC6ACD3A9EA7EA9E7EC48F7ADB381FD3EAF34432D987EA6368947B562FC76640457410E9DF1952', '管理员', '0', NULL, NULL, NULL, NULL, '开发者', '2024-12-05 15:38:57', NULL, NULL); -INSERT INTO `t_sys_user` (`login_account`, `login_password`, `user_name`, `role_id`, `login_status`, `account_status`, `last_login_device`, `last_login_time`, `add_user`, `add_time`, `last_update_user`, `last_update_time`) VALUES ('clc_1', '21232F40A8D484C349B21948A7B055815E760A02D821A52D5376778C931DF35D6D4074442DEEE5AC6A90508727871B51F5CADB297A57A5A743894A0E4A801FC374D839D98630E280DF752E8939454A6BBB7FF6177EE612EF9DC6ACD3A9EA7EA9E7EC48F7ADB381FD3EAF34432D987EA6368947B562FC76640457410E9DF1952', 'clc', '2', NULL, NULL, NULL, NULL, '管理员', '2025-03-20 09:44:52', NULL, NULL); -COMMIT; - -SET FOREIGN_KEY_CHECKS = 1;